{"id":2771,"date":"2025-09-18T10:02:11","date_gmt":"2025-09-18T10:02:11","guid":{"rendered":"https:\/\/set.edu.pk\/?page_id=2771"},"modified":"2025-11-11T05:07:31","modified_gmt":"2025-11-11T05:07:31","slug":"events","status":"publish","type":"page","link":"https:\/\/set.edu.pk\/?page_id=2771","title":{"rendered":"Events"},"content":{"rendered":"\n<style>\n  .events-section {\n    max-width: 1100px;\n    margin: auto;\n    padding: 40px 20px;\n    font-family: Arial, sans-serif;\n  }\n\n  .events-title {\n    text-align: center;\n    font-size: 2rem;\n    margin-bottom: 20px;\n    font-weight: bold;\n  }\n\n  .events-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));\n    gap: 20px;\n  }\n\n  .event-card {\n    background: #fff;\n    border-radius: 12px;\n    box-shadow: 0 4px 10px rgba(0,0,0,0.1);\n    overflow: hidden;\n    transition: transform 0.3s ease;\n    cursor: pointer;\n  }\n\n  .event-card:hover {\n    transform: translateY(-5px);\n  }\n\n  .event-card img,\n  .event-card video {\n    width: 100%;\n    height: auto;\n    display: block;\n  }\n\n  .event-content {\n    padding: 15px;\n  }\n\n  .event-content h3 {\n    margin: 0 0 10px;\n    font-size: 1.2rem;\n    color: #333;\n  }\n\n  .event-content p {\n    font-size: 0.95rem;\n    color: #555;\n    line-height: 1.5;\n  }\n\n  \/* Lightbox overlay *\/\n  .lightbox {\n    display: none;\n    position: fixed;\n    z-index: 9999;\n    top: 0; left: 0;\n    width: 100%; height: 100%;\n    background: rgba(0,0,0,0.9);\n    justify-content: center;\n    align-items: center;\n  }\n\n  .lightbox-content {\n    max-width: 90%;\n    max-height: 90%;\n  }\n\n  .lightbox img,\n  .lightbox video {\n    width: 100%;\n    height: auto;\n    border-radius: 10px;\n  }\n\n  .lightbox-close {\n    position: absolute;\n    top: 20px;\n    right: 30px;\n    font-size: 2rem;\n    color: #fff;\n    cursor: pointer;\n  }\n<\/style>\n\n<div class=\"events-section\">\n  <h2 class=\"events-title\">Our Events<\/h2>\n\n  <div class=\"events-grid\">\n    <!-- Event 1 -->\n    <div class=\"event-card\" onclick=\"openLightbox('img','https:\/\/via.placeholder.com\/1200x700')\">\n      <img decoding=\"async\" src=\"https:\/\/set.edu.pk\/wp-content\/uploads\/2025\/09\/DSC06570-scaled.jpg\" alt=\"Event 1\">\n      <div class=\"event-content\">\n        <h3>Donor Dinner at Defence Club<\/h3>\n        <p>A memorable Donor Dinner was hosted at Defence Club, bringing together our valued supporters and well-wishers. The evening was filled with warmth, gratitude, and meaningful conversations, celebrating the generous contributions that help us continue our mission in education and technology.<\/p>\n      <\/div>\n    <\/div>\n\n    <!-- Event 2 -->\n    <div class=\"event-card\" onclick=\"openLightbox('img','https:\/\/via.placeholder.com\/1200x700\/ff7f7f')\">\n           <img decoding=\"async\" src=\"https:\/\/set.edu.pk\/wp-content\/uploads\/2025\/11\/WhatsApp-Image-2025-11-11-at-9.55.24-AM-1.jpeg\" alt=\"Event 5\">\n      <div class=\"event-content\">\n        <h3>A Project with Akhuwat<\/h3>\n        <p>We are grateful to Akhuwat Foundation for their generous donation, which enabled us to provide essential training to students. Their support allowed us to enhance students\u2019 skills in areas such as [specific areas e.g., technical skills, leadership, etc.], preparing them for future success.\n\nAkhuwat&#8217;s contribution went beyond financial aid\u2014it helped us create meaningful opportunities for personal and professional growth. This collaboration has made a lasting impact on the students, and we deeply appreciate Akhuwat&#8217;s vision and commitment to empowering communities.<\/p>\n      <\/div>\n    <\/div>\n\n\n    <!-- Event 3 -->\n    <div class=\"event-card\" onclick=\"openLightbox('img','https:\/\/via.placeholder.com\/1200x700\/ff7f7f')\">\n           <img decoding=\"async\" src=\"https:\/\/set.edu.pk\/wp-content\/uploads\/2025\/09\/DSC06534-scaled.jpg\" alt=\"Event 5\">\n      <div class=\"event-content\">\n        <h3>Murree Trip<\/h3>\n        <p>We recently had the chance to take a much-needed trip to Murree, and it was truly an unforgettable experience. From the scenic views to the refreshing air, every moment was filled with joy and relaxation. It gave us a perfect opportunity to unwind, recharge, and create lasting memories together.\n\nWe are grateful for the chance to have experienced this beautiful getaway, and we look forward to more such trips that bring us closer as a group and provide the perfect balance of adventure and peace.<\/p>\n      <\/div>\n    <\/div>\n\n    <!-- Event 7 -->\n    <div class=\"event-card\" onclick=\"openLightbox('img','https:\/\/via.placeholder.com\/1200x700\/6495ed')\">\n      <img decoding=\"async\" src=\"https:\/\/set.edu.pk\/wp-content\/uploads\/2025\/11\/WhatsApp-Image-2025-11-11-at-10.05.25-AM.jpeg\" alt=\"Event 7\">\n      <div class=\"event-content\">\n        <h3>Internship Job Fair<\/h3>\n        <p>Companies connected with students for internships and job opportunities in the IT sector.<\/p>\n      <\/div>\n    <\/div>\n\n   \n\n<!-- Lightbox Modal -->\n<div class=\"lightbox\" id=\"lightbox\">\n  <span class=\"lightbox-close\" onclick=\"closeLightbox()\">&times;<\/span>\n  <div class=\"lightbox-content\" id=\"lightbox-content\"><\/div>\n<\/div>\n\n<script>\n  function openLightbox(type, src) {\n    const content = document.getElementById(\"lightbox-content\");\n    content.innerHTML = \"\";\n\n    if(type === \"img\") {\n      const img = document.createElement(\"img\");\n      img.src = src;\n      content.appendChild(img);\n    } else if(type === \"video\") {\n      const video = document.createElement(\"video\");\n      video.src = src;\n      video.controls = true;\n      video.autoplay = true;\n      content.appendChild(video);\n    }\n\n    document.getElementById(\"lightbox\").style.display = \"flex\";\n  }\n\n  function closeLightbox() {\n    document.getElementById(\"lightbox\").style.display = \"none\";\n    document.getElementById(\"lightbox-content\").innerHTML = \"\";\n  }\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>Our Events Donor Dinner at Defence Club A memorable Donor Dinner was hosted at Defence Club, bringing together our valued supporters and well-wishers. The evening was filled with warmth, gratitude, and meaningful conversations, celebrating the generous contributions that help us continue our mission in education and technology. A Project with Akhuwat We are grateful to [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"class_list":["post-2771","page","type-page","status-publish","hentry"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/set.edu.pk\/index.php?rest_route=\/wp\/v2\/pages\/2771","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/set.edu.pk\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/set.edu.pk\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/set.edu.pk\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/set.edu.pk\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2771"}],"version-history":[{"count":20,"href":"https:\/\/set.edu.pk\/index.php?rest_route=\/wp\/v2\/pages\/2771\/revisions"}],"predecessor-version":[{"id":3006,"href":"https:\/\/set.edu.pk\/index.php?rest_route=\/wp\/v2\/pages\/2771\/revisions\/3006"}],"wp:attachment":[{"href":"https:\/\/set.edu.pk\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2771"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}