
#market-services {
    padding: 40px;
    text-align: center;
}
.market-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.market-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}
.market-card:hover {
    transform: translateY(-5px);
}
.market-image {
    width: 100%;
    border-radius: 10px;
}
.market-title {
    font-size: 18px;
    margin-top: 15px;
    font-weight: bold;
}
.market-text {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .market-container {
        flex-direction: column;
        align-items: center;
    }
    .market-card {
        width: 90%;
        max-width: 400px;
    }
}





.digital-container {
    padding: 40px;
    background-color: transparent;
    background-image: linear-gradient(180deg, #00C9FF 0%, #92FE9D 100%);
}
.digital-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}
.digital-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}
.digital-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.digital-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    border: 1px solid #ddd;
}
.digital-card:hover {
    transform: translateY(-5px);
}
.digital-icon {
    background: #071D49;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
}
.digital-icon img {
    width: 30px;
    height: 30px;
}
.digital-card-title {
    font-size: 20px;
    font-weight: bold;
}
.digital-card-text {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .digital-cards {
        flex-direction: column;
        align-items: center;
    }
    .digital-card {
        width: 90%;
        max-width: 400px;
    }
}




#back{
    background-image: linear-gradient(180deg, #00C9FF 0%, #92FE9D 100%);
    border-radius: 30px;
}

.digit-container {
    width: 70%;
    margin: auto;
    padding: 40px 0;
    display: flex;
    gap: 50px;
}
.digit-header {
    text-align: left;
    margin-bottom: 20px;
}
.digit-header h2 {
    font-size: 2rem;
    color: #000;
}
.digit-header p {
    font-size: 1rem;
    color: #333;
    max-width: 500px;
}
.digit-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #E85C51;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
}
.digit-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.digit-content {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 500%;
}
.digit-card {
    flex: 1 0 20%;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

#digit{
    width: 10%;
}
.digit-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.digit-card h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #000;
}
.digit-card p {
    font-size: 0.9rem;
    color: #333;
    padding: 0 10px 20px;
}
.digit-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.digit-dot {
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.digit-dot.active {
    background: #E85C51;
}
@media (max-width: 768px) {
    .digit-card {
        flex: 1 0 100%;
    }

    .digit-container {
        
        margin: auto;
        
        display:block;
       
    }
    #container{
        display: none;
    }
}



@media (min-width: 768px) {
    #news11-container {
        display: none;
    }
}

.news11-card    {
    background-color: white;
    padding: 10px;
    margin-bottom: 50px;
    border-radius: 10px;
}


.scroll-card {
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.scroll-card.show {
    transform: translateY(0);
    opacity: 1;
}



/* Marketing */
.headimg {
    display: flex;
    gap: 50px;
    margin-top: 30px;
    justify-content: space-between;
    align-items: center; 
    height: 100%;
    width: 100%;
    
    /* background-color: transparent;background-image: linear-gradient(180deg, #00C9FF 0%, #92FE9D 100%); border-radius: 30px; */
}

/* Animations */
.lefthead {
    margin-top: 40px;
    width: 50%;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-in-out forwards;
}

.lefthead h3 {
    font-size: 40px;
    font-weight: bold;
}

.lefthead p {
    color: rgb(234 85 15 / var(--tw-text-opacity, 1));
    font-size: 20px;
    
}

.righthead img {
    border-radius: 30px;
    height: 450px;
    width: 100%;
    margin-bottom: 50px;
    margin-top: 30px;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-in-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .headimg {
        display: block;
        margin-top: -70px;
    }

    .lefthead {
        text-align: center;
        width: 100%;
        padding: 10px;
        padding-top: 92px;
    }
}

/* Keyframes for Animations */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}





/* advertisting */

.ad-options {
     display: grid; 
     grid-template-columns: repeat(3, 1fr); 
     gap: 20px; justify-content: center; 
     padding: 30px;
}
.ad-box {  
    padding: 20px; 
    background: #f4f4f4; 
    margin: 10px; 
    text-align: center; 
    border-radius: 30px;
}
.ad-icon { 
    width: 50px; 
    height: 50px; 
    margin-bottom: 10px; 
}
