/* Custom animations and additional styles */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out;
}

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

/* Custom focus styles */
input:focus,
textarea:focus,
button:focus {
    outline: none;
}

.GFG {
	border-radius: 8%;
	color: #111;
	background: White  ;
	box-shadow: 0 0 20px White  ;
}

.header-scrolled .GFG{
	background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}


/* Header scroll effect */
.header-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-scrolled .logo-icon {
    color: #1d4ed8;
}

.header-scrolled .logo-text {
    color: #111827;
}

.header-scrolled .nav-link {
    color: #374151;
}

.header-scrolled .nav-link:hover {
    color: #1d4ed8;
}

.header-scrolled .mobile-menu-btn {
    color: #374151;
}

/* Mobile menu animation */
.mobile-menu {
    transition: all 0.3s ease-in-out;
    transform-origin: top;
}

.mobile-menu.hidden {
    transform: scaleY(0);
    opacity: 0;
}

.mobile-menu:not(.hidden) {
    transform: scaleY(1);
    opacity: 1;
}

/* Form validation styles */
.form-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-success {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Loading animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive improvements */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .bg-gradient-to-br,
    .bg-gradient-to-r {
        background: #f3f4f6 !important;
        color: black !important;
    }
}