.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  color: white;
  padding: 10px 0;
  z-index: 1000;
  display: none;
}

@media screen and (max-width: 430px){
  .navbar {
    display: block;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  }
}

@media screen and (min-width: 431px) and (max-width: 820px){
  .navbar {
    display: block;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    padding-right: 26px;
    padding-left: 44px;
  }
}

.contact-us {
  background-color: #414142;
  border-radius: 30px;
  width: fit-content;
  height: 32px;
  margin-top: 16px;
  margin-right: 8px;
  outline: none;
  border: none;
}
.contact-us a {
  color: #ffffff;
  font-family: "Poppins", Helvetica;
  font-size: 10px;
  position: relative;
  top: -2px;
}

@media screen and (min-width: 431px) and (max-width: 820px){
  .contact-us {
    min-width: max-content;
    min-height: 38px;
    margin-right: 16px;
  }
  .contact-us a { font-size: 14px; }
}

.navbar-double { display: flex; }

.dropbtn {
  background-color: transparent;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 100%;
  z-index: 10;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  margin-top: 74px;
  height: 0%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  min-width: 100%;
  overflow: auto;
  box-shadow: 0px 6px 4px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 0 0 16px 16px;
  text-align: center;
  font-family: "Poppins", Helvetica;
  color: #414142;
  transition: 0.2s;
}

.dropdown-content a {
  color: #a1a1a1;
  padding: 22px 16px;
  text-decoration: none;
  display: block;
  font-size: 24px;
}
.dropdown-content a:first-child {
  border-top: solid 1px #414142;
  width: 70%;
  margin: 0 auto;
  padding-top: 40px;
  text-decoration: none;
  display: block;
}
.dropdown a:hover { background-color: #ddd; }
.show { height: 788%; }

.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  padding-top: 2px;
  padding-left: 60px;
  cursor: pointer;
  padding-right: 36px;
}

.bar1, .bar2, .bar3 {
  width: 30px;
  height: 3px;
  background-color: #414142;
  margin: 6px 0;
  transition: 0.4s;
  z-index: 0;
}
.change .bar1 { transform: translate(0, 7px) rotate(-45deg); }
.change .bar2 { opacity: 0; }
.change .bar3 { transform: translate(0, -11px) rotate(45deg); }

.navbar-logo {
  margin-left: 0;
  padding-top: 16px;
}
.navbar-logo svg { width: 32px; height: 32px; }
.navbar-logo path { fill: #0087ca; }

.nav-link {
  color: white;
  text-decoration: none;
  padding: 10px 8px;
}
.nav-link:hover { background-color: #555; border-radius: 5px; }

.bg {
  width: 40%;
  position: absolute;
  top: -20px;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 430px){
  .bg { width: 70%; top: 0; }
}

@media screen and (min-width: 431px) and (max-width: 820px){
  .bg { width: 54%; top: 10px; }
}

.container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 1;
}

@media screen and (max-width: 430px){
  body .container {
    overflow: hidden;
    padding: 0 30px;
  }
}

@media screen and (min-width: 431px) and (max-width: 820px){
  body .container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}

.close {
  margin-top: 80px;
  display: block;
}
.close path, .close svg {
  transition: width 0.1s ease-in, height 0.1s ease-in, fill 0.1s ease-in;
}
.close:hover path { fill: #0087ca; }
.close:hover svg { width: 26px; height: 26px; }

@media screen and (max-width: 430px){
  .close { display: none; }
}
@media screen and (min-width: 431px) and (max-width: 820px){
  .close { display: none; }
}

.ot-header {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  color: #0087ca;
  font-size: 70px;
  margin-left: 100px;
  margin-bottom: 20px;
  margin-top: 40px;
}

@media screen and (max-width: 430px){
  .ot-header {
    font-size: 44px;
    margin-left: 28px;
    margin-bottom: 0;
    margin-top: 160px;
  }
}

@media screen and (min-width: 431px) and (max-width: 820px){
  .ot-header {
    font-size: 54px;
    margin-left: 40px;
    margin-bottom: 0;
    margin-top: 160px;
  }
}

.ot-intro {
  font-family: "Poppins", Helvetica;
  color: #414142;
  font-size: 16px;
  line-height: 1.7;
  margin: 16px 100px 40px 100px;
  max-width: 1000px;
}

@media screen and (max-width: 430px){
  .ot-intro {
    font-size: 14px;
    margin: 24px 28px 30px 28px;
  }
}

@media screen and (min-width: 431px) and (max-width: 820px){
  .ot-intro {
    font-size: 15px;
    margin: 24px 40px 30px 40px;
  }
}

.ot-list {
  margin: 0 100px 40px 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (max-width: 430px){
  .ot-list {
    margin: 0 16px 30px 16px;
    gap: 20px;
  }
}

@media screen and (min-width: 431px) and (max-width: 820px){
  .ot-list {
    margin: 0 30px 30px 30px;
  }
}

.ot-card {
  display: flex;
  gap: 24px;
  padding: 28px 32px;
  background: #ffffff;
  border: 1px solid #d6e8f3;
  border-left: 4px solid #0087ca;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 135, 202, 0.06);
  transition: transform 0.2s ease-in, box-shadow 0.2s ease-in;
}

.ot-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 135, 202, 0.14);
}

@media screen and (max-width: 430px){
  .ot-card {
    flex-direction: column;
    gap: 12px;
    padding: 22px 22px;
  }
}

.ot-number {
  flex: 0 0 auto;
  font-family: "Poppins", Helvetica;
  font-weight: 800;
  font-size: 44px;
  color: #0087ca;
  line-height: 1;
  min-width: 76px;
  padding-top: 4px;
}

@media screen and (max-width: 430px){
  .ot-number {
    font-size: 30px;
    min-width: 0;
  }
}

.ot-content {
  flex: 1 1 auto;
}

.ot-title {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  color: #414142;
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 16px 0;
}

@media screen and (max-width: 430px){
  .ot-title {
    font-size: 17px;
    margin-bottom: 12px;
  }
}

.ot-section {
  margin-top: 14px;
}

.ot-section h4 {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  color: #0087ca;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 6px 0;
}

.ot-section p {
  font-family: "Poppins", Helvetica;
  color: #414142;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width: 430px){
  .ot-section p { font-size: 14px; }
}

.ot-questions {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ot-questions li {
  font-family: "Poppins", Helvetica;
  color: #414142;
  font-size: 15px;
  line-height: 1.6;
  margin: 8px 0;
  padding-left: 22px;
  position: relative;
}

.ot-questions li::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: 0;
  color: #0087ca;
  font-weight: 700;
}

@media screen and (max-width: 430px){
  .ot-questions li { font-size: 14px; }
}

.down-bottom {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
}
.down-bottom button {
  color: white;
  background-color: #414142;
  font-family: "Poppins";
  outline: none;
  border: none;
  border-radius: 30px;
  width: 280px;
  height: 58px;
  margin-bottom: 80px;
  transition: background-color 0.1s ease-in, width 0.1s ease-in, height 0.1s ease-in, font-weight 0.1s ease-in;
}
.down-bottom a {
  margin-bottom: 80px;
}
.down-bottom button:hover {
  background-color: #0087ca;
  width: 284px;
  height: 60px;
  font-weight: 700;
}

@media screen and (max-width: 430px){
  .back-arrow { display: none; }
}
@media screen and (min-width: 431px) and (max-width: 820px){
  .back-arrow { display: none; }
}


/* ============================================================
   INTERNSHIPS — list page + 4 detail pages
   (appended to the shared Open Topics base styles)
   ============================================================ */

.ins-header {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  color: #0087ca;
  font-size: 70px;
  margin-left: 100px;
  margin-bottom: 14px;
  margin-top: 40px;
  line-height: 1.1;
}

.ins-subtitle {
  font-family: "Poppins", Helvetica;
  font-weight: 600;
  color: #414142;
  font-size: 18px;
  margin: 0 100px 18px 100px;
}

.ins-intro {
  font-family: "Poppins", Helvetica;
  color: #414142;
  font-size: 16px;
  line-height: 1.7;
  margin: 16px 100px 40px 100px;
  max-width: 1000px;
}

@media screen and (max-width: 430px) {
  .ins-header { font-size: 40px; margin-left: 28px; margin-top: 160px; }
  .ins-subtitle { font-size: 15px; margin: 0 28px 16px 28px; }
  .ins-intro { font-size: 14px; margin: 18px 28px 28px 28px; }
}

@media screen and (min-width: 431px) and (max-width: 820px) {
  .ins-header { font-size: 52px; margin-left: 40px; margin-top: 160px; }
  .ins-subtitle { font-size: 16px; margin: 0 40px 16px 40px; }
  .ins-intro { font-size: 15px; margin: 18px 40px 28px 40px; }
}

/* ---------- list page: clickable internship cards ---------- */
.ins-list {
  margin: 0 100px 30px 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ins-card {
  display: flex;
  gap: 24px;
  padding: 28px 32px;
  background: #ffffff;
  border: 1px solid #d6e8f3;
  border-left: 4px solid #0087ca;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 135, 202, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease-in, box-shadow 0.2s ease-in;
}

.ins-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 135, 202, 0.16);
}

.ins-number {
  flex: 0 0 auto;
  font-family: "Poppins", Helvetica;
  font-weight: 800;
  font-size: 44px;
  color: #0087ca;
  line-height: 1;
  min-width: 76px;
  padding-top: 4px;
}

.ins-content { flex: 1 1 auto; }

.ins-title {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  color: #414142;
  font-size: 22px;
  line-height: 1.35;
  margin: 0 0 10px 0;
}

.ins-brief {
  font-family: "Poppins", Helvetica;
  color: #414142;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.ins-more {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  color: #0087ca;
  font-size: 14px;
}

.ins-card:hover .ins-more { text-decoration: underline; }

@media screen and (max-width: 430px) {
  .ins-list { margin: 0 16px 24px 16px; }
  .ins-card { flex-direction: column; gap: 10px; padding: 22px; }
  .ins-number { font-size: 30px; min-width: 0; }
  .ins-title { font-size: 18px; }
  .ins-brief { font-size: 14px; }
}

@media screen and (min-width: 431px) and (max-width: 820px) {
  .ins-list { margin: 0 30px 24px 30px; }
}

/* ---------- detail page ---------- */
.ins-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 100px 22px 100px;
}

.ins-meta span {
  font-family: "Poppins", Helvetica;
  font-size: 13px;
  color: #414142;
  background: #eaf4fb;
  border: 1px solid #d6e8f3;
  border-radius: 10px;
  padding: 10px 16px;
}

.ins-meta strong {
  display: block;
  font-weight: 700;
  color: #0087ca;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}

.ins-download {
  display: inline-block;
  margin: 0 100px 10px 100px;
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  background-color: #0087ca;
  border-radius: 30px;
  padding: 14px 28px;
  text-decoration: none;
  transition: background-color 0.15s ease-in, transform 0.15s ease-in;
}

.ins-download:hover {
  background-color: #414142;
  color: #ffffff;
  transform: translateY(-2px);
}

.ins-block {
  margin: 34px 100px 0 100px;
  max-width: 1040px;
}

.ins-block h3 {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  color: #0087ca;
  font-size: 26px;
  margin: 0 0 14px 0;
}

.ins-block p {
  font-family: "Poppins", Helvetica;
  color: #414142;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px 0;
}

.ins-plan-note {
  font-style: italic;
  color: #5b6b78 !important;
}

.ins-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ins-bullets li {
  font-family: "Poppins", Helvetica;
  color: #414142;
  font-size: 15px;
  line-height: 1.6;
  margin: 9px 0;
  padding-left: 24px;
  position: relative;
}

.ins-bullets li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  top: 0;
  color: #0087ca;
  font-weight: 700;
}

/* ---------- the 18-week cluster blocks ---------- */
.ins-clusters {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.ins-cluster {
  background: #ffffff;
  border: 1px solid #d6e8f3;
  border-left: 4px solid #0087ca;
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(0, 135, 202, 0.06);
}

.ins-cluster-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.ins-weeks {
  flex: 0 0 auto;
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: #ffffff;
  background: #0087ca;
  border-radius: 20px;
  padding: 7px 16px;
  white-space: nowrap;
}

.ins-cluster-head h4 {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  color: #414142;
  font-size: 18px;
  margin: 0;
}

.ins-focus {
  font-family: "Poppins", Helvetica;
  color: #414142;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.ins-cluster h5 {
  font-family: "Poppins", Helvetica;
  font-weight: 700;
  color: #0087ca;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 6px 0;
}

.ins-acts {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}

.ins-acts li {
  font-family: "Poppins", Helvetica;
  color: #414142;
  font-size: 14.5px;
  line-height: 1.55;
  margin: 6px 0;
  padding-left: 22px;
  position: relative;
}

.ins-acts li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  top: 0;
  color: #0087ca;
  font-weight: 700;
}

.ins-milestone {
  font-family: "Poppins", Helvetica;
  color: #414142;
  font-size: 14px;
  line-height: 1.55;
  background: #eaf4fb;
  border-radius: 10px;
  padding: 12px 16px;
}

.ins-milestone strong { color: #0087ca; }

@media screen and (max-width: 430px) {
  .ins-meta { margin: 0 28px 18px 28px; }
  .ins-download { margin: 0 28px 8px 28px; font-size: 14px; }
  .ins-block { margin: 28px 28px 0 28px; }
  .ins-block h3 { font-size: 21px; }
  .ins-cluster { padding: 20px; }
  .ins-cluster-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ins-cluster-head h4 { font-size: 16px; }
}

@media screen and (min-width: 431px) and (max-width: 820px) {
  .ins-meta { margin: 0 40px 18px 40px; }
  .ins-download { margin: 0 40px 8px 40px; }
  .ins-block { margin: 30px 40px 0 40px; }
}

/* ---------- download buttons (PDF + Word) ---------- */
.ins-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 100px 10px 100px;
}

.ins-downloads .ins-download {
  margin: 0;
}

.ins-download-alt {
  background-color: #414142;
}

.ins-download-alt:hover {
  background-color: #0087ca;
}

/* ---------- Gantt chart ---------- */
.ins-gantt {
  margin-top: 10px;
  overflow-x: auto;
  border: 1px solid #d6e8f3;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 135, 202, 0.06);
  background: #ffffff;
}

.ins-gantt img {
  display: block;
  width: 100%;
  min-width: 680px;
  height: auto;
}

@media screen and (max-width: 430px) {
  .ins-downloads { margin: 0 28px 8px 28px; }
}

@media screen and (min-width: 431px) and (max-width: 820px) {
  .ins-downloads { margin: 0 40px 8px 40px; }
}
