/*about us style*/

.about_studyplug_section {
  background: white;
  padding: 80px 20px;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  text-align: center;
}

.about_container {
  max-width: 1100px;
  margin: auto;
}

.about_title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #e2e2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.about_block {
  margin-bottom: 40px;
}

.about_icon {
  font-size: 32px;
  color: #10b981;
  margin-bottom: 16px;
}

.about_block h3 {
  font-size: 22px;
  color: #111827;
  margin-bottom: 10px;
}

.about_block p,
.about_block ul {
      font-family:Verdana, Geneva, Tahoma, sans-serif;

  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.about_block ul {
  list-style: none;
  padding: 0;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.about_block ul li {
  margin: 8px 0;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.about_block ul li i {
  color: #3b82f6;
  margin-right: 8px;
}

.about_cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.about_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1f2937;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.about_btn.secondary {
  background: #4b5563;
}

.about_btn:hover {
  background: #2563eb;
}


.tech_support_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.tech_card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 24px;
  text-align: center;
  flex: 1 1 calc(25% - 20px);
  max-width: 260px;
  transition: transform 0.3s ease;
}

.tech_card:hover {
  transform: translateY(-6px);
}

.tech_icon {
  font-size: 32px;
  color: #2563eb;
  margin-bottom: 12px;
}

.tech_card h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1f2937;
}

.tech_card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}
.trust_us_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.trust_card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  padding: 24px;
  text-align: center;
  flex: 1 1 calc(33.33% - 20px);
  max-width: 320px;
  transition: transform 0.3s ease;
}

.trust_card:hover {
  transform: translateY(-6px);
}

.trust_icon {
  font-size: 34px;
  color: #10b981;
  margin-bottom: 12px;
}

.trust_card h4 {
  font-size: 18px;
  color: #111827;
  margin-bottom: 8px;
}

.trust_card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}




.about_cta_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.about_cta_card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.00);
  flex: 1 1 300px;
  max-width: 400px;
  transition: transform 0.3s ease;
}

.about_cta_card:hover {
  transform: translateY(-5px);
}

.cta_icon {
  font-size: 32px;
  color: #1e40af;
  margin-bottom: 12px;
}

.about_cta_card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111827;
}

.about_cta_card p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about_btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #080e22;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.about_btn:hover {
  background-color: #000000;
}

.about_btn.secondary {
  background-color: #10b981;
}

.about_btn.secondary:hover {
  background-color: #059669;
}
.how_it_works {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Verdana', Geneva, Tahoma, sans-serif;
}

.how_title {
  font-size: 28px;
  margin-bottom: 40px;
  color: #1f2937;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
}

.steps li {
  background: #020107;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  padding: 20px;
  flex: 1 1 220px;
  max-width: 240px;
  text-align: center;
  transition: transform 0.3s ease;
}

.steps li:hover {
  transform: translateY(-6px);
}

.step_icon {
  font-size: 32px;
  color: #3b82f6;
  margin-bottom: 12px;
}

.steps h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #616775;
}

.steps p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}





/*founder section*/


.tech-section {
  padding: 50px 10px;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.tech-header {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.tech-header i {
  color: #004080;
  margin-right: 10px;
}

.tech-subheader {
  font-size: 1.3rem;
  margin: 40px 0 20px;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.tech-subheader i {
  color: #006699;
}

.tech-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin: 0 auto;
  max-width: 900px;
  padding: 0 15px;
}

.tech-card {
      background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-size: 15px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
}

.tech-card i {
  display: block;
  font-size: 1.4rem;
  color: #004080;
  margin-bottom: 10px;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}






















.founder-section-block h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
    font-family: 'Verdana', Geneva, Tahoma, sans-serif;

  gap: 10px;
  color: #222;
}

.community-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.community-card {
  background: #03021d;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card-icon {
  font-size: 3rem;
  color: #007BFF;
  margin-bottom: 15px;
}

.community-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #c9c9c9;
    font-family: 'Verdana', Geneva, Tahoma, sans-serif;

}

.community-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
    font-family: 'Verdana', Geneva, Tahoma, sans-serif;

}














    .founder-particles-section {
      position: relative;
      overflow: hidden;
      padding: 80px 20px;
      text-align: center;
      z-index: 1;
            background-color: rgba(255, 255, 255, 0.8);
    }

#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(255, 255, 255, 0.8);
  pointer-events: none; 
}


    .founder-overlay {
      position: relative;
      z-index: 2;
      background-color: rgba(255, 255, 255, 0.8);
      padding: 40px;
      border-radius: 16px;
      max-width: 800px;
      margin: auto;
    }

    .founder-icon {
      font-size: 4rem;
      color: #ffa3a8;
      margin-bottom: 20px;
    }

    .packages_list_title {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .founder-paragraph {
      font-family:Verdana, Geneva, Tahoma, sans-serif;

  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
    }
.about_container{
            background-color: rgba(255, 255, 255, 0.8);

}
.about_studyplug_section{
              background-color: rgba(255, 255, 255, 0.8);

}








/*on services */
.request_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px 20px;
  margin-top: 40px;
}

.request_card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.request_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.request_icon {
  font-size: 2.5rem;
  color: #000b18;
  margin-bottom: 15px;
}

.request_card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #111;
          font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.request_card p {
  font-size: 0.95rem;
  color: #555;
        font-family:Verdana, Geneva, Tahoma, sans-serif;

  margin-bottom: 20px;
}

.request_btn {
  background: #010e1b;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.request_btn:hover {
  background: #001b3a;
}








.collab_details_container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  max-width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px 20px;
  scroll-behavior: smooth;
}

.collab_details_container::-webkit-scrollbar {
  height: 8px;
}
.collab_details_container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.collab_detail_block {
  flex: 0 0 280px;
        font-family:Verdana, Geneva, Tahoma, sans-serif;

  background: #ffffff;
  border-left: 5px solid #0099ff;
  padding: 20px 30px;
  border-radius: 8px;
  color:#555;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  scroll-snap-align: start;
}

.collab_icon {
  font-size: 32px;
  color: #0099ff;
  margin: 10px 0;
}
.collab_controls {
  text-align: center;
  margin-bottom: 20px;
}

.scroll_btn {
  background: #0099ff;
  color: #fff;
  border: none;
  padding: 10px 16px;
  margin: 0 5px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
}
.scroll_btn:hover {
  background: #0077cc;
}



/*request form*/
.request_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .request_form_container {
    background: white;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    animation: fadeIn 0.4s ease;
  }

  .request_form_title {
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
    color: #333;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

  }

  .request_input {
    width: 90%;
    padding: 10px 15px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

  }

  .request_buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

  }

  .request_submit_btn, .request_close_btn {
    flex: 1;
    padding: 10px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  .request_submit_btn {
    background: #000913;
    color: white;
  }

  .request_close_btn {
    background: #999;
    color: white;
  }
.request_label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  color: #333;
}

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }



.request_notification {
  position: fixed;
  top: 20px;
  left: -300px;
  background-color: green;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  z-index: 9999;
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: slideInLeft 4s ease-in-out forwards;
}

.request_notification i {
  font-size: 22px;
  margin-bottom: 6px;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    left: -300px;
  }
  10% {
    opacity: 1;
    left: 20px;
  }
  90% {
    opacity: 1;
    left: 20px;
  }
  100% {
    opacity: 0;
    left: -300px;
  }
}


.track_card_wrapper {
  display: none;
}
.track_table_wrapper{
  display: block;
}
@media (max-width: 768px) {
  .track_table_wrapper {
    display: none;
  }
  .track_card_wrapper {
    display: block;
  }
}
.track_card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  background-color: #000005;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.01);
  font-size: 15px;
  line-height: 1.6;
}

.track_card_icon {
  font-size: 26px;
  text-align: center;
  margin-bottom: 12px;
  color: #2c3e50;
}

.track_card_message {
  color: #555;
  padding: 5px;
      font-family:Verdana, Geneva, Tahoma, sans-serif;

}



/*packages form */
.request_popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
      animation: fadeIn 0.4s ease;

}

.request_popup_box {
  animation: fadeIn 0.4s ease;
  background: #fff;
  padding: 30px;
  max-width: 600px;
  width: 95%;
  max-height: 90vh;         
  overflow-y: auto;       
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.25);
}
.request_popup_box::-webkit-scrollbar {
  width: 6px;
}
.request_popup_box::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}


.request_form label {
  font-weight: bold;
  margin-top: 12px;
  display: block;
  color: #555;
          font-family:Verdana, Geneva, Tahoma, sans-serif;


}

.request_input {
  width: 90%;
  padding: 10px;
  margin-top: 4px;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.request_form_buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
          font-family:Verdana, Geneva, Tahoma, sans-serif;

  margin-top: 20px;
}

.request_btn {
  padding: 10px 15px;
  border: none;
  background-color: #070220;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  flex: 1;
          font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.request_btn.cancel {
  background-color: #ccc;
}

.request_input_group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.request_input_block {
  flex: 1;
}

@media (min-width: 768px) {
  .request_input_group {
    flex-direction: row;
  }
}






.request_success_popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.request_success_box {
  background: white;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
}

.request_success_box i {
  font-size: 60px;
  color: green;
  margin-bottom: 15px;
}



.request_input_block {
  flex: 1;
}

  @media (max-width: 480px) {
    .request_form_container {
      padding: 20px;
    }
  }


  /*track request page */

.track_request_section {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 12px;
  max-width: 1200px;
  margin: 40px auto;
}

.track_request_section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333;
}

/* ===== Request Form ===== */
.track_request_form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 90%;
  justify-content: center;
  margin-bottom: 25px;
}

.track_request_form input,
.track_request_form select {
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 250px;
  transition: border 0.3s ease;
  outline: none;
}

.track_request_form input:focus,
.track_request_form select:focus {
  border-color: #010b16;
}

.track_request_form button {
  padding: 12px 20px;
  font-size: 16px;
  background-color: #000913;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.track_request_form button:hover {
  background-color: #02011b;
}

/* ===== Track Results ===== */
#track_results {
  margin-top: 30px;
  background: #fff;
  overflow-x: auto;
  width: 100%;
}

#search_filter {
  width: 90%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 20px;
  outline: none;
  transition: border-color 0.2s ease-in-out;
}

#search_filter:focus {
  border-color: #000811;
}

/* ===== Table Styling ===== */
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

table thead {
  background-color: #010a13;
  color: white;
}

table thead th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
}

table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

table tbody tr:hover {
  background-color: #f9f9f9;
}

table tbody td {
  padding: 14px 18px;
  font-size: 14px;
  color: #333;
}

/* ===== Mobile Adjustments ===== */
@media (max-width: 768px) {
  .track_request_form {
    flex-direction: column;
    align-items: stretch;
  }

  .track_request_form input,
  .track_request_form select {
    width: 100%;
  }

  table {
    min-width: 100%;
  }
}



/*hour form request */
.request_popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.685);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.request_popup_box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  max-height: 90vh;
}

.request_form label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.request_input {
  width: 90%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.request_form_buttons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.request_btn {
  flex: 1;
  padding: 10px;
  background-color: #00060c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.request_btn.cancel {
  background-color: #ccc;
}

.request_input_group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.request_input_group > div {
  flex: 1;
  min-width: 120px;
}

@media (max-width: 600px) {
  .request_input_group {
    flex-direction: column;
  }
}













/*contact page */
.contact_section {
  padding: 60px 10px;
  background-color: #ffffff;
}

.contact_container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  flex-wrap: wrap;
}

/* Left Side */
.contact_info {
  flex: 1 1 45%;
  text-align: center;
  font-size: 15px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
            font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.contact_image {
  width: 100%;
  
  max-width: 220px;
  margin-bottom: 20px;
  border-radius: 12px;
}

.contact_message {
  margin-bottom: 20px;
            font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.contact_message h2 {
  font-size: 26px;
  margin-bottom: 10px;
            font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.contact_message p {
  font-size: 15px;
  color: #444;
            font-family:Verdana, Geneva, Tahoma, sans-serif;

}
.contact_messages {
  margin-bottom: 20px;
            font-family:Verdana, Geneva, Tahoma, sans-serif;
text-align: center;
}

.contact_messages h2 {
  font-size: 26px;
  margin-bottom: 10px;
            font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.contact_messages p {
  font-size: 15px;
  color: #444;
            font-family:Verdana, Geneva, Tahoma, sans-serif;

}
.under{
    color: #444;
            font-family:Verdana, Geneva, Tahoma, sans-serif;

}
/* Contact Icons */
.contact_icons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact_icons a {
  font-size: 22px;
  color: #000b16;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact_icons a:hover {
  color: #010124;
}

/* Right Side Form */
.contact_form_wrapper {
  flex: 1 1 50%;
}
.contact_icons_under {
  display: none;
  gap: 18px;
    margin-top: 2rem;

  justify-content: center;
  flex-wrap: wrap;
}
.contact_icons_under a {
  font-size: 22px;
  color: #000b16;
  
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact_icons_under a:hover {
  color: #010124;
}

.contact_form input,
.contact_form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact_input_group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact_input_group input {
  flex: 1 1 48%;
}

.contact_btn {
  background-color: #02080f;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact_container {
    flex-direction: column;
    padding: 20px;
  }

  .contact_info {
    display: none;
  }

  .contact_form_wrapper {
    flex: 1 1 100%;
  }
  .contact_icons_under {
  display: flex;

}
}










/*code page */

    .code_library_container {
      display: flex;
      max-width: 1200px;
      margin: 30px auto;
      gap: 20px;
      background-color: white;
    }

    .code_sidebar {
      width: 280px;
      background: #ffffff;
      padding: 20px;
      border-radius: 10px;
      height: 80vh;
      font-family:Verdana, Geneva, Tahoma, sans-serif;

      overflow-y: auto;
    }

    .code_sidebar input[type=search] {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
                  font-family:Verdana, Geneva, Tahoma, sans-serif;

    }

    .code_list {
      list-style: none;
      padding: 0;
      margin: 0;
                  font-family:Verdana, Geneva, Tahoma, sans-serif;

    }

    .code_list li {
      margin-bottom: 10px;
      cursor: pointer;
      padding: 8px;
      border-radius: 6px;
                  font-family:Verdana, Geneva, Tahoma, sans-serif;

      background-color: #e0f0ff;
    }

    .code_list li:hover {
      background: #e6f0ff;
    }

    .code_content {
      flex: 1;
      background: #fff;
      padding: 0;
      border-radius: 10px;
      overflow-y: auto;
      height: 100vh;
                  font-family:Verdana, Geneva, Tahoma, sans-serif;

      display: flex;
      flex-direction: column;
    }

    .code_search_bar {
      position: sticky;
      top: 0;
      background: #fff;
      padding: 15px 20px;
      border-bottom: 1px solid #eee;
      z-index: 10;
                  font-family:Verdana, Geneva, Tahoma, sans-serif;

    }

    .code_search_bar input {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
                  font-family:Verdana, Geneva, Tahoma, sans-serif;

    }

    .code_results {
      padding: 20px;
      margin-top: 1rem;
                  font-family:Verdana, Geneva, Tahoma, sans-serif;

      overflow-y: auto;
    }

    .code_card {
      margin-bottom: 30px;
      border-bottom: 1px solid #eee;
      padding-bottom: 20px;
                  font-family:Verdana, Geneva, Tahoma, sans-serif;

    }

    .code_title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 8px;
                  font-family:Verdana, Geneva, Tahoma, sans-serif;

    }

    .code_meta {
      font-size: 13px;
      color: gray;
      margin-bottom: 10px;
                  font-family:Verdana, Geneva, Tahoma, sans-serif;

    }

    .code_block {
      background: #f9f9f9;
      padding: 15px;
      border-radius: 6px;
      white-space: pre-wrap;
      font-family: monospace;
      margin-top: 10px;
      font-family:Verdana, Geneva, Tahoma, sans-serif;

    }

    .reaction_buttons {
      margin-top: 10px;
    }

    .reaction_buttons button {
      margin-right: 10px;
      padding: 6px 12px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .like_btn {
      background-color: #4CAF50;
      color: white;
    }

    .dislike_btn {
      background-color: #f44336;
      color: white;
    }
    

    .code_intro_section {
  text-align: center;
  background: #fff;
  margin: 0 auto;
  max-width: 1000px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.code_intro_image {
  width: 120px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.code_intro_text h2 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #555;
  font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.intro_item {
  margin-bottom: 25px;
}

.intro_icon {
  font-size: 24px;
  color: #021324;
  margin-bottom: 10px;
  display: inline-block;
}

.code_intro_text p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0 auto;
        font-family:Verdana, Geneva, Tahoma, sans-serif;

  max-width: 700px;
  padding: 0 10px;
}
 .mobile_code_lang_scroll {
    display: none;

  }



/* testimonia*/


  .testimonials_container {
    max-width: 100%;
    margin: 40px auto 80px auto;
    padding: 0 20px;
            font-family:Verdana, Geneva, Tahoma, sans-serif;

  }



  /* Grid for testimonial cards */
  .testimonial_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
            font-family:Verdana, Geneva, Tahoma, sans-serif;
    justify-content: center;
  }

  /* Each testimonial card */
  .testimonial_card {
    background: white;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.014);
    width: calc(30.333% - 13.33px); /* 3 per row with gap */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: default;
  }

  .testimonial_card:hover {
    box-shadow: 0 6px 10px rgb(0 0 0 / 0.15);
  }

  .testimonial_header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
                font-family:Verdana, Geneva, Tahoma, sans-serif;

  }

  /* Placeholder user avatar circle */
  .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #010c18;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
                font-family:Verdana, Geneva, Tahoma, sans-serif;

  }

  .name {
    font-weight: 700;
    font-size: 1rem;
    color: #222;
                font-family:Verdana, Geneva, Tahoma, sans-serif;

  }

  .date {
    font-size: 0.85rem;
    color: #666;
    margin-left: auto;
                font-family:Verdana, Geneva, Tahoma, sans-serif;

  }

  .rating {
    color: #f5a623;
    font-size: 1.2rem;
    margin-bottom: 10px;
                font-family:Verdana, Geneva, Tahoma, sans-serif;

  }

  .message {
    font-size: 12px;
    line-height: 1.5;
    color: #555;
    white-space: pre-line;
                font-family:Verdana, Geneva, Tahoma, sans-serif;

  }

  /* Popup widget button */
  #testimonial_widget_btn {
    position: fixed;
    bottom: 80px;
    right: 30px;
    background: #021324;
    color: white;
    border: none;
    border-radius: 100%;
    height: 10%;
    padding: 15px 30px;
    font-size: 16px;
                font-family:Verdana, Geneva, Tahoma, sans-serif;

    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  /* Popup overlay */
  #testimonial_popup {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(223, 223, 223, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 2000;
       animation: fadeIn 0.4s ease;
  }

  /* Popup form container */
  #testimonial_popup .popup_content {
    background: white;
    border-radius: 12px;
    max-width: 480px;
    width: 90%;
    padding: 25px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
  }

  #testimonial_popup h3 {
    margin-top: 0;
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
    color: #222;
                font-family:Verdana, Geneva, Tahoma, sans-serif;

  }

  #testimonial_popup form input,
  #testimonial_popup form textarea,
  #testimonial_popup form select {
    width: 90%;
    padding: 12px 15px;
    margin-bottom: 18px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border-color 0.2s ease;
                font-family:Verdana, Geneva, Tahoma, sans-serif;

  }

  #testimonial_popup form input:focus,
  #testimonial_popup form textarea:focus,
  #testimonial_popup form select:focus {
    outline: none;
    border-color: #020f1b;
  }

  /* Buttons container */
  .form_buttons {
    display: flex;
    gap: 15px;
                font-family:Verdana, Geneva, Tahoma, sans-serif;

  }

  #testimonial_popup form button {
    flex: 1;
    padding: 12px 0;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
                font-family:Verdana, Geneva, Tahoma, sans-serif;

    transition: background-color 0.3s ease;
  }

  #testimonial_popup form button[type="submit"] {
    background: #03111f;
    color: white;
  }

  #testimonial_popup form button[type="submit"]:hover {
    background: #000000;
  }

  #testimonial_popup form button.cancel_btn {
    background: #ccc;
    color: #333;
                font-family:Verdana, Geneva, Tahoma, sans-serif;

  }

  #testimonial_popup form button.cancel_btn:hover {
    background: #aaa;
  }

  #form_msg {
    color: green;
    margin-top: 10px;
    display: none;
    text-align: center;
    font-weight: 600;
  }
select[name="rating"] option {
  font-weight: 600;
  font-size: 1rem;
              font-family:Verdana, Geneva, Tahoma, sans-serif;

}
/* Search input container */
#testimonial_search_input {
  width: 100%;
  max-width: 600px;
  padding: 12px 16px;
  font-size: 16px;
  border: 1.5px solid #01061b69;
  border-radius: 8px;
  font-family:Verdana, Geneva, Tahoma, sans-serif;

  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline-offset: 2px;
  outline-color: transparent;
}

#testimonial_search_input:focus {
  border-color: #0a1724;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* No match message styling */
.no-match-message {
  text-align: center;
  color: #888;
  font-style: italic;
  font-size: 1rem;
  margin-top: 20px;
  user-select: none;
}

/* Container to center the search bar */
.testimonial_search_container {
  max-width: 900px;
  margin: 30px auto 10px auto;
  padding: 0 20px;
  text-align: center;
}
.welcome_message {
  max-width: 900px;
  margin: 40px auto 20px auto;
  padding: 0 15px;
  text-align: center;
  font-family: Arial, sans-serif;
  color: #333;
}

.welcome_message h1 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.welcome_message p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #555;
}

  /* Responsive */
  @media (max-width: 960px) {
    .testimonial_card {
      width: calc(50% - 10px); 
    }
  }

  @media (max-width: 600px) {
    .testimonial_card {
      width: 100%; 
    }

    #testimonial_widget_btn {
      padding: 12px 20px;
      font-size: 14px;
    }
  }

 


.language_buttons_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.code_language_btn {
  background-color: #ebebeb;
  color: white;
  border: none;
  color: #000000;
  border-radius: 3px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.code_language_btn:hover {
  background-color: #000000;
  color: white;
}





/*package users choices*/
.package_user_section {
  padding: 0px;
  width: 100%;
}

.package_user_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  
  position: sticky;
  top: 0;
  background-color: white; 
  z-index: 10;

}


.package_user_filters .package_user_btn {
  margin: 0 5px;
  padding: 8px 15px;
  background-color: #02121d;
  color: white;
  border: none;
  border-radius: 6px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

  cursor: pointer;
}

.package_user_filters .package_user_btn:hover {
  background-color: #000000;
}

.package_user_table_container {
  overflow-x: auto;
}

.package_user_table {
  width: 100%;
  border-collapse: collapse;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.package_user_table th,
.package_user_table td {
  border: 1px solid #ccc;
  text-align: left;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.package_user_row:nth-child(even) {
  background-color: #f9f9f9;
}

.package_user_controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.package_user_filters {
  display: flex;
  gap: 10px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

  margin-bottom: 10px;
}



.package_user_active {
  background-color: #2ecc71 !important;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.package_user_search {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 50%;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

  margin-left: 5px;
}


.package_user_feature_btn {
  background-color: #2ecc71;
  color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.package_user_delete_btn {
  background-color: #e74c3c;
  color: white;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


#package_user_popup {
  position: absolute;
  background-color: #f9f9f9;
  color: #333;
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 8px;
  max-width: 280px;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transform: translateX(0);
}

.package_user_popup_content {
  font-size: 14px;
  line-height: 1.4;
  font-family:Verdana, Geneva, Tahoma, sans-serif;

  white-space: pre-wrap;
}
.package_user_popup_bubble{
font-family:Verdana, Geneva, Tahoma, sans-serif;
background-color: rgb(2, 0, 20);
}
/* Arrow below the bubble */
#package_user_popup::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #050118;
}


.package_user_modal {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.package_user_modal_box {
  background: #fff;
  width: 90%;
  max-width: 380px;
  border-radius: 10px;
  padding: 25px 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.911);
  animation: package_user_fade 0.25s ease;
}

@keyframes package_user_fade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.package_user_modal_msg {
  font-size: 16px;
  margin-bottom: 22px;
  color: #333;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.package_user_modal_actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.package_user_modal_btn {
  flex: 1;
  padding: 10px 0;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

  font-size: 15px;
}

.package_user_modal_yes {
  background: #e74c3c;
  color: #fff;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

}

.package_user_modal_no {
  background: #ecf0f1;
  color: #333;
}

.package_user_modal_btn:hover {
  opacity: 0.9;
}


/* Container sticks to the right, middle of viewport */
.package_user_widget_bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Individual widget buttons */
.package_user_widget {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #010b13;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}

.package_user_widget:hover {
  background: #000000;
  transform: scale(1.05);
}

/* Tooltip text */
.package_user_widget::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 10000;
}

/* Tooltip arrow */
.package_user_widget::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 10000;
}

/* Show tooltip on hover */
.package_user_widget:hover::after,
.package_user_widget:hover::before {
  opacity: 1;
}










/*assign and approve form*/
.asign_form_tutor_overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Modal Box */
.asign_form_tutor_box {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  animation: asign_form_tutor_fadeIn 0.3s ease-out;
}

/* Modal Title */
.asign_form_tutor_title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #14314b;
  text-align: center;
}

/* Input Fields */
.asign_form_tutor_input {
  width: 90%;
  padding: 10px 12px;
  margin: 6px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border 0.2s;
}

.asign_form_tutor_input:focus {
  border-color: #020704;
}

/* Action Buttons */
.asign_form_tutor_actions {
  margin-top: 15px;
  text-align: right;
}

.asign_form_tutor_confirm {
  background: #07011a;
  color: white;
  border: none;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.asign_form_tutor_cancel {
  background: #ccc;
  color: black;
  border: none;
  padding: 8px 16px;
  margin-left: 8px;
  border-radius: 5px;
  cursor: pointer;
}

.asign_form_tutor_confirm:hover {
  background: #010720;
}

.asign_form_tutor_cancel:hover {
  background: #b0b0b0;
}

/* Animation */
@keyframes asign_form_tutor_fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.expire_dot {
  display: inline-block;
  width: auto;
  height: auto;
  background: red;
  border-radius: 50%;
  margin-left: 5px;
  cursor: pointer;
  text-align: center;
  padding: 5px;
  color: white;
}




/* Responsive */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .steps li {
    max-width: 100%;
  }

#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
display: none;  pointer-events: none; 

}
      .founder-particles-section {
        padding: 60px 10px;
      }
      .founder-overlay {
        padding: 20px;
      }


      /*code page*/
 .code_library_container {
    flex-direction: column;
    padding: 10px;
    gap: 0;
  }

  .code_sidebar {
    display: none;
  }

  .mobile_code_lang_scroll {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    background: #fff;
    padding: 10px 15px;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .mobile_code_lang_scroll button {
    background: #020014;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    flex: 0 0 auto;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
  }

  .code_content {
    width: 100%;
    height: auto;
    overflow: visible;
    
  }

  .code_search_bar {
    position: sticky;
    top: 60px; 
    z-index: 9;
    background: #fff;
    padding: 10px 15px;
    border-bottom: 1px solid #fff;
  }

  .code_search_bar input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  .code_results {
    padding: 15px;
    
  }

  .code_block {
    overflow-x: auto;
    white-space: pre;
    font-size: 14px;
    padding: 12px;
    background: #f1f1f1;
    border-radius: 6px;
  }

  .reaction_buttons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }

  .reaction_buttons button {
    padding: 6px 12px;
    font-size: 13px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .like_btn {
    background-color: #28a745;
    color: white;
  }

  .dislike_btn {
    background-color: #dc3545;
    color: white;
  }
}
