.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #4a90e2, #67b26f);
    color: #ffffff;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    backdrop-filter: blur(5px);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.carousel-control {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ffffff;
    transform: scale(1.2);
}

.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #67b26f);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover:before {
    opacity: 1;
}

.customer-reviews {
    padding: 80px 0;
    background: #f8f9fa;
}

.cloud-journey {
    padding: 20px 0 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.highlight {
    color: #4a90e2;
    font-size: 1.8rem;
    font-weight: bold;
}

.price {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: #2c3e50;
}

.reviews-swiper {
    padding: 20px 0 40px;
    overflow: hidden;
}

.reviews-swiper .swiper-wrapper {
    transition-timing-function: ease-out;
}

.review-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.reviewer-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #4a90e2;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    text-align: center;
    flex-grow: 1;
}

.reviewer-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.review-text {
    color: #7f8c8d;
    line-height: 1.6;
    font-style: italic;
}

.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e0;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #4a90e2;
    opacity: 1;
    transform: scale(1.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.feature-card p {
    color: #5d6d7e;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero {
        position: relative;
        width: 100%;
        height: 400px;
        overflow: hidden;
    }

    .hero-carousel {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .hero-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero-slide.active {
        opacity: 1;
    }

    .hero-content {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        padding: 60px 15px;
        text-align: center;
        color: #ffffff;
    }

    .hero-title {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-desc {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .hero-actions {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .hero-btn {
        padding: 10px 20px;
        border: none;
        border-radius: 25px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .hero-btn-primary {
        background: linear-gradient(135deg, #4a90e2, #67b26f);
        color: #ffffff;
    }

    .hero-btn-secondary {
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff;
        backdrop-filter: blur(5px);
    }

    .hero-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .carousel-controls {
        position: absolute;
        bottom: 30px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .carousel-control {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .carousel-control:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .carousel-indicators {
        display: flex;
        gap: 0.5rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .indicator.active {
        background: #ffffff;
        transform: scale(1.2);
    }

    .why-choose-us {
        padding: 40px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.75rem;
    }

    .customer-reviews {
        padding: 40px 0;
        background: #f8f9fa;
    }

    .reviews-swiper {
        padding: 20px 0 40px;
    }

    .review-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .reviewer-avatar {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #4a90e2;
    }

    .reviewer-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .review-content {
        text-align: center;
        flex-grow: 1;
    }

    .reviewer-name {
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 8px;
    }

    .review-text {
        color: #7f8c8d;
        line-height: 1.6;
        font-style: italic;
    }

    .swiper-pagination {
        position: relative;
        margin-top: 20px;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #cbd5e0;
        opacity: 0.5;
        transition: all 0.3s ease;
    }

    .swiper-pagination-bullet-active {
        background: #4a90e2;
        opacity: 1;
        transform: scale(1.2);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.bg-dark.bg-darken-1 {
    background-color: #1a1a1a;
}

/* Our Customers Section */
.our-customers {
    padding: 60px 0 20px 0;
    background-color: #f8f9fa;
}

.our-customers .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.our-customers .section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.our-customers .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

@keyframes slideLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-220px * 5));
    }
}

.customers-logo-container {
    width: 100%;
    height: 160px;
    margin-top: 30px;
    overflow: hidden;
    position: relative;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    user-select: none;
}

.customers-logo-container .swiper-wrapper {
    display: flex;
    gap: 30px;
    padding: 10px;
    transition: transform 0.3s ease;
}

.customers-logo-container .swiper-slide {
    width: 220px;
    height: 100px;
}

.customer-logo {
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 10px;
}

@keyframes slideLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.customer-logo:hover {
    transform: translateY(-3px);
}

.customer-logo img {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
}


.zz-img {
    max-width: 200px;
    min-width: 150px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.zz-img:hover {
    transform: scale(1.03);
}

.enterprise-qualification {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.enterprise-qualification .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.enterprise-qualification h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.enterprise-qualification p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.enterprise-qualification .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.enterprise-qualification .col-sm-6 {
    width: 100%;
    padding: 1rem;
}

.enterprise-qualification .zz-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.enterprise-qualification .zz-img:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .enterprise-qualification {
        padding: 40px 0;
    }

    .enterprise-qualification .row {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        padding: 0.5rem;
    }

    .enterprise-qualification .col-sm-6 {
        padding: 0.5rem;
    }
}


.box-shadow-2 {
    box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14),
        0 3px 14px 2px rgba(0, 0, 0, 0.12),
        0 5px 5px -3px rgba(0, 0, 0, 0.2);
}

.text-secondary {
    color: #6c757d !important;
}

.mb-25 {
    margin-bottom: 25px;
}

@media (max-width: 767.98px) {
    .zz-img {
        max-width: 150px;
        min-width: 100px;
        width: 90%;
        display: block;
    }
}

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: -60px;
    width: 40px;
    height: 40px;
    background-color: #83c4ce;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-to-top.show {
    bottom: 30px;
    opacity: 1;
}

.back-to-top:hover {
    background-color: #7cb6c0;
    transform: translateY(-3px);
}

.back-to-top i {
    font-size: 20px;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(20px);
        opacity: 0;
    }
}

.back-to-top.slide-up {
    animation: slideUp 0.3s ease forwards;
}

.back-to-top.slide-down {
    animation: slideDown 0.3s ease forwards;
}