| |
| @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); |
|
|
| body { |
| font-family: 'Poppins', sans-serif; |
| line-height: 1.6; |
| } |
|
|
| |
| @keyframes fadeIn { |
| from { opacity: 0; transform: translateY(20px); } |
| to { opacity: 1; transform: translateY(0); } |
| } |
|
|
| .animate-fade-in { |
| animation: fadeIn 0.8s ease-out forwards; |
| } |
|
|
| |
| .hero-overlay { |
| background: linear-gradient(135deg, rgba(0, 35, 102, 0.8) 0%, rgba(212, 175, 55, 0.2) 100%); |
| } |
|
|
| |
| .btn-primary { |
| background-color: #002366; |
| color: white; |
| transition: all 0.3s ease; |
| } |
|
|
| .btn-primary:hover { |
| background-color: #001a4d; |
| transform: translateY(-2px); |
| } |
|
|
| .btn-secondary { |
| background-color: #D4AF37; |
| color: #002366; |
| transition: all 0.3s ease; |
| } |
|
|
| .btn-secondary:hover { |
| background-color: #c19d30; |
| transform: translateY(-2px); |
| } |
|
|
| |
| .pricing-card:hover { |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); |
| transform: translateY(-5px); |
| } |
|
|
| |
| .form-input:focus { |
| border-color: #D4AF37; |
| box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2); |
| } |
|
|
| |
| @media (max-width: 768px) { |
| .hero-title { |
| font-size: 2.5rem; |
| } |
| .hero-subtitle { |
| font-size: 1.25rem; |
| } |
| } |