/* From Uiverse.io by ashwin_5681 */
.card1 {
    width: 100%;
    height: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(14, 175, 220, 0.1);
    color: white;
    text-align: center;
}

.card1 p {
    font-size: 14px;
    color: white;
}

.slider {
    width: 100%;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
    margin-bottom: 30px;
}

.slider .list {
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}

.slider .list .item {
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 10s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc((10s / var(--quantity)) * (var(--position) - 1) - 10s) !important;
}

.slider .list .item img {
    width: 100%;
}

@keyframes autoRun {
    from {
        left: 100%;
    }

    to {
        left: calc(var(--width) * -1);
    }
}

.slider:hover .item {
    animation-play-state: paused !important;
    filter: grayscale(1);
}

.slider .item:hover {
    filter: grayscale(0);
}

.slider[reverse="true"] .item {
    animation: reversePlay 10s linear infinite;
}

@keyframes reversePlay {
    from {
        left: calc(var(--width) * -1);
    }

    to {
        left: 100%;
    }
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    max-width: 900px;
    margin: auto;
}

.text {
    flex: 1;
    padding: 20px;
}

.text h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.smt1 {
    margin-top: 120px !important;
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .text {
        padding: 10px;
    }

    .image {
        margin-top: 10px;
    }
}

.h1 {
    font-weight: bolder;
    padding-left: 20px;
}

.para {
    color: black !important;
    font-size: 22px !important;
}

.para1 {
    color: white !important;
    font-size: 30px !important;
}

.ttt {
    font-weight: bolder;
    color: burlywood;
}

@media (max-width: 768px) {
    body {
        width: 100% !important;
    }

    .header_section {
        position: fixed !important;
        z-index: 10 !important;
        top: 0px !important;
    }

    .smt1 {
        display: flex;
        flex-direction: column;
    }

    .az {
        text-align: center;
        width: 100vw;
        margin-left: 20px;
        margin-top: 150px !important;
    }
}

.info_section .info_contact .contact_link_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .info_section .info_contact .contact_link_box a {
    margin: 5px 0;
    color: #000000;
  }
  
  .info_section .info_contact .contact_link_box a i {
    margin-right: 5px;
  }
  
  

.footer_section {
    position: relative;
    background-color: #03a7d3;
    text-align: center;
  }
  
  .footer_section p {
    color: #000000;
    padding: 20px 0;
    margin: 0;
    border-top: 1px solid #ffffff;
  }
  
  .footer_section p a {
    color: inherit;
  }

  