/* about */

.about .row{
    display: flex;
    align-items: center;
}

.about .video img{
    width: 100%;
    height: auto;
}

.gallery-img{
    border-radius: 12px;
    overflow: hidden;
}

.gallery-img img{
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    transition: 0.3s;
}

.gallery-img img:hover{
    transform: scale(1.05);
}

@media(max-width:768px){
    .gallery-img img{
        height: 200px;   
    }
}


/* testimonial */


.owl-carousel .owl-stage{
    display: flex;
}

.owl-carousel .owl-item{
    display: flex;
}

.testimonial-item{
    flex: 1;
}


@media (max-width: 768px) {
    .testimonial-item {
        padding: 20px 15px !important;
    }

    .testimonial-item .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-item .col-4,
    .testimonial-item .col-8 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .testimonial-item .col-4 {
        margin-bottom: 20px;
    }

    .testimonial-item .d-flex.flex-column.mx-auto {
        align-items: center;
    }

    .testimonial-item .rounded-circle {
        width: 140px;
        height: 140px;
        margin: 0 auto 15px;
        overflow: hidden;
    }

    .testimonial-item .rounded-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonial-item .position-absolute {
        position: static !important;
        margin-bottom: 10px;
        text-align: center;
    }

    .testimonial-content {
        text-align: center;
    }

    .testimonial-content .d-flex {
        justify-content: center;
        margin-bottom: 12px !important;
    }

    .testimonial-content p {
        font-size: 18px !important;
        line-height: 1.6;
    }

    .testimonial-item h4 {
        font-size: 22px;
        line-height: 1.4;
    }
}








/* about page */




@media (max-width: 991px){
    .about-top{
        text-align: center;
    }

    .about-main-title{
        font-size: 1.8rem;
    }

    .about-logo-box img{
        width: 280px;
    }

    .offer-box{
        text-align: left;
    }
}

@media (max-width: 768px){
    .about{
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .about-main-title{
        font-size: 1.5rem;
    }

    .about-content p,
    .mission-card p,
    .choose-item{
        font-size: 15px;
    }

    

    .offer-box{
        padding: 16px;
    }

    .about-logo-box img{
        width: 220px;
    }
}




/* COMMON CARD */
.info-card{
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    
    
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* pink gradient border */
.info-card::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #ff4f8b, #ff9ac2);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* hover effect */
.info-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(255,79,139,0.2);
}

/* TITLE */
.card-title{
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

/* TEXT */
.card-text{
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* LIST */
.why-list{
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.why-list li{
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

/* ✔ icon */
.why-list li::before{
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff4f8b;
    font-weight: bold;
}

/* MOBILE */
@media(max-width:768px){
    .info-card{
        padding: 22px;
    }

    .card-title{
        font-size: 22px;
    }

    .card-text,
    .why-list li{
        font-size: 15px;
    }
}


/* services tab*/

.service-tabs .btn.active{
    background: #ff4f8b;
    color: #fff;
    border-color: #ff4f8b;
}


/* NORMAL BUTTON */
.customs-btn{
    background: #ff4f8b;
    color: #fff;
    border: 2px solid #ff4f8b;
    transition: all 0.3s ease;
}

/* BUTTON HOVER */
.customs-btn:hover{
    background: #fff;
    color: #ff4f8b;
    border: 2px solid #ff4f8b;
}

/* CARD HOVER → BUTTON CHANGE */
.services-item:hover .customs-btn{
    background: #fff !important;
    color: #ff4f8b !important;
    border: 2px solid #ff4f8b !important;
}


@media (max-width: 768px){
    .customs-btn{
        display: inline-block;
        width: 100%;       
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 10px;
    }
}

.customs-btn{
    min-width: 140px;
    text-align: center;
}





/* services image */

@media (max-width: 768px){
    .services-img{
        width: 150px;
        height: 220px;
        margin: 0 auto;            
        display: flex;
        justify-content: center;
        align-items: center;
    }

    
}






