/* Styling for Stay Connect Section */
#stay-connect {
    padding: 60px 15px;

}

.about-section {
    background-color: #000000;
}

.about-section .about-title {
    margin-bottom: 23px;
}

.about-section .about-title ,
.about-section .about-content  {
    color: #e9e9e9;
}

.about-section .about-logo {
    width: 90%;
    animation: rotateCoin 15s linear infinite;
    transition: transform 1.5s ease;
    cursor: pointer;
}

.about-section .about-logo:hover {
    width: 90%;
    animation: none;
    transform: rotateY(0deg);
}



@keyframes rotateCoin {
    0% {
        transform: rotateY(0deg);
    }
    25% {
        transform: rotateY(90deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    75% {
        transform: rotateY(270deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.stay-connect h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.stay-connect p {
    color: #777;
}

/* Link Buttons Container */
.stay-connect__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Button Styling */
.stay-connect__btn-primary, .stay-connect__btn-info, .stay-connect__btn-success,
.stay-connect__btn-warning, .stay-connect__btn-danger, .stay-connect__btn-dark,
.stay-connect__btn-secondary {
    font-size: 1rem;
    padding: 12px 25px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

/* Hover Effects */
.stay-connect__btn:hover {
    opacity: 0.8;
}

/* Button Color Classes */
.stay-connect__btn-primary {
    background-color: #007bff;
    color: white;
}

.stay-connect__btn-info {
    background-color: #17a2b8;
    color: white;
}

.stay-connect__btn-success {
    background-color: #28a745;
    color: white;
}

.stay-connect__btn-warning {
    background-color: #ffc107;
    color: black;
}

.stay-connect__btn-danger {
    background-color: #dc3545;
    color: white;
}

.stay-connect__btn-dark {
    background-color: #343a40;
    color: white;
}

.stay-connect__btn-secondary {
    background-color: #6c757d;
    color: white;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    #stay-connect {
        padding: 40px 15px;
    }

    .stay-connect__buttons {
        gap: 10px;
    }

    .stay-connect__btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .stay-connect__btn-primary,
    .stay-connect__btn-info,
    .stay-connect__btn-success,
    .stay-connect__btn-warning,
    .stay-connect__btn-danger,
    .stay-connect__btn-dark,
    .stay-connect__btn-secondary {
        width: 100%;
    }
}

.smss-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background-color: #697581;
    width: 0%;
    z-index: 9999;
    transition: width 0.2s ease-in-out;
}
.ai-item {
    background:  linear-gradient(to right, #d4af37, #fdd84f);;
    padding: 25px 15px 15px 25px;
    min-height: 260px;
    transition: all 1s;
}

.ai-item p {
    color: #000;
}

.ai-item h4 {
    position: relative;
    margin-bottom: 24px;
    padding-bottom: 5px;
    font-size: 17px;
}

.ai-item h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 20%;
    height: 2px;
    background-color: #000000;
}

.ai-item:hover {
    background: linear-gradient(to right, #6717ec, #6b30c699);
    color: #ffff;
}
.ai-item:hover h4::after {
    background-color: #ffffff; 
}

.ai-item:hover p {
    color: #ffff;
}

.mt-60 {
    margin-top: 60px;
  }