/* Custom styles for the investment website */

/* Custom gradients and color classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, #1e40af 0%, #0f766e 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 100%);
}

.bg-gradient-accent {
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
}

/* Custom button styles */
.btn-primary {
    @apply bg-gradient-to-r from-blue-600 to-emerald-600 text-white font-bold py-3 px-6 rounded-full hover:from-blue-700 hover:to-emerald-700 transition-all duration-300;
}

.btn-secondary {
    @apply bg-gradient-to-r from-cyan-600 to-blue-600 text-white font-bold py-3 px-6 rounded-full hover:from-cyan-700 hover:to-blue-700 transition-all duration-300;
}

/* Card hover effects */
.card-hover {
    transition: transform 0.3s ease, box-shadow 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);
}

/* Section styling */
.section-padding {
    @apply py-20;
}

.section-title {
    @apply text-3xl md:text-4xl font-bold text-center mb-4 text-gray-900;
}

.section-subtitle {
    @apply text-xl text-center mb-12 text-gray-600 max-w-3xl mx-auto;
}

/* Animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Counter animation */
.counter {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Project card styling */
.project-card img {
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

/* Input focus effect */
.input-focus:focus {
    @apply ring-2 ring-blue-500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .section-padding {
        @apply py-12;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    @apply bg-gray-100;
}

::-webkit-scrollbar-thumb {
    @apply bg-gradient-to-b from-blue-500 to-emerald-500 rounded-full;
}

::-webkit-scrollbar-thumb:hover {
    @apply bg-gradient-to-b from-blue-600 to-emerald-600;
}