@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
/* --- Banner Section --- */
/* .banner-wrap {
    aspect-ratio: 1260 / 504;
} */

.banner-slider img {
    width: 100%;
}

.banner-slider:not(.slick-initialized) {
    display: block;
    overflow: hidden;
}

.banner-slider:not(.slick-initialized)>.item:not(:first-child) {
    display: none;
}

.banner-content-inner span {
    /* font-family: "Dancing Script", cursive; */
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
    display: block;
}

/* --- Blogs Section --- */
.home-blogs {
    padding: 40px 0;
    background-color: #ffffff;
}

.blogs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    position: relative;
    padding-left: 12px;
    line-height: 1;
    margin: 0;
    color: var(--color-3);
    text-transform: uppercase;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--color-3);
    border-radius: 2px;
}

.btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--color-3);
    color: #ffffff;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-readmore:hover {
    background-color: var(--color-4);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 139, 70, 0.25);
}

.btn-readmore .arrow {
    width: 14px;
    height: 14px;
    display: inline-block;
}

/* Slick Carousel adjustments */
.blogs-slider {
    margin-left: -10px;
    margin-right: -10px;
}

.blogs-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
    flex-wrap: nowrap;
}

.blogs-slider:not(.slick-initialized) .blog-item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    margin: 0 10px;
}

.blogs-slider .slick-slide {
    padding: 0 10px;
}

.blog-card {
    display: block;
    text-decoration: none;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.blog-image {
    width: 100%;
    aspect-ratio: 1.5;
    /* 16:9 ratio */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #f5f5f7;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.06);
}

.blog-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* height: 44px; */
    /* fixed height for 2 lines */
}

.blog-card:hover .blog-title {
    color: var(--color-3);
}

/* Slick arrow customization */
.blogs-slider .slick-prev,
.blogs-slider .slick-next {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #111;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.blogs-slider .slick-prev:hover,
.blogs-slider .slick-next:hover {
    background-color: var(--color-3);
    border-color: var(--color-3);
    color: #ffffff;
}

.blogs-slider .slick-prev svg,
.blogs-slider .slick-next svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Responsive styles */
@media (max-width: 992px) {
    .blogs-slider:not(.slick-initialized) .blog-item {
        flex: 0 0 calc(50% - 24px);
        max-width: calc(50% - 24px);
    }

    .blogs-header .section-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .blogs-slider:not(.slick-initialized) .blog-item {
        flex: 0 0 calc(100% - 24px);
        max-width: calc(100% - 24px);
    }

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

    .btn-readmore {
        padding: 8px 16px;
        font-size: 13px;
    }

    .blog-title {
        font-size: 16px;
    }
}

/* --- Why Choose Us Section --- */
.home-why-choose-us {
    padding: 60px 0 20px;
    background-color: #ffffff;
    overflow: hidden;
}

.choose-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-left: -20px;
}

.choose-left {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 20px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.choose-right {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 20px;
    padding-left: 20px;
}

.choose-title {
    margin-bottom: 20px;
}

.choose-desc {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}

.choose-images {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.choose-img-wrapper {
    flex: 1;
    aspect-ratio: 1.25;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f5f5f7;
}

.choose-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.choose-img-wrapper:hover img {
    transform: scale(1.04);
}

.choose-btn-contact {
    display: block;
    width: 100%;
    background-color: var(--color-3);
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.1);
}

.choose-btn-contact:hover {
    background-color: var(--color-4);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.25);
}

/* Grid layout for cards */
.choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

.choose-card {
    border: 1px solid var(--color-3);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.choose-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-3);
}

.choose-card-icon svg {
    width: 100%;
    height: 100%;
}

.choose-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.choose-card-desc {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .choose-left {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .choose-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (max-width: 576px) {
    .choose-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .choose-images {
        flex-direction: column;
        gap: 12px;
    }

    .choose-title {
        font-size: 22px;
    }

    .choose-card {
        padding: 20px 15px;
    }

    .home-why-choose-us {
        padding: 30px 0 20px;
    }
}

/* --- Certificates Section --- */
.home-certificates {
    padding: 50px 0 30px;
    background-color: #ffffff;
    overflow: hidden;
}

.home-certificates .section-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
    padding-left: 0;
}

.home-certificates .section-title::before {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 1.5px;
    background: linear-gradient(to right, transparent 0%, var(--color-3) 30%, var(--color-3) 45%, transparent 45%, transparent 55%, var(--color-3) 55%, var(--color-3) 70%, transparent 100%);
    border-radius: 0;
    top: auto;
}

.home-certificates .section-title::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: var(--color-3);
}

.cert-slider-wrapper {
    position: relative;
    /* padding: 0 40px;  */
}

.cert-slider {
    margin-left: -10px;
    margin-right: -10px;
}

.cert-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
    flex-wrap: nowrap;
}

.cert-slider:not(.slick-initialized) .cert-item {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    margin: 0 10px;
}

.cert-slider .slick-slide {
    padding: 0 10px;
}

.cert-card {
    border: 3px solid var(--color-3);
    border-radius: 4px;
    overflow: hidden;
    background-color: #ffffff;
    aspect-ratio: 0.73;
    /* standard portrait certificate paper ratio */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cert-card:hover img {
    transform: scale(1.05);
}

.cert-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slick Customization for Certificates */
.cert-slider-wrapper .slick-prev,
.cert-slider-wrapper .slick-next {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: transparent;
    border: none;
    color: var(--color-3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cert-slider-wrapper .slick-prev {
    left: 0;
}

.cert-slider-wrapper .slick-next {
    right: 0;
}

.cert-slider-wrapper .slick-prev:hover,
.cert-slider-wrapper .slick-next:hover {
    color: var(--color-4);
    transform: translateY(-50%) scale(1.15);
}

.cert-slider-wrapper .slick-prev svg,
.cert-slider-wrapper .slick-next svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Slick Dots for Certificates */
.cert-slider .slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    gap: 4px;
}

.cert-slider .slick-dots li {
    display: inline-block;
}

.cert-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 9px;
    height: 9px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #e0e0e0;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.cert-slider .slick-dots li.slick-active button {
    background: var(--color-3);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .cert-slider:not(.slick-initialized) .cert-item {
        flex: 0 0 calc(25% - 20px);
        max-width: calc(25% - 20px);
    }
}

@media (max-width: 992px) {
    .cert-slider-wrapper {
        padding: 0;
    }

    .cert-slider-wrapper .slick-prev,
    .cert-slider-wrapper .slick-next {
        display: none !important;
        /* Hide arrows on small screens */
    }

    .cert-slider:not(.slick-initialized) .cert-item {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

@media (max-width: 576px) {
    .cert-slider:not(.slick-initialized) .cert-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .home-certificates {
        padding: 30px 0 30px;
    }
}

@media (max-width: 400px) {
    .cert-slider:not(.slick-initialized) .cert-item {
        flex: 0 0 calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
}

/* --- Experience Section --- */
.home-experience {
    padding: 60px 0;
    /* Subtle premium topographic background pattern */
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M10 20c10-5 15-5 25 0s15 10 25 0 15-5 25 0M-10 40c10-5 15-5 25 0s15 10 25 0 15-5 25 0M10 60c10-5 15-5 25 0s15 10 25 0 15-5 25 0' fill='none' stroke='%23f0f5f2' stroke-width='1.5'/%3E%3C/svg%3E");
    overflow: hidden;
}

.exp-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-left: -20px;
    align-items: center;
    margin-bottom: 50px;
}

.exp-left {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 20px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.exp-right {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 20px;
    padding-left: 20px;
}

.exp-title {
    margin-bottom: 25px;
}

.exp-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

.exp-btn-readmore {
    display: block;
    width: 100%;
    text-align: center;
    align-self: flex-start;
    background-color: var(--color-3);
    color: #ffffff;
    padding: 12px 35px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.1);
}

.exp-btn-readmore:hover {
    background-color: var(--color-4);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.25);
    transform: translateY(-1px);
}

/* Video Wrapper */
.exp-video-wrapper {
    width: 100%;
    aspect-ratio: 1.85;
    /* matches the mockup video frame ratio */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    background-color: #000;
}

.exp-video-thumbnail {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.exp-video-thumbnail iframe {
    aspect-ratio: 610 / 330;
}


.exp-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.exp-video-thumbnail:hover img {
    transform: scale(1.03);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease;
}

.exp-video-thumbnail:hover .video-overlay {
    background: rgba(0, 0, 0, 0.25);
}

.youtube-play-btn {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exp-video-thumbnail:hover .youtube-play-btn {
    transform: scale(1.1);
}

/* Stats Slider */
.exp-stats-slider-wrapper {
    margin-top: 10px;
}

.exp-stats-row {
    margin-left: -12px;
    margin-right: -12px;
}

.exp-stat-item {
    padding: 0 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    outline: none;
}

.exp-stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-3);
    flex-shrink: 0;
}

.exp-stat-icon svg {
    width: 100%;
    height: 100%;
}

.exp-stat-content {
    display: flex;
    flex-direction: column;
}

.exp-stat-number {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
}

.exp-stat-label {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

/* Responsive Experience styles */
@media (max-width: 992px) {
    .exp-left {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .exp-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .exp-video-wrapper {
        aspect-ratio: 1.6;
    }

    .home-experience {
        padding: 30px 0;
    }
}

/* --- Features Section --- */
.home-features {
    padding: 45px 0;
    background-color: #ffffff;
    /* border-bottom: 1px solid #f0f0f0; */
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    justify-content: space-between;
}

.feature-col {
    flex: 1 1 22%;
    max-width: 24%;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-3);
    transition: transform 0.3s ease;
}

.feature-col:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #0c2340;
    margin-bottom: 5px;
    line-height: 1.3;
}

.feature-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .feature-col {
        flex: 0 0 50%;
        max-width: 50%;
        /* margin-bottom: 40px; */
    }

    .features-row {
        margin-bottom: -40px;
    }
}

@media (max-width: 576px) {
    .feature-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .feature-title {
        font-size: 18px;
    }

    .home-features {
        padding: 30px 0;
    }
}

/* --- Banner Overlay Content --- */
.banner-slider .item {
    position: relative;
}

.banner-slider .item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000073;
    pointer-events: none;
    z-index: 1;
}

.banner-gradient {
    background: linear-gradient(to right, #23a455, #fff);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    /* Let clicks pass through if needed, but the button should be clickable */
}

.banner-content .ctnr {
    pointer-events: none;
}

.banner-content .banner-content-inner {
    max-width: 55%;
    pointer-events: auto;
    /* Re-enable pointer events for the contents */
    margin: auto;
    text-align: center;
}

.banner-title {
    font-size: clamp(21px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.4;
    color: #FFF318;
    margin: 10px 0 10px 0;
    text-transform: uppercase;
}

.banner-subtitle {
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 300;
    line-height: 1.5;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: #FFF318;
    border: 1.5px solid #FFF318;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background-color: #ffffff;
    color: #0c2340;
    border-color: #ffffff;
    text-decoration: none;
}

.banner-btn svg {
    transition: transform 0.2s ease;
}

.banner-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive banner content */
@media (max-width: 992px) {
    .banner-content .banner-content-inner {
        max-width: 70%;
    }

    .banner-slider img {
        min-height: 400px;
        object-fit: cover;
    }
}


@media (max-width: 480px) {
    .banner-content .banner-content-inner {
        max-width: 100%;
    }

    .banner-title span {
        padding: 2px 6px;
    }
}

/* --- Features Slider --- */
.features-slider-wrapper {
    position: relative;
    padding: 0 40px;
}

.features-slider {
    margin-left: -10px;
    margin-right: -10px;
}

.features-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
    flex-wrap: nowrap;
}

.features-slider:not(.slick-initialized) .feature-item {
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
    margin: 0 10px;
}

.features-slider .slick-slide {
    padding: 0 10px;
}

.features-slider .feature-col {
    flex: none;
    max-width: 100%;
    width: 100%;
}

.features-slider-wrapper .slick-prev,
.features-slider-wrapper .slick-next {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #111;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.features-slider-wrapper .slick-prev {
    left: -10px;
}

.features-slider-wrapper .slick-next {
    right: -10px;
}

.features-slider-wrapper .slick-prev:hover,
.features-slider-wrapper .slick-next:hover {
    background-color: var(--color-3);
    border-color: var(--color-3);
    color: #ffffff;
}

.features-slider-wrapper .slick-prev svg,
.features-slider-wrapper .slick-next svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.features-slider .slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    gap: 4px;
}

.features-slider .slick-dots li {
    display: inline-block;
}

.features-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 9px;
    height: 9px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #e0e0e0;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.features-slider .slick-dots li.slick-active button {
    background: var(--color-3);
    /* transform: scale(1.2); */
}

@media (max-width: 1400px) {
    .features-slider-wrapper {
        padding: 0;
    }

    .features-slider-wrapper .slick-prev {
        left: 0px;
    }

    .features-slider-wrapper .slick-next {
        right: 0px;
    }
}

@media (max-width: 992px) {

    .features-slider-wrapper .slick-prev,
    .features-slider-wrapper .slick-next {
        display: none !important;
    }

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

    .exp-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Slick Slide Text Entrance Animations */
.banner-slider .slick-slide .banner-content-inner>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner-slider .slick-slide.slick-active .banner-content-inner>* {
    opacity: 1;
    transform: translateY(0);
}

.banner-slider .slick-slide.slick-active .banner-content-inner span {
    transition-delay: 0.3s;
}

.banner-slider .slick-slide.slick-active .banner-content-inner .banner-title {
    transition-delay: 0.5s;
}

.banner-slider .slick-slide.slick-active .banner-content-inner .banner-subtitle {
    transition-delay: 0.7s;
}

.banner-slider .slick-slide.slick-active .banner-content-inner .banner-btn {
    transition-delay: 0.9s;
}



/* ====== HOME PRODUCT SLIDER BLOCK ====== */
.home-product-slider-block {
    padding: 50px 0;
    background: #fff;
}

.home-product-slider-block.bg-odd {
    background: #F6F9FC;
}

.home-product-slider-block .section-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.home-product-slider-block .section-title::before {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 1.5px;
    background: linear-gradient(to right, transparent 0%, var(--color-3) 30%, var(--color-3) 45%, transparent 45%, transparent 55%, var(--color-3) 55%, var(--color-3) 70%, transparent 100%);
    border-radius: 0;
    top: auto;
}

.home-product-slider-block .section-title::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--color-3);
}

.product-slider-card {
    padding: 10px;
    border: 1px solid #eee;
}

.product-slider-card-inner {
    /* border: 2px solid #e31e24; */
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    position: relative;
    transition: box-shadow 0.3s;
}

.product-slider-card-inner:hover {
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.18);
}

.product-card-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #e31e24;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    padding: 4px 8px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.product-card-badge .badge-arrows {
    color: #fff;
    font-size: 13px;
}

.product-card-logo {
    position: absolute;
    top: 28px;
    left: 10px;
    z-index: 2;
    width: 60px;
}

.product-card-logo img {
    width: 100%;
    height: auto;
}

.product-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    display: block;
    background: #fff;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s;
}

.product-slider-card-inner:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-footer {
    background: #e31e24;
    color: #fff;
    text-align: center;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-card-info {
    padding: 12px 10px 10px;
    text-align: center;
}

.product-card-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
}

.product-card-price {
    font-size: 14px;
    color: #e31e24;
    margin: 0;
}

.product-slider-btn-wrap {
    text-align: center;
    margin-top: 20px;
}

.product-slider-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e31e24;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s;
}

.product-slider-btn:hover {
    background: #b71518;
    color: #fff;
    text-decoration: none;
}

/* ====== HOME FAQ ACCORDION ====== */
.home-faq-block {
    padding: 40px 0 20px;
    background: #fff;
    /* border-top: 1px solid #f0f0f0; */
}

.home-faq-block .faq-section-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 45px;
    text-transform: none;
    position: relative;
    padding-bottom: 20px;
    color: var(--color-3);
    text-transform: uppercase;
}

.home-faq-block .faq-section-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 1.5px;
    background: linear-gradient(to right, var(--color-3) 0%, var(--color-3) 45%, transparent 45%, transparent 55%, var(--color-3) 55%, var(--color-3) 100%);
}

.home-faq-block .faq-section-title::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: var(--color-3);
}

.faq-two-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.faq-accordion-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: #F3F5F9;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item.is-open {
    background-color: #ffffff;
    border-color: var(--color-3, #0175be);
    box-shadow: 0 10px 25px rgba(31, 44, 67, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 24px;
    cursor: pointer;
    background: transparent;
    border: none;
    text-align: left;
    gap: 15px;
}

.faq-question-text {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: #1f2c43;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

.faq-num {
    color: #4a5568;
    font-weight: 700;
    font-family: inherit;
}

.faq-item.is-open .faq-num {
    color: var(--color-3, #0175be);
}

.faq-toggle-icon {
    width: 22px;
    height: 22px;
    border: 1px solid #1f2c43;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.faq-item.is-open .faq-toggle-icon {
    border-color: var(--color-3, #0175be);
    background-color: var(--color-3, #0175be);
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: '';
    position: absolute;
    background-color: #1f2c43;
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.2s;
}

/* Horizontal line */
.faq-toggle-icon::before {
    width: 10px;
    height: 1.5px;
}

/* Vertical line */
.faq-toggle-icon::after {
    width: 1.5px;
    height: 10px;
}

.faq-item.is-open .faq-toggle-icon::before {
    background-color: #ffffff;
}

.faq-item.is-open .faq-toggle-icon::after {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px 24px;
    font-size: 14.5px;
    color: #4a5568;
    line-height: 1.7;
    border-top: 1px solid transparent;
}

.faq-item.is-open .faq-answer {
    display: block;
    border-top: 1px solid #edf2f7;
    padding-top: 15px;
}

/* Right column: Image */
.faq-image-col {
    width: 100%;
}

.faq-image-box {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.faq-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 590px;
}

@media (max-width: 991px) {
    .faq-two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-image-col {
        order: -1;
    }

    .home-faq-block .faq-section-title {
        font-size: 24px;
    }
}

/* ====== HOME IMPLEMENTED PROJECTS (grid) ====== */
.home-implemented-projects {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.home-implemented-projects .section-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.home-implemented-projects .section-title::before {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 1.5px;
    background: linear-gradient(to right, transparent 0%, var(--color-3) 30%, var(--color-3) 45%, transparent 45%, transparent 55%, var(--color-3) 55%, var(--color-3) 70%, transparent 100%);
    border-radius: 0;
    top: auto;
}

.home-implemented-projects .section-title::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: var(--color-3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 25px;
}

.project-item {
    background: transparent;
    text-align: center;
}

.project-link-wrapper {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}

.project-img-box {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f3f4f6;
    border-radius: 4px;
}

.project-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-item:hover .project-img-box img {
    transform: scale(1.04);
}

.project-title {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 700;
    color: #2b3a4a;
    line-height: 1.4;
    text-align: center;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}

.project-item:hover .project-title {
    color: var(--color-4, #0175be);
}

.project-shop-now {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-3, #02b0f3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.project-shop-now .arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.project-item:hover .project-shop-now {
    color: var(--color-4, #0175be);
}

.project-item:hover .project-shop-now .arrow {
    transform: translateX(4px);
}

.home-product-slider .slick-dots {
    margin-top: 30px;
}

.home-product-slider .slick-dots li {
    width: 10px;
    height: 10px;
}

.home-product-slider .slick-slide {
    margin: 0 10px;
}

.home-product-slider .slick-list {
    margin: 0 -10px;
}

@media (min-width: 992px) {

    .home-implemented-projects .section-title {
        margin-bottom: 70px;
    }

    .project-item:nth-child(3n+2) {
        transform: translateY(-40px);
    }
}

@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .home-implemented-projects .section-title,
    .home-product-slider-block .section-title,
    .home-certificates .section-title {
        font-size: 21px;
    }

    .home-product-slider-block {
        padding: 30px 0;
    }

    .home-faq-block {
        padding: 30px 0;
    }

    .home-implemented-projects {
        padding: 30px 0;
    }
}