/*design section for the cards*/
.design-section {
  padding: 2rem;
  background-color: #f9f9f9;
}

.layout {
  max-width: 1200px;
  margin: 0 auto;
}

.design {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.design_item {
  flex: 1 1 calc(33.333% - 1rem);
  box-sizing: border-box;
}

.design {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
}

.design:hover {
  transform: translateY(-5px);
}

.design_image img {
  width: 100%;
  height: auto;
}

.design_content {
  padding: 1rem;
}

.design_title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.design_text {
  font-size: 16px;
  margin-bottom: 1rem;
  color: #0f0e0e;
}

@media (max-width: 768px) {
  .design_item {
    flex: 1 1 calc(50% - 1rem);
  }

  .design_title {
    font-size: 1.1rem;
  }

  .design_text {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .design_item {
    flex: 1 1 100%;
  }

  .design {
    margin-bottom: 1rem;
  }

  .design_title {
    font-size: 1rem;
  }

  .design_text {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .design_title {
    font-size: 0.9rem;
  }

  .design_text {
    font-size: 16px;
  }
}


/*formats of a research paper*/
.features-section {
  padding: 2rem 0;
  background-color: #f9f9f9;
}

.features {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.features h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #030303;
}

.features p {
  font-size: 1rem;
  color: #030303;
  line-height: 1.5;
}

.features:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}


.feature-1 {
  border-top: 5px solid #007bff;
}

.feature-2 {
  border-top: 5px solid #28a745;
}

.feature-3 {
  border-top: 5px solid #17a2b8;
}

@media (max-width: 768px) {
  .features-section {
    padding: 1.5rem 0;
  }

  .features {
    padding: 1rem;
    margin-bottom: 1.5rem;
    /* Add spacing between stacked cards */
  }

  .features h3 {
    font-size: 1.3rem;
  }

  .features p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .features-section {
    padding: 1rem 0;
  }

  .features {
    padding: 0.8rem;
  }

  .features h3 {
    font-size: 1.1rem;
  }

  .features p {
    font-size: 0.9rem;
  }

  .features:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 375px) {
  .features h3 {
    font-size: 1rem;
  }

  .features p {
    font-size: 0.85rem;
  }

  .features {
    padding: 0.6rem;
  }
}

.flexbox {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 90%;
  flex-wrap: wrap;
}

.flexcard {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 20%;
  align-items: baseline;
  height: 400px;
  border-radius: 20px;
}

.flexcardNumber {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin: 10px 0px;
  border-radius: 0px 50px 50px 0px;
  font-family: 'Jost', sans-serif;
  color: white;
  text-shadow: 0px 3px 5px black;
  font-weight: 500;
  font-size: 20px;
  position: relative;
}

.flexcardTitle {
  font-family: 'Jost', sans-serif;
  text-transform: none;
  font-size: 26px;
  font-weight: 400;
}
.flexcardTitle1 {
  font-family: 'Jost', sans-serif;
  text-transform: none;
  font-size: 23px;
  font-weight: 400;
  padding-left: 3%;
}
.flexcardText {
  font-family: 'Jost', sans-serif;
  text-align: justify;
  font-weight: 300;
}

.flexcardNumber:before {
  content: '';
  width: 34px;
  height: 90px;
  position: absolute;
  left: -33px;
  top: 0px;
  border-radius: 50px 0px 0px 50px;
  z-index: -1;
  background: -moz-linear-gradient(bottom, #95B7A2, #AED2BC);
}

.flexcardNumber:after {
  content: '';
  width: 25px;
  height: 40px;
  position: absolute;
  left: -25px;
  bottom: -40px;
  border-radius: 50px 0px 0px 50px;
  z-index: -1;
}

.flex {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 10px auto;
}

img.flexcardimgItem {
  width: 50%;
}

/* GREEN CARD */

.flexcardGreen {
  background: #f9fbfa;
  box-shadow: 4px 4px 4px #AED2BC;
}

.flexcardNumberGreen {
  background: #FCFCFC;
  background: -webkit-linear-gradient(right, #FCFCFC, #AED2BC);
  background: -moz-linear-gradient(right, #FCFCFC, #AED2BC);
  background: linear-gradient(to left, #FCFCFC, #AED2BC);
  box-shadow: 0px 2px 2px #AED2BC;
}

.flexcardNumberGreen:before {
  background: #AED2BC;
}

.flexcardNumberGreen:after {
  background: #95b7a2;
}

/* BLUE CARD */

.flexcardBlue {
  background: #f7ffff;
  box-shadow: 4px 2px 1px #92E8EB;
}

.flexcardNumberBlue {
  background: #FDFFFE;
  background: -webkit-linear-gradient(right, #FDFFFE, #92E8EB);
  background: -moz-linear-gradient(right, #FDFFFE, #92E8EB);
  background: linear-gradient(to left, #FDFFFE, #92E8EB);
  box-shadow: 0px 2px 1px #92E8EB;
}

.flexcardNumberBlue:before {
  background: #92E8EB;
}

.flexcardNumberBlue:after {
  background: #71bdbf;
}

/* ORANGE CARD */

.flexcardOrange {
  background: #fdf8f3;
  box-shadow: 4px 2px 1px #F68404;
}

.flexcardNumberOrange {
  background: #FDFFFE;
  background: -webkit-linear-gradient(right, #FDFFFE, #F68404);
  background: -moz-linear-gradient(right, #FDFFFE, #F68404);
  background: linear-gradient(to left, #FDFFFE, #F68404);
  box-shadow: 0px 2px 2px #F68404;
}

.flexcardNumberOrange:before {
  background: #F68404;
}

.flexcardNumberOrange:after {
  background: #d06f02;
}

/* PİNK CARD */

.flexcardPink {
  background: #f7ffff;
  box-shadow: 4px 2px 1px #F34EAE;
}

.flexcardNumberPink {
  background: #FDFFFE;
  background: -webkit-linear-gradient(right, #FDFFFE, #F34EAE);
  background: -moz-linear-gradient(right, #FDFFFE, #F34EAE);
  background: linear-gradient(to left, #FDFFFE, #F34EAE);
  box-shadow: 0px 2px 1px #F34EAE;
}

.flexcardNumberPink:before {
  background: #F34EAE;
}

.flexcardNumberPink:after {
  background: #F34EAE;
}

/* RESPONSİVE */

@media only screen and (max-width: 800px) {

  .flexcard {
    width: 35%;
    margin-top: 20px;
  }

  img.flexcardimgItem {
    width: 30%;
  }

}

@media only screen and (max-width: 500px) {

  .flexcard {
    width: 70%;
  }
}