  /* Base Styles */
        :root {
            --primary: #8a2be2;
            --secondary: #ff69b4;
            --accent: #4169e1;
            --light: #f8f9fa;
            --dark: #343a40;
            --success: #28a745;
            --warning: #ffc107;
            --info: #17a2b8;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
  .site-header{
    background:#fff;
    border-bottom:1px solid #ddd;
    padding:12px 0;
  }
  .container1{
    width:95%;
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  /* Logo + Title */
  .brand{
    display:flex;
    align-items:center;
    text-decoration:none;
  }
  .logo{
    height:50px;
    margin-right:10px;
  }
  .brand-title{
    font-size:1.3rem;
    font-weight:700;
    color:#a80000;
  }

  /* Navigation */
  .navbar .menu{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    align-items:center;
  }
  .navbar .menu > li{
    position:relative;
    margin:0 12px;
  }
  .navbar .menu > li > a{
    text-decoration:none;
    font-weight:600;
    color:#333;
    padding:8px 10px;
  }
  .navbar .menu > li > a:hover{
    color:#a80000;
  }
/*.nav-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle; 
  position: relative;
  top: -2px;              
}
*/

  /* Dropdown */
  .submenu{
    list-style:none;
    margin:0;
    padding:8px 0;
    background:#fff;
    border:1px solid #ddd;
    border-radius:6px;
    position:absolute;
    top:100%;
    left:0;
    min-width:180px;
    display:none;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .submenu li a{
    display:flex;
    padding:10px 15px;
    align-items: center;
    text-decoration:none;
    color:#333;
    font-size:0.95rem;
    gap: 8px;
  }
  .submenu li a:hover{
    background:#f4f4f4;
    color:#a80000;
  }

  .submenu li a .icon {
  width: 18px;
  height: 18px;
}

/* Dropdown Fix */
.dropdown:hover .submenu,
.dropdown:focus-within .submenu {
  display: block;   /* stays open if hovered or focused */
}

  /* Donate Button */
.donate {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.donate h2 {
  color: #a80000;
  margin-bottom: 15px;
}

.donate p {
  margin-bottom: 25px;
  color: #444;
}

.donate-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  background: #a80000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
  .donate-btn:hover{
    background:#ff7a00;
  }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(138, 43, 226, 0.85), rgba(65, 105, 225, 0.85)), url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 4rem 1rem;
            margin-bottom: 2rem;
        }
        
        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #ff4da6;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Section Styles */
        section {
            padding: 3rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 2.5rem;
            color: var(--primary);
        }
        
        .section-title h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Progress Overview */
        .progress-overview {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        
        .progress-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .progress-card:hover {
            transform: translateY(-5px);
        }
        
        .progress-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 1rem;
        }
        
        .progress-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .progress-label {
            color: #666;
            font-weight: 500;
        }
        
        /* Chart Section */
        .charts-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 2rem;
        }
        
        .chart-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .chart-title {
            font-size: 1.3rem;
            color: var(--primary);
            font-weight: 600;
        }
        
        .chart-actions {
            display: flex;
            gap: 0.5rem;
        }
        
        .chart-action-btn {
            background: #f0f0f0;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .chart-action-btn:hover {
            background: #e0e0e0;
        }
        
        .chart-wrapper {
            position: relative;
            height: 300px;
            width: 100%;
        }
        
        /* Milestones */
        .milestones-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .milestones-timeline::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary);
        }
        
        .milestone {
            display: flex;
            margin-bottom: 2.5rem;
            position: relative;
        }
        
        .milestone-date {
            width: 60px;
            text-align: center;
            font-weight: 600;
            color: var(--primary);
            margin-right: 1rem;
        }
        
        .milestone-marker {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary);
            position: absolute;
            left: 25px;
            top: 5px;
        }
        
        .milestone-content {
            flex: 1;
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .milestone-content h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        /* Impact Stories */
        .stories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .story-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .story-image {
            height: 200px;
            background-color: var(--primary);
            background-size: cover;
            background-position: center;
        }
        
        .story-content {
            padding: 1.5rem;
        }
        
        .story-content h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .story-quote {
            font-style: italic;
            color: #666;
            margin-bottom: 1rem;
            border-left: 3px solid var(--secondary);
            padding-left: 1rem;
        }
        
        .story-person {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .person-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }
        
        .person-info h4 {
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }
        
        .person-info p {
            font-size: 0.9rem;
            color: #666;
        }
        
        /* Goals Section */
        .goals-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .goal-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .goal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .goal-title {
            font-size: 1.2rem;
            color: var(--primary);
            font-weight: 600;
        }
        
        .goal-progress {
            font-weight: 600;
            color: var(--primary);
        }
        
        .progress-bar {
            height: 10px;
            background: #f0f0f0;
            border-radius: 5px;
            overflow: hidden;
            margin-bottom: 1rem;
        }
        
        .progress-fill {
            height: 100%;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .goal-details {
            color: #666;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-column h3 {
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: background 0.3s;
        }
        
        .social-links a:hover {
            background: var(--secondary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 1rem;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            nav ul li {
                margin: 0.5rem;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .charts-container {
                grid-template-columns: 1fr;
            }
            
            .chart-card {
                padding: 1rem;
            }
            
            .chart-wrapper {
                height: 250px;
            }
        }
        
        @media (max-width: 576px) {
            .progress-overview {
                grid-template-columns: 1fr;
            }
            
            .chart-wrapper {
                height: 200px;
            }
        }