  /* ===== Event Section Styles ===== */
    #events {
      padding: 40px 0;
    }
    #blogs {
      padding: 40px 0;
    }

     
   /* Compact Objectives and Highlights Section */
    .objectives-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin: 20px 0;
    }
    
    .objectives-container, .highlights-container {
      flex: 1;
      min-width: 200px;
      background: #fff;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      border-left: 3px solid #a43141;
    }
    
    .objectives-container h3, .highlights-container h3 {
      color: #a43141;
      margin-bottom: 12px;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .objectives-container h3 i, .highlights-container h3 i {
      font-size: 1rem;
    }
    
    .objectives-list, .highlights-list {
      padding-left: 15px;
    }
    
    .objectives-list li, .highlights-list li {
      margin-bottom: 8px;
      line-height: 1.4;
      font-size: 0.9rem;
      position: relative;
    }
    
    .objectives-list li:before, .highlights-list li:before {
      content: "•";
      color: #a43141;
      font-weight: bold;
      position: absolute;
      left: -12px;
    }
    
     /* Compact Outcomes Section */
    .outcomes-container {
      background: #f8f9fa;
      border-radius: 8px;
      padding: 20px;
      margin: 20px 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      border-top: 3px solid #a43141;
    }
    
    .outcomes-container h3 {
      color: #a43141;
      margin-bottom: 12px;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .outcomes-container h3 i {
      font-size: 1rem;
    }
    
    .outcomes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
    }
    
    .outcome-card {
      background: #fff;
      border-radius: 6px;
      padding: 15px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }
    
    .outcome-card h4 {
      color: #a43141;
      margin-bottom: 8px;
      font-size: 1rem;
    }
    
    .outcome-card p {
      color: #444;
      line-height: 1.4;
      font-size: 0.9rem;
    }

    
     /* Compact Event Cards */
    .event-card {
      display: flex;
      gap: 15px;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 25px;
      margin-bottom: 20px;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .event-img img {
      width: 80px;
      height: 80px;
      border-radius: 6px;
      object-fit: cover;
      border: 2px solid #f1f1f1;
    }

    .event-details {
      flex: 1;
      text-align: left;
    }

    .event-details h4 {
      font-size: 20px;
      margin-bottom: 8px;
      color: var(--heading-color);
      font-weight:600;
    }

    .ed-title{
      color: #181516ff;
    }

    .event-details p {
      margin: 4px 0;
      font-size: 14px;
      line-height: 1.5;
      color: #444;
    }

    .event-details strong {
      color: #000;
    }

    
    /* Tabs */
    .schedule-tabs a {
      margin: 0 10px;
      padding: 8px 18px;
      border-radius: 6px;
      border: 1px solid #a43141;
      color: #a43141;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .schedule-tabs a.active,
    .schedule-tabs a:hover {
      background: #a43141;
      color: #fff;
    }
    .event-photos {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .event-photos img {
      width: 250px;
      height: 250px;
      object-fit: cover;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }


      /* ===== Blog Section Styles ===== */
    #blogs {
      padding: 40px 0;
    }

    .blog-section {
      display: none;
    }

    .blog-section.active {
      display: block;
    }

    
    /* ===== Blog Section Styles ===== */
    .blog-card {
      display: flex;
      gap: 15px;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 25px;
      margin-bottom: 20px;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .blog-img img {
      width: 80px;
      height: 80px;
      border-radius: 6px;
      object-fit: cover;
      border: 2px solid #f1f1f1;
    }

    .blog-details {
      flex: 1;
      text-align: left;
    }

    .blog-details h4 {
      font-size: 18px;
      margin-bottom: 8px;
      color: #a43141;
    }

    .blog-details p {
      margin: 4px 0;
      font-size: 14px;
      line-height: 1.5;
      color: #444;
    }

    .blog-photos {
      margin-top: 15px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .blog-photos img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    /* ===== Mobile Responsive ===== */
    @media (max-width: 768px) {
      .event-card, .blog-card {
        flex-direction: column;
        padding: 20px;
        text-align: center;
      }

      .event-img img, .blog-img img {
        width: 100%;
        max-width: 150px;
        height: auto;
        margin: 0 auto 10px;
      }

      .event-details, .blog-details {
        text-align: center;
      }

      .event-details h4, .blog-details h4 {
        font-size: 16px;
      }

      .event-details p, .blog-details p {
        font-size: 13px;
        text-align: left;
      }

      .event-photos, .blog-photos {
        justify-content: center;
      }

      .event-photos img, .blog-photos img {
        width: 45%;
        max-width: 120px;
        height: auto;
      }
    }

     /* Blog Category Tabs */
    .blog-category-tabs {
      text-align: center;
      margin-bottom: 30px;
    }

    .blog-category-tabs a {
      margin: 0 10px;
      padding: 8px 18px;
      border-radius: 6px;
      border: 1px solid #a43141;
      color: #a43141;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .blog-category-tabs a.active,
    .blog-category-tabs a:hover {
      background: #a43141;
      color: #fff;
    }

    .blog-photos {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .blog-photos img {
      width: 250px;
      height: 250px;
      object-fit: cover;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    /* Section Toggle Styles */
    .section-toggle {
      display: flex;
      justify-content: center;
      margin-top: 30px;
      margin-bottom: 30px;
    }

    .section-toggle-btn {
      padding: 12px 30px;
      margin: 0 10px;
      background-color: #f8f9fa;
      border: 2px solid #a43141;
      color: #a43141;
      border-radius: 30px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .section-toggle-btn.active {
      background-color: #a43141;
      color: white;
    }

    .section-toggle-btn:hover {
      background-color: #a43141;
      color: white;
    }

    .events-section {
      display: block;
    }

    .events-section.hidden {
      display: none;
    }

    .blog-categories {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 15px;
    }

    .blog-category {
      background-color: #e9ecef;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
      color: #495057;
    }

    /* ===== Mobile Responsive ===== */
    @media (max-width: 768px) {
      .objectives-highlights {
        flex-direction: column;
      }
      
      .objectives-container, .highlights-container {
        width: 100%;
      }
      
      .outcomes-grid {
        grid-template-columns: 1fr;
      }
      
      .event-card {
        flex-direction: column;
        padding: 30px;
        text-align: center;
      }

      .event-img img {
        width: 100%;
        max-width: 200px;
        height: auto;
        margin: 0 auto 15px;
      }

      .event-details {
        text-align: center;
      }

      .event-details h4 {
        font-size: 18px;
      }

      .event-details p {
        font-size: 14px;
        text-align: left;
      }

      .blog-card {
        flex-direction: column;
        padding: 30px;
        text-align: center;
      }

      .blog-img img {
        width: 100%;
        max-width: 200px;
        height: auto;
        margin: 0 auto 15px;
      }

      .blog-details {
        text-align: center;
      }

      .blog-details h4 {
        font-size: 18px;
      }

      .blog-details p {
        font-size: 14px;
        text-align: left;
      }

      .schedule-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
      }

      .schedule-tabs a {
        margin: 5px 0;
        padding: 6px 12px;
        font-size: 14px;
      }

      .blog-category-tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
      }

      .blog-category-tabs a {
        margin: 5px 0;
        padding: 6px 12px;
        font-size: 14px;
      }

      .event-photos {
        justify-content: center;
      }

      .event-photos img {
        width: 45%;
        max-width: 180px;
        height: auto;
      }

      .blog-photos {
        justify-content: center;
      }

      .blog-photos img {
        width: 45%;
        max-width: 180px;
        height: auto;
      }

      .section-toggle {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }

      .section-toggle-btn {
        width: 200px;
        margin: 5px 0;
      }
    }