/* style.css */

/* Reset और Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mangal', 'Priyavada', 'Noto Sans Devanagari', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header और Navigation */
header {
    background-color: rgba(220, 20, 60, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background-color: rgba(220, 20, 60, 0.98);
    padding: 5px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.moon-sun {
    width: 40px;
    height: 40px;
    background: linear-gradient(to right, #fff 50%, #003893 50%);
    border-radius: 50%;
    position: relative;
}

.moon-sun:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 15px 0 0 0 #003893;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
    border-radius: 4px;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-links a.active {
    background-color: rgba(255, 255, 255, 0.3);
}

.hamburger {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
}

/* Hero Section with Parallax */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 56, 147, 0.7), rgba(220, 20, 60, 0.7)), 
                url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    color: #FFD700;
}

.tagline-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tagline {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.tagline.nepal-first {
    background-color: rgba(220, 20, 60, 0.8);
}

.tagline.rastra-first {
    background-color: rgba(0, 56, 147, 0.8);
}

.tagline.darshan {
    background-color: rgba(255, 215, 0, 0.8);
    color: #333;
}

.cta-button {
    display: inline-block;
    background-color: #dc143c;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s;
    border: 2px solid #FFD700;
}

.cta-button:hover {
    background-color: #FFD700;
    color: #dc143c;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #dc143c;
    position: relative;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #003893;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: justify;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features-section {
    background-color: #f0f8ff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border-top: 5px solid #003893;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: #dc143c;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #003893;
}

/* Objectives Section */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #dc143c;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    width: 50%;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 40px;
    padding-right: 0;
}

.timeline-dot {
    position: absolute;
    right: -12px;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: #003893;
    border-radius: 50%;
    border: 4px solid #dc143c;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
    right: auto;
}

.timeline-content {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #003893;
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 5px solid #dc143c;
}

.timeline-content h3 {
    color: #dc143c;
    margin-bottom: 10px;
}

/* Activities Section */
.activities-section {
    background-color: #f9f9f9;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.activity-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.activity-card:hover {
    transform: translateY(-10px);
}

.activity-icon {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
}

.activity-1 .activity-icon { background-color: #dc143c; }
.activity-2 .activity-icon { background-color: #003893; }
.activity-3 .activity-icon { background-color: #FFD700; color: #333; }
.activity-4 .activity-icon { background-color: #228B22; }
.activity-5 .activity-icon { background-color: #8A2BE2; }
.activity-6 .activity-icon { background-color: #00BFFF; }
.activity-7 .activity-icon { background-color: #FF6347; }
.activity-8 .activity-icon { background-color: #dc143c; }
.activity-9 .activity-icon { background-color: #003893; }
.activity-10 .activity-icon { background-color: #FFD700; color: #333; }

.activity-content {
    padding: 20px;
}

.activity-content h3 {
    color: #003893;
    margin-bottom: 10px;
}

/* Membership Section */
.membership-section {
    text-align: center;
    background: linear-gradient(to right, #dc143c, #003893);
    color: white;
}

.membership-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.membership-btn {
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    min-width: 250px;
}

.join-btn {
    background-color: white;
    color: #dc143c;
    border: 3px solid #FFD700;
}

.login-btn {
    background-color: transparent;
    color: white;
    border: 3px solid white;
}

.join-btn:hover {
    background-color: #FFD700;
    color: #003893;
    transform: scale(1.05);
}

.login-btn:hover {
    background-color: white;
    color: #dc143c;
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #003893;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #FFD700;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #dc143c;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #dc143c;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #ddd;
}

.nationality-message {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
    margin-top: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: rgba(220, 20, 60, 0.98);
        padding: 20px 0;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .tagline-container {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline:before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 50px;
    }
    
    .timeline-dot {
        left: 8px !important;
        right: auto !important;
    }
    
    .membership-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .membership-btn {
        min-width: 200px;
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add to style.css */

/* Hero description */
.hero-description {
    font-size: 1.4rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Membership section specific styles */
.membership-title {
    color: white !important;
}

.membership-description {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

/* Newsletter section */
.newsletter-section {
    background-color: #f0f8ff;
    text-align: center;
}

.newsletter-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 10px;
}

#newsletter-email {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: border-color 0.3s;
}

#newsletter-email:focus {
    border-color: #003893;
    outline: none;
}

.newsletter-btn {
    background-color: #dc143c;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #003893;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.success-message {
    color: #228B22;
    font-size: 1.2rem;
    padding: 20px;
    background-color: rgba(34, 139, 34, 0.1);
    border-radius: 10px;
}

/* About image */
.about-img {
    transition: transform 0.5s;
}

.about-img:hover {
    transform: scale(1.05);
}

/* Responsive form */
@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
    }
    
    #newsletter-email, .newsletter-btn {
        width: 100%;
    }
}

/* style.css - अन्तमा यो CSS थप्नुहोस् */

/* =========================================
   LOGIN PAGE STYLES
   ========================================= */

/* Login Page Body */
.login-page-body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    min-height: 100vh;
}

.login-main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding: 40px 20px;
}

/* Login Container */
.login-container {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Login Header */
.login-header {
    background: linear-gradient(to right, #dc143c, #003893);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.login-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,100 L100,0 L100,100 Z" fill="%23FFD700" opacity="0.1"/></svg>');
}

.login-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.login-header p {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

