.welcome-message {
    text-align: center;
    margin-top: 130px;
    opacity: 0;
    transform: translateY(-50px);
    animation: slideDown 1s ease forwards;
    animation-delay: 0.5s;
}

.welcome-message h2 {
    font-size: 46px;
    color: #333;
}

.welcome-message p {
    font-size: 29px;
    color: #555;
    margin-bottom: 30px;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
        /* تعود إلى مكانها الطبيعي */
    }
}

footer {
    animation: slideIn 2.9s ease forwards;
    opacity: 0;
    animation-delay: 2.9s;
}

@keyframes slideIn {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box {
    width: 200px;
    height: 250px;
    margin: 20px 20px 0 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    border-color: #989696;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    background-color: rgba(255, 255, 255, 0.373);
    opacity: 0;
    transform: translateX(100px);
    animation: slideLeft 1s ease forwards;
    animation-delay: 1s;
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}

.box img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.box p {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: black;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    text-align: center;
    padding: 5px 0;
    border-radius: 0 0 10px 10px;
}

.disabled-box {
    filter: grayscale(80%);
}

.disabled-box h2 {
    opacity: 0;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgb(52, 50, 50);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease-in-out;
}

.disabled-box:hover h2 {
    opacity: 1;
}


.wrapper-inputs{
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
    margin: 15px;
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {

    .welcome-message {
        margin-top: 120px;
    }

    .welcome-message h2 {
        font-size: 46px;
    }

    .welcome-message p {
        font-size: 36px;
    }

    .boxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .box {
        width: 260px;
        height: 200px;
        margin: 5px auto;
    }

    .box img {
        margin-top: 5px;
        height: 70%;
        width: 70%;
        object-fit: fill;
    }

    .box p {
        font-size: 20px;
    }

    .image-wrapper {
        width: 175px !important;
        height: 120px !important;
        border-radius: 20px !important;
    }

    .carousel
    {
        height: 311px;
    }
}

@media (max-width: 480px) {

    .carousel-item{
        gap: 7px !important;
    }

    .image-wrapper{
        width: 129px !important;
        height: 88px !important;
        border-radius: 10px !important;
    }

    .welcome-message {
        margin-top: 130px;
    }

    .welcome-message h2 {
        font-size: 66px;
    }

    .welcome-message p {
        font-size: 50px;
        font-weight: 700;
    }

    .boxes {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 10px;
    }

    .box {
        width: 150px;
        height: 160px;
        margin: 5px auto;
    }

    .box img {
        margin-top: 5px;
        height: 70%;
        width: 70%;
        object-fit: fill;
    }

    .box p {
        font-size: 15px;
    }

    .welcome-message h2 {
        font-size: 24px;
    }

    .welcome-message p {
        font-size: 14px;
    }
}

.content {
    display: none;
    text-align: center;
    margin-top: 100px;
    color: #000;
}

.info-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px 20px 40px 20px;
    margin-top: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 20px auto;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;    /* Center vertically */
    flex-flow: column;
    height: 100%;           /* Ensure container has height to center content */
    min-height: 200px;      /* Optional: Define a minimum height for better appearance */
    gap: 40px;
}

#carInsuranceContent h2 {

    font-weight: bold;
    font-size: 35px;
}

#carInsuranceContent p {
    font-size: 20px;
}

.small-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    gap: 10px;
}

.small-box i {
    font-size: 24px;
    margin: 10px 10px 0 0;
}

.small-box p {
    font-size: 18px;
    font-weight: bold;
}

.identity-container {
    margin-top: 20px;
}

.national-id-search {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.national-id-search input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.national-id-search button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.national-id-search button:hover {
    background-color: #0056b3;
}

#backButton {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .content {
        margin-top: 200px;
    }

    .info-box {
        padding: 15px;
        margin-top: 15px;
        max-width: 90%;
    }

    .small-box {
        padding: 8px;
    }

    .small-box p {
        font-size: 20px;
    }

    .national-id-search input {
        padding: 8px;
    }

    .national-id-search button {
        font-size: large;
        font-weight: 500;
        padding: 8px;
    }

    #backButton {
        width: 30%;
        font-size: large;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .info-box {
        padding: 10px;
        margin-top: 10px;
        max-width: 85%;
    }

    #carInsuranceContent h2 {
        width: 80%;
        font-size: larger;
    }

    #carInsuranceContent p {
        width: 70%;
        font-size: large;
    }

    .small-box {
        display: flex;
        align-items: center;
        padding: 10px;
        margin: 0 auto;
        gap: 10px;
    }

    .small-box i {
        font-size: 24px;
        flex-shrink: 0;
    }

    .small-box p {
        font-size: 18px;
        margin: 0;
    }
}

.row-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 85px;
    opacity: 0;
    animation: slide-in-right 1s ease-out 1.2s forwards;
}

.first-element {
    text-align: right;
    width: auto;
    font-size: 18px;
}

.first-element img {
    width: 120px;
    height: 150px;
}

.first-element h4 {
    color: #3B3B3B;
    font-size: 30px;
    margin: 0 10px 10px 10px;
    text-align: right;
}

.first-element p {
    color: #6C757D;
    font-size: 14px;
    line-height: 1.6;
}

.single-box {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-right: 9px;
    animation: slide-in-left 1s ease-out 1.2s forwards;
    transition: transform 0.3s ease;

}

.single-box:hover {
    transform: scale(1.07) !important;
}

.single-box img {
    width: 100px;
    height: 120px;
    margin-bottom: 15px;
}

.single-box h3 {
    color: #4A4A4A;
    margin-bottom: 10px;
    font-size: 18px;
}

.single-box p {
    color: #6C757D;
    font-size: 14px;
    line-height: 1.6;
}

.grid-container {
    justify-items: center;
    gap: 0px;
    margin: 20px auto;
    width: 73%;
}

.cell {
    /* background-color: #f9f9f9; */
    /* border-radius: 8px; */
    /* padding: 20px; */
    text-align: center;
    /* width: 260px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

.cell:hover {
    transform: scale(1.07) !important;
}

.cell img {
    width: 100px;
    height: 120px;
    margin-bottom: 15px;
}

.cell h3 {
    color: #4A4A4A;
    margin-bottom: 10px;
    font-size: 18px;
}

.cell p {
    color: #6C757D;
    font-size: 14px;
    line-height: 1.6;
}

.grid-container .cell {
    animation: slide-in-right 1.2s ease-out forwards;
}

.grid-container .cell:nth-child(1) {
    animation-delay: 0.7s;
}

.grid-container .cell:nth-child(2) {
    animation-delay: 0.77s;
}

.grid-container .cell:nth-child(3) {
    animation-delay: 0.79s;
}

.grid-container .cell:nth-child(4) {
    animation-delay: 0.81s;
}

.light-blue-gradient-1 {
    background: linear-gradient(to bottom right, #E3F2FD, #C5CACD);
    border-radius: 8px;
}

.light-blue-gradient-2 {
    background: linear-gradient(to bottom right, #BBDEFB, #A5C2D4);
    border-radius: 8px;
}

.light-blue-gradient-3 {
    background: linear-gradient(to bottom right, #90CAF9, #93A1A4);
    border-radius: 8px;
}

.light-blue-gradient-4 {
    background: linear-gradient(to bottom right, #64B5F6, #6c8693b7);
    border-radius: 8px;
}

.line-companies
{
    display: inline-flex;
    justify-content: center;
    margin: 2.5rem 0; /* Equivalent to my-10 */
    flex-direction: row;
    gap: 0.5rem; /* Equivalent to gap-2 */
    left: 0;
    right: 0;
    position: relative; /* Needed for inset-x-0 to work */
}

.chunck-press
{
    background-color: #d1d5db; /* Tailwind's bg-gray-300 */
    outline: 1px solid #f97316; /* Tailwind's outline-orange-500 */
    height: 10px;
    width: 10px;
    cursor: pointer;
    transform: skew(-20deg);
}

.chunck-press span
{
    display: none; /* Hidden by default */
    width: 100%;
    height: 100%;
    background-color: #ef4444; /* Tailwind's bg-red-500 */

}

.contianer-compines
{
    width: 1391px;
    text-align:center;
    padding:0px 3rem 0 3rem;
    display:flex;
    flex-flow:column;
    overflow:hidden;

}

.products-list > li{
    list-style:none;
}

.company-img
{
    width: 250px;
}

.product-slider
{
    display:flex;
    width:6400px;
    margin-left:4rem;
    height:200px;
    transform:translate3d(0px,0px,0px);
    transition: transform 1000ms ease;
}

.products-list
{
    display:inline-flex;
    margin: 0px 2.75rem 0px 2.75rem;
    gap:10;
}

@keyframes slide-in-right {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .row-container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .first-element {
        width: 85%;
        font-size: 46px;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: center;
    }

    .first-element img {
        width: 130px;
        height: 150px;
        margin-bottom: 10px;
    }

    .first-element h4 {
        font-size: 22px;
        margin-bottom: 15px;
        text-align: center;
    }

    .first-element p {
        font-size: 18px;
    }

    .single-box {
        width: 85%;
        font-size: 46px;
        font-weight: 600;
        padding: 20px;
        margin-bottom: 20px;
    }

    .single-box img {
        width: 100px;
        height: 150px;
        margin-bottom: 10px;
    }

    .single-box h3 {
        font-size: 22px;
    }

    .single-box p {
        font-size: 18px;
    }

    .grid-container {
        width: 90%;
        justify-items: center;
        margin: 0 auto;
    }

    .cell {
        /* width: 90%; */
        padding: 15px;
        margin-bottom: 15px;
    }

    .cell img {
        width: 90px;
        height: 120px;
    }

    .cell h3 {
        font-size: 22px;
    }

    .cell p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .row-container {
        margin-top: 30px;
    }

    .first-element img {
        width: 90px;
        height: 130px;
    }

    .first-element h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .single-box {
        width: 90%;
        padding: 15px;
    }

    .single-box img {
        width: 70px;
        height: 90px;
        margin-bottom: 10px;
    }

    .grid-container {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 10px;
    }

    .cell {
        width: 90%;
        padding: 10px;
    }

    .cell img {
        width: 70px;
        height: 90px;
    }
}

.supporting-companies-container {
    text-align: center;
    background-color: #f5f5f5;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    height: fit-content;
    box-shadow: 0px 0px 12px 2px #8c8c8c;
}

.supporting-companies-container h1{
    font-weight: bold;
    margin-top: 20px;
    font-size: 20px;
}

.section-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

.image-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.image-container img {
    width: 180px;
    height: auto;
    margin: 10px;
    transition: transform 0.3s ease;
}

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

.animated-image {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 2.4s ease forwards;
    animation-delay: 2.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .supporting-companies-container {
        width: 100%;
        border-radius: 0;
    }

    .section-title {
        font-size: 25px;
    }

    .image-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .image-container img {
        width: 180px;
        gap: 5px;
        margin: 5px;
    }
}

@media (max-width: 480px) {
    .supporting-companies-container {
        width: 100%;
        border-radius: 0;
    }

    .section-title {
        font-size: 20px;
    }

    .image-container img {
        width: 100px;
        margin: 3px;
    }
}

.info-box-buttons {
    background-color: #E0E0E0;
    width: 230px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    position: relative; /* Needed for positioning the sliding effect */
    overflow: hidden; /* To ensure the animation looks clean */
}

.info-button {
    color: #4F4F4F;
    z-index: 1; /* Keeps the text above the animation */
    flex: 1; /* Ensures buttons occupy equal space */
    text-align: center;
    line-height: 50px;
    cursor: pointer;
}

.info-button.active {
    color: #000; /* Highlight text color when active */
}

.info-button:not(.active):hover {
    background-color: #cfcfcf;
    border-radius: 13px;
    transform: scale(0.85);
    font-size: 16.7px;
    transition: transform 0.4s ease-in, background-color 0.2s ease;
}

.active-indicator {
    position: absolute;
    top: 2px;
    left: 115px;
    width: 110px;
    height: 46px;
    border-radius: 12px;
    background: #FFFFFF;
    filter: drop-shadow(2px 2px 4px rgb(173, 172, 172));
    transition: left 0.2s ease; /* Smooth slide effect */
    z-index: 0; /* Behind the text */
}

.info-box-inputs {
    max-width: 400px;
    background-color: #ebebeb;
    height: auto;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    border-radius:12px;
    text-align: right;
    box-shadow: 0px 5px 15px 0px rgb(85 85 85);
    transition: 0.5s ease;
}

.info-box-inputs:hover {
    box-shadow: 0px 5px 15px 0px rgb(43 113 242);
}

.license-form {
    display: none;
}

.license-form.show {
    display: flex;
}

.customs-form {
    display: none;
}

.customs-form.show {
    display: flex;
}

.info-national-input {
    width: 97%;
    text-align: center;
}

.wrapper-national-input{
    height: auto;
    width: auto;
    display: flex;
    justify-content: center;
    width: 90%;

}


.info-label {
    color: #4F4F4F;
}

.switch {
    position: relative;
    display: inline-block;
    width: 47px;
    height: 25px;
  }

  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 2.5px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }

  input:checked + .slider {
    background-color: #2196F3;
  }

  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }

  input:checked + .slider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
  }

  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }

  .slider.round:before {
    border-radius: 50%;
  }

  .info-input-submit{
    position: relative;
    margin: 20px 0px;
    border-radius: 12px;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff !important;
    color: white;
    transition: 0.5s ease;
  }

   

  .extra-input-container{
    display: none;
    flex-flow: column;
    align-items: center;
    height: 100%;
    width: 100%;
  }

  .extra-input-container.show{
    display: flex;
  }

  .extra-input-wrapper
  {
    display: flex;
    justify-content: center;
    width: 90%;
  }

.error-search-messages {
    color: red;
    display: none;
    font-size:13px;
    text-align: center;
}

#birthday_div .extra-input-wrapper{
    align-items: center;
}



#button-is-editing-birthday_date{
    position: absolute;
    margin-right: 231px;
}

.checkbox-wrapper-12 {
    position: relative;
    height: auto;
    grid-column: span 2;
    display: flex;
    /* gap: 10px; */
    /* align-items: center; */
    width: 80%;
    margin: auto;
    margin-top: 23px;
}

  .checkbox-wrapper-12 > svg {
    position: relative;
    pointer-events: none;
    width: 24px;
    height: 24px;
  }

  .checkbox-wrapper-12 * {
    box-sizing: border-box;
  }

  .checkbox-wrapper-12 input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    margin: 0;
  }

  .checkbox-wrapper-12 input[type="checkbox"]:focus {
    outline: 0;
  }

  .checkbox-wrapper-12 .cbx {
    width: 24px;
    height: 24px;
    position: relative;
    top:5px;
  }

  .checkbox-wrapper-12 .cbx input {
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 2px solid #bfbfc0;
    border-radius: 50%;
  }

  .checkbox-wrapper-12 .cbx .agree-click {
    width: 24px;
    height: 24px;
    background: none;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: trasnlate3d(0, 0, 0);
    pointer-events: none;
  }

  .checkbox-wrapper-12 .cbx svg {
    position: absolute;
    top: 5px;
    left: 4px;
    z-index: 1;
    pointer-events: none;
  }

  .checkbox-wrapper-12 .cbx svg path {
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 19;
    stroke-dashoffset: 19;
    transition: stroke-dashoffset 0.3s ease;
    transition-delay: 0.2s;
  }

  .checkbox-wrapper-12 .cbx input:checked + .agree-click {
    animation: splash-12 0.6s ease forwards;
  }

  .checkbox-wrapper-12 .cbx input:checked + .agree-click + svg path {
    stroke-dashoffset: 0;
  }

  .checkbox-wrapper-12 label{
    font-size: 14px;
    display: flex;
    flex-flow: column;
    align-items: center;
  }

  @-moz-keyframes splash-12 {
    40% {
        background: #866efb;
        box-shadow: 0 -18px 0 -8px #866efb, 16px -8px 0 -8px #866efb, 16px 8px 0 -8px #866efb, 0 18px 0 -8px #866efb, -16px 8px 0 -8px #866efb, -16px -8px 0 -8px #866efb;
    }

    100% {
        background: #866efb;
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
    }

    @-webkit-keyframes splash-12 {
        40% {
        background: #866efb;
        box-shadow: 0 -18px 0 -8px #866efb, 16px -8px 0 -8px #866efb, 16px 8px 0 -8px #866efb, 0 18px 0 -8px #866efb, -16px 8px 0 -8px #866efb, -16px -8px 0 -8px #866efb;
        }

        100% {
        background: #866efb;
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
        }
    }

    @-o-keyframes splash-12 {
        40% {
        background: #866efb;
        box-shadow: 0 -18px 0 -8px #866efb, 16px -8px 0 -8px #866efb, 16px 8px 0 -8px #866efb, 0 18px 0 -8px #866efb, -16px 8px 0 -8px #866efb, -16px -8px 0 -8px #866efb;
        }

        100% {
        background: #866efb;
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
        }
    }

    @keyframes splash-12 {
        40% {
        background: #5BA1D8;
        box-shadow: 0 -18px 0 -8px #5BA1D8, 16px -8px 0 -8px #5BA1D8, 16px 8px 0 -8px #5BA1D8, 0 18px 0 -8px #5BA1D8, -16px 8px 0 -8px #5BA1D8, -16px -8px 0 -8px #5BA1D8;
        }

        100% {
        background: #5BA1D8;
        box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
        }
    }

    .carousel-indicators [data-bs-target]
    {
        background-color: #666666;
    }

    .carousel {
        width: 100%;
        height: 272px;
        background-color: #f5f5f5;
        padding: 20px;
    }

    .carousel-indicators{
        list-style: none;
        direction: ltr;
    }

    .carousel-inner{
        width: 100%;
        height: 100%;
        direction: ltr;
    }

    .companies-image{
        width: auto;
        height: auto;
        max-width: 90%;
        max-height: 90%;
    }

    .company-images-container{
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 21px;
    }

    .carousel-item {
        height: 100%;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .carousel-item-next, .carousel-item-prev, .carousel-item.active {
        display: flex;
    }

    .image-wrapper{
        width: 250px;
        height: 150px;
        background: white;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 35px;
        box-shadow: 0px 0px 10px #cecece;
    }


    .carousel-control-next-icon, .carousel-control-prev-icon{
        filter: invert(1);
    }



    .info-box-wrapper {
        position: relative;
        padding: 4px;
        border-radius: 16px;
        overflow: hidden;
        z-index: 1;
    }

    .info-box-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 4px;
        background-image: conic-gradient(from var(--angle),#3b82f6 0deg, #3b82f6 90deg, transparent 90deg, transparent 360deg);
        pointer-events: none;
        z-index: -1;
    }

    .info-box-wrapper.loading::before {
        animation: spinAngle 3s linear infinite;
    }

    @property --angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
    }

    @keyframes spinAngle {
    to {
        --angle: 1turn;
    }
    }