/* Business Consulting Page CSS */

/* Top Animated Section */
.consulting-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgb(207, 228, 253), rgba(54, 87, 125, 0.277)), url('package.webp') center/cover no-repeat;
    overflow: hidden;
    color: rgb(0, 0, 0);
    margin-top: 0;
}

.hero-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(89, 230, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    animation: pulse 10s infinite ease-in-out;
}

.shape-1 {
    top: -20%;
    left: -10%;
}

.shape-2 {
    bottom: -20%;
    right: -10%;
    animation-delay: 5s;
}

.consulting-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tag {
    color: rgb(0, 0, 0);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
    animation: fadeInRight 1s ease;
}

.consulting-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.consulting-desc {
    font-size: 1.2rem;
    animation: fadeInUp 1s ease 0.6s forwards;
    color: #08182b;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

to {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .consulting-hero {
        height: auto;
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 40px;
        text-align: center;
    }

    .consulting-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .consulting-desc {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-tag {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hero-shape {
        opacity: 0.2;
        transform: scale(0.6);
    }

    .consulting-services {
        padding: 3rem 0;
    }

    .service-row {
        margin-bottom: 2.5rem;
        flex-direction: column;
        text-align: center;
    }

    .service-row:nth-child(even) {
        flex-direction: column;
    }

    .service-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    .img-fluid{
        display: none;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .consulting-hero {
        height: auto;
        min-height: 60vh;
        padding-top: 100px;
    }

    .consulting-title {
        font-size: 2.5rem;
    }

    .hero-shape {
        opacity: 0.4;
    }
}

/* Services Detail List */
.consulting-services {
    padding: 6rem 0;
    background: white;
}

.service-row {
    margin-bottom: 4rem;
    align-items: center;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-row .text-col {
    padding: 2rem;
}

.service-row .img-col {
    text-align: center;
}

.service-row .img-col img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 50%;
    transition: transform 0.4s;
}

.service-row:hover .img-col img {
    transform: translateY(-10px);
}

.service-badge {
    background: #e0f2fe;
    color: var(--color-primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Packages Section */
.packages-section {
    padding: 6rem 0;
    background: #f8fbff;
}

.package-card-box {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.package-card-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(17, 42, 70, 0.1);
    border-color: var(--color-accent-cyan);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin: 1.5rem 0;
}

.currency {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
    vertical-align: super;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.package-features li {
    margin-bottom: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li i {
    color: var(--color-accent-cyan);
}

/* Infinite Logo Loop */
.logo-slider-section {
    padding: 4rem 0;
    background: white;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    width: calc(200px * 14);
    /* 7 logos doubled */
    animation: scroll 30s linear infinite;
}

.slide {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.slide img {
    width: 100%;
    max-width: 120px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

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

    100% {
        transform: translateX(calc(-200px * 7));
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .consulting-desc {
        font-size: 1rem;
    }

    .consulting-title {
        font-size: 2.5rem;
    }

    .hero-shape {
        display: none;
    }
}