/* Custom styles for DeesunTech VAS Platform */

/* Smooth transitions */
.transition-transform {
    transition: transform 0.3s ease;
}

/* Card hover effects */
.bg-white:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive table */
@media (max-width: 640px) {
    .min-w-full {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Custom button hover effects */
button:hover {
    transform: translateY(-1px);
}

/* Custom focus styles */
button:focus,
a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Hero section gradient overlay */
.bg-blue-600 {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* Service card hover effect */
.bg-white:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Status badge styles */
.bg-green-100 {
    background-color: #dcfce7;
}

.text-green-800 {
    color: #166534;
}

/* Social media icons hover effect */
footer a:hover svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .hidden {
        display: none;
    }

    .md\:flex {
        display: flex;
    }
}

/* Custom animation for service cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bg-white {
    animation: fadeIn 0.5s ease-out;
}

/* Custom focus ring for buttons */
button:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Custom link hover effect */
a:hover {
    text-decoration: none;
    color: #2563eb;
}

/* FAQ Section Styles */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.faq-item button {
    transition: all 0.3s ease;
}

.faq-item button:focus {
    outline: none;
}

.faq-item svg {
    transition: transform 0.3s ease;
}

.faq-item.active svg {
    transform: rotate(180deg);
}

/* Testimonial Card Styles */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Feature Card Styles */
.feature-card {
    transition: all 0.3s ease;
}

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

.feature-card svg {
    transition: transform 0.3s ease;
}

.feature-card:hover svg {
    transform: scale(1.1);
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.cta-button {
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .feature-card,
    .testimonial-card {
        margin-bottom: 1rem;
    }

    .faq-item {
        margin-bottom: 0.5rem;
    }
}

/* Animation for FAQ content */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-content {
    animation: slideDown 0.3s ease-out;
}

/* Testimonial Avatar Styles */
.testimonial-avatar {
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
}

/* Feature Icon Styles */
.feature-icon {
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modern styles for DeesunTech VAS Platform */

/* Smooth transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Card hover effects */
.bg-white:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Button hover effects */
button:hover {
    transform: translateY(-2px);
}

/* Custom focus styles */
button:focus,
a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Hero section gradient overlay */
.bg-gradient-to-br {
    background-image: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* Service card hover effect */
.bg-white:hover {
    transform: translateY(-5px);
}

/* Status badge styles */
.bg-green-100 {
    background-color: #dcfce7;
}

.text-green-800 {
    color: #166534;
}

/* Social media icons hover effect */
footer a:hover {
    transform: translateY(-2px);
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .hidden {
        display: none;
    }

    .md\:flex {
        display: flex;
    }
}

/* Custom animation for service cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bg-white {
    animation: fadeIn 0.5s ease-out;
}

/* Custom focus ring for buttons */
button:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Custom link hover effect */
a:hover {
    text-decoration: none;
}

/* Feature Card Styles */
.feature-card {
    transition: all 0.3s ease;
}

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

.feature-card i {
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
}

/* Testimonial Card Styles */
.testimonial-card {
    transition: all 0.3s ease;
}

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

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.cta-button {
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .feature-card,
    .testimonial-card {
        margin-bottom: 1rem;
    }
}

/* Animation for content */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonial Avatar Styles */
.testimonial-avatar {
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
}

/* Feature Icon Styles */
.feature-icon {
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modern glass effect */
.backdrop-blur-md {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Gradient text effect */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

/* Smooth hover transitions */
.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Card elevation effect */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Modern rounded corners */
.rounded-2xl {
    border-radius: 1rem;
}

/* Smooth color transitions */
.transition-colors {
    transition: color 0.3s ease, background-color 0.3s ease;
}

/* Modern button styles */
button {
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

/* Modern input focus styles */
input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Modern card hover effect */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover: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);
}

/* Modern section spacing */
.section-spacing {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 2rem 0;
    }
}

/* Modern text gradient */
.text-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modern icon animations */
.icon-animate {
    transition: transform 0.3s ease;
}

.icon-animate:hover {
    transform: scale(1.1);
}

/* Modern footer styles */
footer {
    background-color: #111827;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

/* Modern social icons */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

/* Hero Section Animations */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* Hero Section Enhancements */
.hero-badge {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-subheading {
        font-size: 1.125rem;
    }
}

/* Button Hover Effects */
.group:hover .group-hover\:translate-x-1 {
    transform: translateX(0.25rem);
}

.group:hover .group-hover\:rotate-12 {
    transform: rotate(12deg);
}

/* Trust Indicators */
.trust-indicator {
    transition: all 0.3s ease;
}

.trust-indicator:hover {
    transform: translateY(-2px);
    color: white;
}

/* Hero Section Background */
.hero-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* Floating Elements */
.floating-element {
    mix-blend-mode: multiply;
    filter: blur(40px);
    opacity: 0.2;
}