/* Base Styles */
:root {
    --primary-color: #013662;
    --secondary-color: #F6B100;
    --accent-color: #02539b;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f4f6fa;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: 'Fira Sans Georgian', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: min(100%, 1980px);
    margin: 0 auto;
    overflow-x: hidden;
    padding-top: 106px;
}

/* Header Styles */
header {
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* Mobile menu styles */
.header_nav {
  transition: all 0.3s ease;
}

.logo {
    width: 70px;
    height: 70px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}
.profile_btn{
    display: none;
}
.header_left_side {
    display: flex;
    column-gap: 40px;
    align-items: center;
}

.header_ul {
    display: flex;
    column-gap: 25px;
    align-items: center;
    list-style: none;
}

.header_list {
    color: var(--light-text);
    font-size: 16px;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    padding: 5px 0;
    transition: var(--transition);
}
.under-construction {
  color: #9c9c9c;
}

.under-construction-icon {
    color: #F6B100;
    animation: hammer-animation 2s infinite;
    margin-right: 5px;
}

@keyframes hammer-animation {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
}

.header_list.active {
    font-weight: 600;
}

.header_list::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.header_list:hover::after,
.header_list.active::after {
    width: 100%;
}

.header_list:hover {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 24px;
    cursor: pointer;
}

.auth-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.signup {
    background: var(--light-text);
    color: var(--primary-color);
    border-color: var(--light-text);
}

.signup:hover {
    background: var(--accent-color);
    color: var(--light-text);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.signin {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.signin:hover {
    background: #e5a800;
    border-color: #e5a800;
    transform: translateY(-2px);
}
.profile_btn{
    display: block;
    font-size: 30px;
    color: var(--light-text);
}


.profile_btn {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.profile_btn:hover {
  transform: scale(1.1);
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 20px;
    background: var(--primary-color);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;

}

.profile-dropdown.active {
  display: flex;
}

/* Hero Section */
.test_lable{
    background: linear-gradient(rgba(1, 54, 98, 0.8), rgba(1, 54, 98, 0.9)), url('./images/hero-banner.jpg') no-repeat center center/cover;
    margin: auto;
    color: var(--light-text);
    text-align: center;
    padding: 30px 20px 30px;
}
.hero {
    background: linear-gradient(rgba(1, 54, 98, 0.9), rgba(1, 54, 98, 0.95)), 
                url('../images/contact-bg.jpg') no-repeat center center/cover;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--light-text);
    text-align: center;
    padding: 25px 20px 125px;
    position: relative;
}
.hero-test-mode{
  font-size: 18px;
  margin-block: 10px 30px;
  margin-bottom: 95px;
}
.fa-exclamation-triangle {
    color: #e5a800;
}
.hero-content {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size:48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-buttons .btn {
    padding: 14px 28px;
    font-size: 16px;
    min-width: 220px;
    justify-content: center;
}
/* commercials */
.ad-carousel {
  width: 100%;
  max-width: 1400px;
  margin-top: 100px;
  overflow: hidden;
  position: relative;
  margin: auto;
  padding: 10px 0;
}



.ad-slide {
  min-width: 100%;
  flex-shrink: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 7px solid #e5a800;
  cursor: pointer;
  height: 130px;
}
.ad_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.ad{
    color: #e5a800;
    font-size: 50px;
}
.ad_slide_active{
  border: none;
}

.ad-track {
  display: flex;
  animation: scroll 7.5s ease-out infinite;
  animation-delay: 7.5s;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  28.5% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.ad-track:hover {
  animation-play-state: paused;
}

/* .hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light-text);
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
} */

/* Section Styles */
.section {
    padding: 40px 40px;
    background-color: var(--light-bg);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card Styles */
.card {
    background: var(--light-text);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card-content {
    padding: 20px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.card-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-btn {
    width: 100%;
    margin-top: 15px;
    justify-content: center;
}
.card-btn:hover{
  background-color: var(--primary-color);
  color: var(--light-bg);
}

/* Achievements Section */
.achievements {
    background-color: var(--light-text);
}

.achievement-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
}

.achievement-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.achievement-badge.gold {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    color: #7a6400;
}

.achievement-badge.silver {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: #555;
}

.achievement-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--light-bg);
    margin-bottom: 20px;
}

.achievement-content {
    flex: 1;
}

.achievement-quote {
    font-style: italic;
    margin-top: 15px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 8px;
    position: relative;
}

.achievement-quote::before {
    content: '"';
    font-size: 40px;
    color: var(--secondary-color);
    position: absolute;
    top: -10px;
    left: 5px;
    line-height: 1;
}

/* How It Works Section */
.how-it-works {
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 30px 20px;
    background: var(--light-text);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step p {
    font-size: 14px;
    color: #666;
}

.step-arrow {
    color: var(--primary-color);
    font-size: 24px;
    opacity: 0.7;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
    padding: 60px 40px;
    background: var(--primary-color);
    color: var(--light-text);
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--light-text);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.newsletter-text {
    margin-bottom: 25px;
    font-size: 18px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    padding: 12px 20px;
    width: 100%;
    max-width: 350px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
}

.newsletter-btn {
    padding: 12px 30px;
    background: var(--secondary-color);
    border: none;
    border-radius: 30px;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: #e5a800;
    transform: translateY(-2px);
}

.form-agreement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    margin-top: 10px;
}

.form-agreement input {
    width: 16px;
    height: 16px;
}

.back-to-top{
    cursor: pointer;
    transition: opacity 5s;
}
html{
    scroll-behavior: smooth;
}
/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 60px 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.footer-about {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--light-text);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;
    padding: 4px;
}

.footer-social a i {
    font-size: 16px;
    line-height: 1;
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
        
}


/* Vertical Timeline Styles */
.activity-timeline {
    margin: 40px auto;
    max-width: 800px;
}

.timeline-container {
    position: relative;
    padding-left: 30px;
    margin-top: 20px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 11px;
    width: 2px;
    background: var(--primary-color);
    opacity: 0.2;
}

.timeline-item {
    position: relative;
    padding-bottom: 25px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid white;
    z-index: 1;
}

.timeline-content {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.timeline-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.timeline-user {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 8px;
}

.timeline-time {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
}

.timeline-time i {
    margin-right: 5px;
    font-size: 0.8rem;
}

.timeline-text {
    margin-bottom: 10px;
    line-height: 1.5;
}

.timeline-icon {
    color: var(--secondary-color);
    margin-right: 8px;
}

.timeline-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.load-more {
    text-align: center;
    margin-top: 30px;
}

.load-more-btn {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 10px 25px;
}

.load-more-btn:hover {
    background: #e0e0e0;
}
/* Enhanced Action Buttons */
.timeline-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.action-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: rgba(0, 0, 0, 0.03);
    color: #555;
}

.action-btn:hover {
    background: rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.action-btn i {
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.action-btn .count {
    min-width: 16px;
    text-align: center;
}

/* Like Button Specific Styles */
.like-btn {
    color: #555;
}

.like-btn:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.08);
}

.like-btn.liked {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.15);
}

.like-btn.liked i {
    animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Comment Button Specific Styles */
.comment-btn {
    color: #555;
}

.comment-btn:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.08);
}

.comment-btn.active {
    color: #3498db;
    background: rgba(52, 152, 219, 0.15);
}

.comment-btn.active i {
    transform: rotate(10deg);
}

/* Ripple Effect */
.action-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.like-btn:active::after {
    animation: ripple 0.6s ease-out;
}

.comment-btn:active::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Button Transitions */
.action-btn i {
    will-change: transform;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .action-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .action-btn i {
        font-size: 0.8rem;
    }
}

/* Dashboard Styles */
.dashboard-section {
  padding: 40px 20px;
  background-color: var(--light-bg);
}

.dashboard-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.dashboard-card {
  background: var(--light-text);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-header h3 {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
}

.view-all {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.view-all:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Welcome Card */
.welcome-card {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--light-text);
  position: relative;
  overflow: hidden;
}

.welcome-content h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.welcome-message {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 25px;
  max-width: 600px;
}

.user-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  display: block;
}

.welcome-image {
  margin-top: 30px;
  text-align: center;
}

.welcome-image img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
}

/* Events Card */
.events-card {
  grid-column: span 2;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.event-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 8px;
  background: var(--light-bg);
  transition: var(--transition);
  cursor: pointer;
}

.event-item:hover {
  background: rgba(1, 54, 98, 0.05);
}

.event-date {
  min-width: 60px;
  text-align: center;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  border-radius: 6px;
  margin-right: 15px;
}

.event-date .day {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.event-info h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1rem;
}

.event-info p {
  font-size: 0.9rem;
  color: var(--gray-color);
}

.event-actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.event-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.event-btn:hover {
  color: var(--accent-color);
}

/* Progress Card */
.progress-card {
  grid-column: span 2;
}

.progress-tracker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.progress-category {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-weight: 500;
}

.category-header i {
  font-size: 1.2rem;
}

.progress-bar {
  height: 10px;
  background: #eee;
  border-radius: 5px;
  overflow: hidden;
  flex-grow: 1;
}

.progress-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 1s ease;
}

.math-progress {
  background: #FF6B6B;
}

.physics-progress {
  background: #4ECDC4;
}

.coding-progress {
  background: #45A7E6;
}

.debate-progress {
  background: #A37AFC;
}

.progress-percent {
  font-size: 0.9rem;
  color: var(--gray-color);
  text-align: right;
}

/* Certificates Card */
.certificates-card {
  grid-column: span 1;
}

.certificates-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.certificate-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 8px;
  background: var(--light-bg);
  transition: var(--transition);
  cursor: pointer;
}

.certificate-item:hover {
  background: rgba(1, 54, 98, 0.05);
}

.certificate-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.certificate-badge.gold {
  background: var(--gold-color);
  color: #7a6400;
}

.certificate-badge.silver {
  background: var(--silver-color);
  color: #555;
}

.certificate-info {
  flex-grow: 1;
}

.certificate-info h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1rem;
}

.certificate-date {
  font-size: 0.85rem;
  color: var(--gray-color);
}

.view-certificate {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.view-certificate:hover {
  color: var(--accent-color);
  transform: scale(1.1);
}

/* Recommendations Card */
.recommendations-card {
  grid-column: span 1;
}

.recommendations-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recommendation-item {
  display: flex;
  gap: 15px;
}

.recommendation-icon {
  width: 50px;
  height: 50px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.recommendation-content {
  flex-grow: 1;
}

.recommendation-content h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 1rem;
}

.recommendation-content p {
  font-size: 0.9rem;
  color: var(--gray-color);
  margin-bottom: 10px;
}

.learn-more-btn {
  padding: 6px 12px;
  font-size: 0.85rem;
  background: var(--secondary-color);
  color: var(--primary-color);
  border: none;
}

.learn-more-btn:hover {
  background: #e5a800;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .dashboard-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .welcome-card,
  .events-card,
  .progress-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .dashboard-container {
    grid-template-columns: 1fr;
  }
  
  .welcome-card {
    flex-direction: column;
    text-align: center;
  }
  
  .user-stats {
    grid-template-columns: 1fr;
  }
  
  .welcome-image {
    margin-top: 20px;
  }
  
  .event-item {
    flex-direction: column;
    text-align: center;
  }
  
  .event-date {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .event-actions {
    margin-left: 0;
    margin-top: 10px;
  }
}


/* Combined Dashboard-Timeline Section */
.dashboard-timeline-section {
  padding: 2rem 0;
  background-color: #f9f9f9;
}

.dashboard-timeline-container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.dashboard-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-column {
  flex: 2;
}

/* Compact Dashboard Cards */
.dashboard-card.compact {
  padding: 1.2rem;
}

.dashboard-card.compact .card-header {
  margin-bottom: 0.8rem;
}

.dashboard-card.compact .card-header h3 {
  font-size: 1rem;
}

.welcome-card.compact h2 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.user-stats.compact {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.user-stats.compact .stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: #f0f0f0;
  border-radius: 8px;
}

.user-stats.compact .stat-item i {
  font-size: 1rem;
  color: #555;
}

.user-stats.compact .stat-number {
  font-size: 0.9rem;
  font-weight: 600;
}

.user-stats.compact .stat-label {
  display: none;
}

.events-list.compact {
  max-height: 200px;
  overflow-y: auto;
}

.progress-tracker.compact .progress-category {
  margin-bottom: 0.8rem;
}

.progress-tracker.compact .category-header {
  margin-bottom: 0.3rem;
}

.progress-tracker.compact .progress-bar {
  height: 6px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .dashboard-timeline-container {
    flex-direction: column;
  }
  
  .dashboard-column {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .dashboard-card {
    flex: 1 1 45%;
    min-width: 250px;
  }
}

@media (max-width: 600px) {
  .dashboard-column {
    flex-direction: column;
  } 
  
  .dashboard-card {
    flex: 1 1 100%;
  }
}

.feature-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  transition: right 0.5s ease;
}

.feature-notification.hidden {
  right: -400px; /* Moves it off screen */
}

.notification-bubble {
  background: linear-gradient(135deg, #4a6bff, #6a11cb);
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  max-width: 280px;
  position: relative;
  border-left: 4px solid #ffcc00;
}

.notification-bubble p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.close-notification {
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
}
/* Gentle pulse effect */
.notification-bubble {
  animation: pulse 5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}


/* Auth Pages Styles */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 106px);
    padding: 40px 20px;
    background-color: var(--light-bg);
}

.auth-section {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}

.auth-card {
    background: var(--light-text);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    padding: 40px;
    width: 100%;
    max-width: 500px;
    transition: var(--transition);
}

.auth-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 10px;
}

.auth-header p {
    color: #666;
    font-size: 16px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.email-input{
  display: flex;
  flex-direction: row;
}
.form-group label {
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(1, 54, 98, 0.2);
}

.password-strength {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 5px;
}

.strength-bar {
    height: 4px;
    flex: 1;
    background: #eee;
    border-radius: 2px;
    transition: var(--transition);
}

.strength-text {
    font-size: 12px;
    color: #666;
    margin-left: 5px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
}

.radio-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 50%;
    transition: var(--transition);
}

.radio-option:hover .radio-checkmark {
    background-color: #ccc;
}

.radio-option input:checked ~ .radio-checkmark {
    background-color: var(--primary-color);
}

.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-option input:checked ~ .radio-checkmark:after {
    display: block;
}

.radio-option .radio-checkmark:after {
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 14px;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.auth-footer p {
    color: #666;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.social-login {
    margin-top: 30px;
    text-align: center;
}

.social-login p {
    color: #666;
    margin-bottom: 15px;
    position: relative;
}

.social-login p::before,
.social-login p::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #ddd;
}

.social-login p::before {
    left: 0;
}

.social-login p::after {
    right: 0;
}

.social-icons {
    display: flex;
    /* justify-content: center; */
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: var(--transition);
}

.social-btn.facebook {
    background: #3b5998;
}

.social-btn.google {
    background: #db4437;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.forgot-password {
    text-align: right;
    margin-top: 5px;
}

.forgot-password a {
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.validation-message {
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Password strength indicators */
.password-weak .strength-bar:nth-child(1) {
    background: #ff6b6b;
}

.password-medium .strength-bar:nth-child(-n+2) {
    background: #ffb347;
}

.password-strong .strength-bar {
    background: #4CAF50;
}

.password-weak .strength-text {
    color: #ff6b6b;
}

.password-medium .strength-text {
    color: #ffb347;
}

.password-strong .strength-text {
    color: #4CAF50;
}

.terms-link{
    color: var(--primary-color);
    text-decoration: underline !important;
    font-weight: 500;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .auth-card {
        padding: 30px 20px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}

/* Add to your style.css */
.auth-container {
    background-color: #f8f9fa;
    background-image: radial-gradient(
        circle at 1px 1px,
        rgba(1, 54, 98, 0.3) 1.5px,
        transparent 1px
    );
    background-size: 20px 20px;
    position: relative;
    overflow: hidden;
}
