/* CSS for Picture Gallery Slider */

.picture-gallery-slider {
    padding: 20px 40px;
    margin: 0 auto;
}

.picture-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 100%;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.picture-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.picture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.picture-overlay i {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.picture-overlay h5 {
    color: white;
    margin: 0;
    text-align: center;
    padding: 0 10px;
    font-size: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.picture-item:hover img {
    transform: scale(1.1);
}

.picture-item:hover .picture-overlay {
    opacity: 1;
}

.picture-item:hover .picture-overlay i,
.picture-item:hover .picture-overlay h5 {
    transform: translateY(0);
}

.picture-gallery-next,
.picture-gallery-prev {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.picture-gallery-next:hover,
.picture-gallery-prev:hover {
    color: #fff;
}

.picture-gallery-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
}

.picture-gallery-pagination .swiper-pagination-bullet-active {
    background: #fff;
}

@media (max-width: 768px) {
    .picture-item {
        aspect-ratio: 4/3;
    }

    .picture-overlay h5 {
        font-size: 0.9rem;
    }
}

/* End of CSS for Picture Gallery Slider */

/* CSS for Logo Gallery Slider */

.logo-showcase-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    padding: 50px;
}

.logo-showcase-modal img {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
}

.logo-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-gallery-slider {
    padding: 20px;
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .logo-gallery-slider {
        padding: 10px;
    }
}

.logo-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.logo-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    overflow: hidden;
}

@media (max-width: 576px) {
    .logo-image {
        hesight: 120px;
    }
}

.logo-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-caption {
    text-align: center;
    margin-top: 8px;
}

.logo-caption h5 {
    margin: 0;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

.swiper-pagination-bullet {
    background: #fff;
}

.swiper-pagination-bullet-active {
    background: #0ea2bd;
}

@media (max-width: 480px) {
    .logo-gallery-slider {
        margin: 0 0px;
    }
}

/* End of CSS for Logo Gallery Slider */

/* Package Gallery Slider */

.package-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-header {
    padding: 25px;
    text-align: center;
    color: #fff;
}

.package-header.blue {
    background: #2c5282;
}
.package-header.orange {
    background: #c05621;
}
.package-header.green {
    background: #276749;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 15px 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.package-content {
    padding: 25px;
}

.package-description {
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.features-list li i {
    color: #4caf50;
    margin-right: 10px;
}

.btn-get-started {
    display: block;
    text-align: center;
    padding: 12px;
    background: #2c5282;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-get-started:hover {
    background: #1a365d;
    color: #fff;
}

/* End of Package Gallery Slider */

/* Design Deliverables Section */
.design-deliverable-item {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.design-deliverable-header {
    padding: 1.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.design-deliverable-header:hover {
    background-color: #f8f9fa;
}

.design-deliverable-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.design-deliverable-header i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.design-deliverable-content {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    color: #6c757d;
}

.design-deliverable-item.active .design-deliverable-header i {
    transform: rotate(90deg);
}

.design-deliverable-item.active .design-deliverable-content {
    max-height: 300px;
    padding: 0 1.25rem 1.25rem;
}
/* End of Design Deliverables Section */

/* our-working-process Section */
.process-card {
    padding: 25px 40px;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    min-height: 150px;
    display: flex;
    align-items: center;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 1;
}

.process-content {
    flex: 1;
}

.process-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.process-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.process-icon {
    margin-left: 20px;
}

.process-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon i {
    opacity: 1;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .process-card {
        padding: 20px;
    }

    .process-content h3 {
        font-size: 1.1rem;
    }

    .process-content p {
        font-size: 0.9rem;
    }
}
/* End of our-working-process Section */

/* FAQ Section */
.faq-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

.faq-header:hover h4 {
    color: #4a9eff !important;
}

.bi-plus,
.bi-dash {
    font-size: 1.5rem;
}

.faq-item.active .faq-content {
    max-height: 500px;
}
/* End of FAQ Section */
