body {
  font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.row {
    width: 100%;
    margin: 0px;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Header ***/
.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid #FFFFFF;
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: #FFFFFF;
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}



/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    position: relative;
    transition: .5s;
}
.testimonial-carousel .owl-item:hover .testimonial-text {
  background-color: #ab406d1c !important;
    height: 220px;
}
a.et_pb_button.dipi-carousel-button {
    color: #ffff;
}
.testimonial-text {
  transition: background-color 0.3s ease;
}
.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}
.testimonial-carousel .owl-item.center .testimonial-text::after {
    border-color: var(--primary) transparent transparent transparent;
}
.testimonial-text.bg-light.text-center.p-4.mb-4 p {
    color: #ffff;
    text-align: left;
    font-size: 14px;
    font-weight: 200;
    line-height: 20px;
}
a.et_pb_button.dipi-carousel-button {
    font-size: 17px;
    float: left;
    margin-top: 3px;
}
h4.slider-heding {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    text-align: left;
    margin-top: 0px;
}
.testimonial-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none; /* Allow clicks only on icons */
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  background: transparent;
  border: none;
  font-size: 24px;
  pointer-events: all; /* Re-enable click */
  color: #000; /* Change to white if your background is dark */
  transition: transform 0.3s ease;
}

.testimonial-carousel .owl-nav button.owl-prev:hover,
.testimonial-carousel .owl-nav button.owl-next:hover {
  transform: scale(1.2);
  color: red; /* Optional hover color */
}
.testimonial-carousel {
  position: relative;
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
    margin-top: 5px;
    background: #9c3d6d;
    color: #ffff;
    font-weight: 500;
}
img.logo-footer {
    width: 56%;
}
.footer .btn.btn-social:hover {
    color: #f1f1f1 !important;
    background: #502e6d !important;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}


.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 30px 0 9px;
    font-size: 14px;
    text-align: center;
    width: 100%;
}
.spc-xx{
    gap: 60px;
}
.footer .copyright a {
    color: var(--light);
}
@media (min-width: 320px) and (max-width: 525px) {
    img.logo-footer {
        width: 60%;
        margin-bottom: 25px;
    }
    .padng-ftr-none{
        padding: 0px !important;
    }   
    .cnetrz-xx{
        text-align: center;
    }
    .spc-xx{
        gap: 12px;
    }
    .footer-policy {
        margin: 0px !important;
        padding-top: 10px;
        font-size: 12px;
    }
    hr:not([size]) {
        display: none;
    }
   
    
}