body {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-color: #000;
    color: #fff;
}
body.loaded {
    opacity: 1;
}
.fadeIn {
    animation: fadeIn 1s forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.hoverbut:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
    background: linear-gradient(145deg, #00c9ff, #002eff);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}
footer {
    background: #000000;
    color: white;
    padding: 20px 0;
    position: relative;
}
footer a {
    color: #00c9ff;
}
.animated-title {
    animation: slideInLeft 1s forwards;
}
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.loader::before {
    content: '';
    border: 8px solid #00c9ff;
    border-top: 8px solid transparent;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
 
.why-choose-us-section {
    padding: 50px 0;
    background-color: #000;
}

.why-choose-us-heading {
    font-size: 28px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    margin-bottom: 50px;
}

.why-choose-us .card-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-us .icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #00c9ff, #002eff);
    border-radius: 50%;
    padding: 20px;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.why-choose-us .icon-container i {
    color: #fff;
    font-size: 40px;
}

.why-choose-us .card-title {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
}

.why-choose-us .card-text {
    color: #b3b3b3;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
}

.why-choose-us .card-text span.keyword {
    color: #00c9ff;
    font-weight: bold;
}

@media (max-width: 768px) {
    .why-choose-us .card-container {
        flex-direction: column;
        align-items: center;
    }
}


.service {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333;
}

.status-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    font-size: 18px;
    color: #fff;
    margin-right: 20px;
}

.status-box.success {
    background-color: #28a745;
}

.status-box.warning {
    background-color: #ffc107; 
}

.status-box.danger {
    background-color: #dc3545; 
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 18px;
    margin: 0;
    color: #fff;
}

.status-bar {
    height: 10px;
    border-radius: 5px;
    background-color: #555;
    margin-top: 10px;
}

.status-bar.success {
    background-color: #28a745; 
}

.status-bar.warning {
    background-color: #ffc107;
}

.status-bar.danger {
    background-color: #dc3545; 
}

.global-status-box {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.global-status-box.success {
    background-color: #28a745;
    color: #fff;
}

.global-status-box.danger {
    background-color: #dc3545;
    color: #fff;
}
