.banner-bg{
    background-image: url('assets/Home_Banner1.jpg');
    background-size: cover;
    background-position: center;
}


.cyber-security-services-banner{
    background-image: url('assets/Cybersecurity_BG.jpg');
    background-size: cover;
    background-position: center;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-float-delay-1 {
    animation: float 3s ease-in-out infinite;
    animation-delay: 1s;
}

.animate-float-delay-2 {
    animation: float 3s ease-in-out infinite;
    animation-delay: 2s;
}

.animate-float-delay-3 {
    animation: float 3s ease-in-out infinite;
    animation-delay: 3s;
}

/* Bento Grid Styles */
.bento-grid-image {
    margin-top: 2rem;
}

.bento-item {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.bento-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-item:hover img {
    transform: scale(1.05);
}

.bento-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bento-item .absolute {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .bento-grid-image .grid {
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }
}

/* Service Cards Styles */
.service-card {
    position: relative;
    min-height: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-card .p-8 {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
}

.service-card h3 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-card .text-gray-500 {
    line-height: 1.5;
    font-size: 0.95rem;
    color: #6b7280;
}

.service-card .text-red-600 {
    color: #ef4444;
    font-weight: 500;
}

.service-card .bg-red-600 {
    transition: transform 0.3s ease;
    background-color: #ef4444;
}

.service-card:hover .bg-red-600 {
    transform: scale(1.1);
}

.service-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    .service-cards-container {
        flex-direction: column;
    }

    .service-card {
        margin-bottom: 2rem;
    }
}