.hero {
    background: #ffffff url("../images/setting/banner001.jpg") center center / cover no-repeat;
    width: 100%;
    height: 600px;
}
.hero-wrapper{
    height: 100%;
    display: flex;
    align-items: center;
}
.hero .hero-title {
    color: white;
    font-size: 4em;
}
.hero .hero-description {
}
.hero .cta-action {
}
.hero .cta-action .btn-hero{    
    margin-right: 2rem;
    width: 30%;
    box-shadow: 2px 2px 2px 2px #495057;
}
.hero .cta-action .btn-hero:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border: 1px solid #ffffff;
}
.hero .cta-action .btn-hero.btn-register{
    background-color: var(--blue);
    color: #ffffff;
}
.hero .cta-action .btn-hero.btn-price{
    background-color: #ffffff;
}
.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e88e5 0%, #43a047 100%);
    animation: gradientMove 8s ease infinite;
    z-index: 0;
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.about {
}
.about .about-image {}
.about .about-image img {}
.about .about-description {
}
.about .about-description .about-name {}
.about .about-description .about-des {}
.about .about-description .about-more {
}
.about .about-description a {
}
.team-wrapper .team-item {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.team-wrapper .team-item_img {
    height: 100%;
    flex-grow: 1;
}
.team-wrapper .team-item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.team-wrapper .team-item:hover .team-item_img img {
    transform: scale(1.05);
}
.team-wrapper .team-item_info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    padding: 12px 10px;
    background: rgba(5, 150, 216, 0.85);
    color: #ffffff;
    transition: background 0.3s ease;
}
.team-wrapper .team-item:hover .team-item_info {
    background: rgba(5, 120, 180, 0.95);
}
.team-wrapper .team-item_info a {
    color: #ffffff;
    text-decoration: none;
}
.team-wrapper {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}
.team-wrapper .team-item {
    aspect-ratio: 4 / 3;
}
@media (min-width: 768px) {
    .team-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-wrapper .team-item {
        aspect-ratio: 1 / 1;
    }
}
@media (min-width: 992px) {
    .team-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
    .team-wrapper .team-item.big {
        grid-column: 1 / span 2;
        grid-row: 1 / span 2;
    }
    .team-wrapper .team-item:nth-child(2) { grid-column: 3; grid-row: 1; }
    .team-wrapper .team-item:nth-child(3) { grid-column: 4; grid-row: 1; }
    .team-wrapper .team-item:nth-child(4) { grid-column: 3; grid-row: 2; }
    .team-wrapper .team-item:nth-child(5) { grid-column: 4; grid-row: 2; }
}
.services {}
.services .section-title {}
.services .services-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.services .services-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.services .services-item a {
    text-decoration: none;
    color: var(--text-color);
}
.services .item-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.services .item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.services .services-item:hover .item-image img {
    transform: scale(1.05);
}
.services .item-name {
    text-align: center;
    position: absolute;
    font-weight: 600;
    padding: 12px 8px 4px;
    margin-bottom: 0;
    font-size: 18px;
    color: var(--heading-color);
    text-align: center;
    background-color: #ffffff;
    bottom: 0;
    width: 100%;
}
.services .services-register {
    padding: 8px 0 12px;
}
.services .services-register a {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}
.services .services-register a:hover {
    color: var(--primary-color-hover);
}
.team .team-layout {
    display: flex;
    align-items: flex-start;
}
.team .team-tab {
    border-right: 1px solid var(--border-color);
}
.team .team-tab .nav-link {
    padding: 12px 16px;
    font-weight: 500;
    color: var(--text-color);
    border: none;
    border-radius: 25px 0px 0px 25px;
    transition: 0.3s ease;
}
.team .team-tab .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
}
.team .team-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 5px 2px #cecece;
    min-height: 300px;
}
.team .team-content img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.team .team-card {
    padding: 16px;
    text-align: center;
}
.team .team-card .team-name {
    font-weight: 600;
    margin-bottom: 12px;
}
.contact{
    background-color: #fbfbfb;
}
.section.testimonial {
        padding: 60px 0;
        background-color: #f0f5fa; 
    }
    .testimonial-item {
        background-color: #ffffff;
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 320px; 
    }
    .testimonial-avatar {
        margin: 0 auto 20px auto;
        width: 100%;
        height: auto;
        min-height: 200px;
        overflow: hidden; 
        border-radius: 0; 
        border: 1px solid #f0f0f0; 
    }
    .testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
    }
    .testimonial-comment {
        font-style: italic;
        color: #555;
        margin-bottom: 20px;
        flex-grow: 1; 
    }
    .testimonial-name {
        font-weight: 600;
        color: #333;
        display: block;
        margin-top: auto; 
    }
    .testimonial-position {
        font-size: 0.9em;
        color: #777;
    }
    .testimonial-swiper {
        padding-bottom: 40px; 
    }
.commitment {
}
.commitment .commitment-item {
    padding: 10px;
    text-align: center;
    box-shadow: 2px 2px 9px 5px #ededed;
}
.commitment .commitment-item .item-imgae {display: flex;justify-content: center;}
.commitment .commitment-item .item-imgae img {
}
.commitment .commitment-item .item-des {
    margin: 0;
    font-weight: 600;
}
.resgiter {
    background: #ffffff url("../images/setting/background-001.png") center center / cover no-repeat;
    padding: 10px 0;
}
.resgiter .resgiter-form {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.resgiter .resgiter-form p{
    font-weight: 600;
    margin-bottom: 0;
}
.resgiter .resgiter-form form {display: flex;align-items: center;justify-content: space-between;width: 100%;}
.resgiter .resgiter-form .list-socials {
    list-style: none;
    display: flex;
    margin-bottom: 0px;
    transition: var(--transition-speed);
}
.resgiter .resgiter-form .list-socials li {
    margin-right: 10px;
    background-color: #ededed;
    border-radius: var(--border-radius);
    padding: 5px;
}
.resgiter .resgiter-form .list-socials li:hover {
    transform: translateY(-10px);
}
.resgiter .resgiter-form .list-socials li a {
}
.resgiter .resgiter-form .list-socials li a img {
}
.input-wrapper {
    position: relative;
    width: 100%;
}
.input-wrapper input.form-control {
    padding-right: 50px; 
    height: 48px;
}
.input-wrapper .submit-btn {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    height: 38px;
    width: 40px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.input-wrapper .submit-btn:hover {
    background-color: #0056b3;
}