:root {
    --primary-color: #ff5e14;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --bg-light: #f8f9fa;
}

.text-color{
    color: #82a8ee ;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--secondary-color);
    overflow-x: hidden;
}

/* Floating Animation */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

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

/* Pulse Glow */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(255, 94, 20, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 94, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 94, 20, 0); }
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

/* Multi-step Form & Combined Section */
.donation-combined-section {
    background-color: var(--bg-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.feature-box-small {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

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

.feature-box-small i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.feature-box-small h6 {
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0;
}

.amount-card.small-card {
    padding: 15px 10px;
}

.amount-card.small-card span {
    font-size: 1.1rem;
}

.form-step {
    transition: all 0.4s ease;
    max-height: 675px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}

/* Custom scrollbar for form steps */
.form-step::-webkit-scrollbar {
    width: 6px;
}

.form-step::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.form-step::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.form-step::-webkit-scrollbar-thumb:hover {
    background: #e64d00;
}

/* Header Styles */
.navbar {
    padding: 15px 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 50px;
}

.btn-donate {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 94, 20, 0.3);
}

.btn-donate:hover {
    background-color: #e64d00;
    transform: translateY(-2px);
    color: #fff;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2c3e50 0%, #000 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.tagline {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

/* Donation Options */
.donation-options {
    padding: 80px 0;
}

.amount-card {
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    margin-bottom: 20px;
}

.amount-card:hover, .amount-card.active {
    border-color: var(--primary-color);
    background-color: rgba(255, 94, 20, 0.05);
    transform: scale(1.05);
}

.amount-card span {
    font-size: 1.5rem;
    font-weight: 700;
}

.custom-amount-input {
    border-radius: 10px;
    padding: 12px;
    border: 2px solid #eee;
}

.custom-amount-input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Form Styles */
.donor-form-section, .signup-section {
    background: #fff;
    padding: 80px 0;
}

.form-card {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 40px;
    border: none;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.form-control, .form-select {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 94, 20, 0.1);
}

/* Signup Specific */
.signup-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://www.transparenttextures.com/patterns/cubes.png');
}

.form-group-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.form-group-animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.feature-box {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

.payment-type {
    margin: 30px 0;
}

/* Footer */
footer {
    background-color: #212529;
    color: #ccc;
    padding: 60px 0 20px;
}

footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
}

footer a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

footer a:hover {
    color: var(--primary-color);
}

footer li{
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-up {
    animation: fadeInUp 1s ease forwards;
}

.animate-on-scroll {
    opacity: 0;
}

/* Custom Checkbox */
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Login Page Specific */
.login-body {
    min-height: 100vh;
    background: linear-gradient(135deg, #2c3e50 0%, #000 100%);
    overflow-x: hidden;
}

.login-body .navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-body .navbar .nav-link, .login-body .navbar .navbar-brand h3 {
    color: #fff !important;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 450px;
}

.btn-login {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    width: 100%;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-login:hover {
    background-color: #e64d00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 94, 20, 0.3);
    color: #fff;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.logo-text span {
    color: var(--primary-color);
}

.social-login {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.btn-social {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    background: #fff;
    border: 1px solid #ddd;
    transition: all 0.3s;
        text-decoration: none;
}

.btn-social:hover {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(360deg);
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: move-up 10s infinite linear;
}

@keyframes move-up {
    from { transform: translateY(100vh) rotate(0deg); }
    to { transform: translateY(-100px) rotate(360deg); }
}

/* About Page Specific */
.about-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #000 100%);
    color: #fff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.2) 0%, transparent 70%);
    animation: pulse-glow-bg 4s infinite ease-in-out;
    z-index: 0;
}

@keyframes pulse-glow-bg {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
}

.mission-card {
    border: none;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    background: #fff;
    transition: all 0.4s;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 94, 20, 0.15);
}

.mission-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
}

.stat-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border-bottom: 5px solid var(--primary-color);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Contact Page Specific */
.contact-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #000 100%);
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.contact-card {
    border: none;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: #fff;
    transition: all 0.4s;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 94, 20, 0.2);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
}

.btn-send {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    width: 100%;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    height: 512px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Terms & Privacy */
.terms-card, .privacy-card {
    border: none;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    background: #fff;
    margin: 50px 0;
}

.terms-card h2, .privacy-card h2 {
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.terms-card h4, .privacy-card h4 {
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.terms-card p, .terms-card li, .privacy-card p, .privacy-card li {
    color: #666;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}
