/* CSS from style tag at line 14 */

/* #region Hero */

.mdHero {
  display: flex;
  flex-direction: column;
  min-height: 75vh;
  width: 100%;
  background: #0f172a;
  position: relative;
  overflow: hidden;
}

.mdHero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(147, 51, 234, 0.25), rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.15));
  top: -100px;
  right: -100px;
  z-index: 1;
  filter: blur(40px);
}

.mdHero::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(20, 184, 166, 0.15), rgba(147, 51, 234, 0.2), rgba(59, 130, 246, 0.15));
  bottom: -50px;
  left: -50px;
  z-index: 1;
  filter: blur(40px);
}

.mdHeroShapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.mdHeroShape1 {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 15px;
  top: 20%;
  right: 15%;
  transform: rotate(25deg);
  animation: float 8s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(147, 51, 234, 0.18);
}

.mdHeroShape1 i {
  font-size: 32px;
  color: rgba(147, 51, 234, 0.8);
  transform: rotate(-25deg);
}

.mdHeroShape2 {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(236, 72, 153, 0.1);
  border-radius: 10px;
  bottom: 20%;
  left: 10%;
  transform: rotate(-15deg);
  animation: float 6s ease-in-out infinite 1s;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(236, 72, 153, 0.18);
}

.mdHeroShape2 i {
  font-size: 24px;
  color: rgba(236, 72, 153, 0.8);
  transform: rotate(15deg);
}

.mdHeroShape3 {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(20, 184, 166, 0.1);
  border-radius: 8px;
  top: 30%;
  left: 20%;
  transform: rotate(45deg);
  animation: float 7s ease-in-out infinite 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(20, 184, 166, 0.18);
}

.mdHeroShape3 i {
  font-size: 18px;
  color: rgba(20, 184, 166, 0.8);
  transform: rotate(-45deg);
}

/* Doküman simgeleri için stiller */
.mdDocIcon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
  z-index: 2;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(147, 51, 234, 0.18);
}

.mdDocIcon i {
  font-size: 20px;
  color: rgba(147, 51, 234, 0.8);
}

.mdDocIcon:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(147, 51, 234, 0.3);
  border: 1px solid rgba(147, 51, 234, 0.3);
}

.mdDocIcon1 {
  top: 15%;
  right: 25%;
  animation: floatDoc 7s ease-in-out infinite;
}

.mdDocIcon2 {
  bottom: 30%;
  right: 20%;
  animation: floatDoc 9s ease-in-out infinite 1s;
}

.mdDocIcon3 {
  top: 35%;
  left: 15%;
  animation: floatDoc 8s ease-in-out infinite 2s;
}

.mdDocIcon4 {
  bottom: 25%;
  left: 25%;
  animation: floatDoc 6s ease-in-out infinite 1.5s;
}

@keyframes floatDoc {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Bağlantı çizgileri için stiller */
.mdConnectLine1, .mdConnectLine2 {
  position: absolute;
  background: linear-gradient(90deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.3));
  height: 2px;
  z-index: 1;
  box-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
}

.mdConnectLine1 {
  width: 150px;
  top: 20%;
  right: 30%;
  transform: rotate(45deg);
  animation: pulse 3s ease-in-out infinite;
}

.mdConnectLine2 {
  width: 200px;
  bottom: 30%;
  left: 20%;
  transform: rotate(-30deg);
  animation: pulse 3s ease-in-out infinite 1.5s;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.3;
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(25deg);
  }
  50% {
    transform: translateY(-20px) rotate(35deg);
  }
  100% {
    transform: translateY(0) rotate(25deg);
  }
}

.mdHeroArea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 100px);
  z-index: 102;
  padding: 40px 0;
  position: relative;
}

.mdHeroContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
  padding: 20px;
}

.mdLeftHero {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  max-width: 600px;
}

.mdHeroBadge {
  display: inline-block;
  background-color: rgba(56, 90, 245, 0.0);
}

/* Hero Butonları */
.mdHeroButtons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.mdHeroButton {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  gap: 10px;
}

.mdPrimaryButton {
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  color: white;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
  border: none;
}

.mdSecondaryButton {
  background: rgba(147, 51, 234, 0.1);
  color: #a855f7;
  border: 1px solid rgba(147, 51, 234, 0.3);
  backdrop-filter: blur(5px);
}

.mdHeroButton:hover {
  transform: translateY(-3px);
}

.mdPrimaryButton:hover {
  background: linear-gradient(90deg, #2563eb, #1e40af);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.mdSecondaryButton:hover {
  background: rgba(147, 51, 234, 0.15);
  border: 1px solid rgba(147, 51, 234, 0.5);
}

.mdButtonIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.mdText1 {
  color: #a855f7;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mdHeroHeading {
  margin-bottom: 10px;
}

.mdHeadingMain {
  color: #f1f5f9;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
}

.mdHeadingHighlight {
  background: linear-gradient(90deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.mdSearchArea {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.mdSearchInputWrapper {
  position: relative;
  width: 100%;
}

.mdSearchIcon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(147, 51, 234, 0.5);
  font-size: 16px;
}

.searchArea {
  height: 60px;
  width: 100%;
  padding: 20px 20px 20px 50px;
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 40px;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.1);
  background-color: white;
  color: rgb(30, 58, 83);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.searchArea:focus {
  outline: none;
  border: 1px solid rgba(147, 51, 234, 0.5);
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.2);
  transform: translateY(-2px);
}

.mdPopularSearches {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-left: 10px;
}

.mdPopularLabel {
  font-size: 14px;
  color: rgba(30, 58, 83, 0.7);
  font-weight: 500;
}

.mdPopularTags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mdTag {
  display: inline-block;
  padding: 5px 12px;
  background-color: rgba(147, 51, 234, 0.08);
  border-radius: 15px;
  color: rgb(147, 51, 234);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mdTag:hover {
  background-color: rgba(147, 51, 234, 0.15);
  transform: translateY(-2px);
}

.mdRightHero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.mdHeroImageWrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.mdHeroRightImg {
  max-height: 500px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: transform 0.5s ease;
}

.mdHeroRightImg:hover {
  transform: translateY(-10px);
}

.mdHeroStats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.mdStatItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.mdStatNumber {
  font-size: 28px;
  font-weight: 800;
  color: rgb(56, 90, 245);
}

.mdStatLabel {
  font-size: 14px;
  color: rgba(207, 218, 228, 0.7);
  font-weight: 500;
}

/* #endregion */

/* #region TenderSection */

.mdIhaleCategoriesContainer{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.mdIhaleCategoriesContainer .mdIhaleCard {
  width: calc(25% - 15px);
  margin-bottom: 20px;
}

.mdActiveIhaleSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: white;
}

.mdIhaleArea {
  display: flex;
  flex-direction: column;
  width: 72%;
  gap: 30px;
  padding: 20px;
}

.mdIhaleCardContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px;
}

.mdIhaleCard {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 300px;
  height: 320px;
  border: 1px solid rgba(29, 79, 218, 0.1);
  border-radius: 20px;
  background: white;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mdIhaleCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(29, 79, 218, 0.15);
  border: 1px solid rgba(29, 79, 218, 0.2);
}

.mdIhaleCardImg {
  width: 100%;
  height: 220px;
  background-color: rgba(209, 212, 216, 0.4);
  overflow: hidden;
}

.mdIhaleCardImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mdIhaleCard:hover .mdIhaleCardImg img {
  transform: scale(1.05);
}

.mdIhaleCardContent {
  padding: 15px 20px;
}

.mdIhaleCardText {
  font-weight: 600;
  font-size: 16px;
  color: rgb(30, 58, 83);
  margin-bottom: 8px;
}

.mdIhaleCardDetails {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: rgba(30, 58, 83, 0.7);
}

.mdIhaleCardDetails i {
  color: rgba(29, 79, 218, 0.7);
}

.mdIhaleCardDetails span{
  font-size: 14px;
  font-weight: bold;

}

.mdTextArea {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 15px;
}

.mdTextArea .mdMainTitle {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(90deg, rgb(30, 58, 83), rgb(56, 90, 245));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.mdTextArea .mdMainTitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  width: 6px;
  height: 35px;
  background: linear-gradient(180deg, rgb(56, 90, 245), rgb(115, 139, 255));
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(56, 90, 245, 0.2);
}

.mdTextArea .mdSubTitle {
  font-size: 18px;
  color: rgba(30, 58, 83, 0.7);
  font-weight: 500;
  margin-left: 2px;
  position: relative;
}

.mdTextArea .mdSubTitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  width: 3px;
  height: 15px;
  background: rgba(56, 90, 245, 0.3);
  border-radius: 1.5px;
}

.mdIhaleIcon {
    margin-right: 5px;
    
    font-size: 14px;
    font-weight: bold;
}

/* #endregion */

/* #region HelpSection */

.mdHelpSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 50px 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.95)
  );
  backdrop-filter: blur(10px);
}

.mdHelpArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 72%;
  gap: 50px;
}

.mdHelpTitle {
  text-align: center;
}

.mdHelpTitle h2 {
  font-size: 32px;
  font-weight: 800;
  color: rgb(30, 58, 83);
  margin-bottom: 15px;
}

.mdHelpTitle p {
  font-size: 16px;
  color: rgba(30, 58, 83, 0.7);
}

.mdHelpCards {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.mdHelpCard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  width: calc(50% - 15px);
  transition: all 0.3s ease;
}

.mdHelpCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(56, 90, 245, 0.15);
}

.mdHelpCard h3 {
  font-size: 24px;
  font-weight: 700;
  color: rgb(30, 58, 83);
}

.mdHelpCard p {
  font-size: 15px;
  color: rgba(30, 58, 83, 0.7);
  line-height: 1.6;
}

.mdHelpButton {
  display: inline-block;
  padding: 12px 25px;
  background: rgb(56, 90, 245);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
}

.mdHelpButton:hover {
  background: rgb(33, 70, 236);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(56, 90, 245, 0.2);
}

/* #endregion */

/* #region InfoSection */

.mdInfoSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 70px 0;
  background: white;
}

.mdInfoArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 72%;
  gap: 50px;
}

.mdInfoCards {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.mdInfoCard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 35px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  width: calc(33.33% - 20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mdInfoCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgb(56, 90, 245), rgb(115, 139, 255));
}

.mdInfoCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(56, 90, 245, 0.15);
}

.mdInfoIcon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.mdInfoIcon i {
  font-size: 32px;
  color: rgb(56, 90, 245);
}

.mdInfoCard h3 {
  font-size: 22px;
  font-weight: 700;
  color: rgb(30, 58, 83);
}

.mdInfoCard p {
  font-size: 15px;
  color: rgba(30, 58, 83, 0.7);
  line-height: 1.6;
  margin-bottom: 15px;
}

.mdInfoButton {
  color: rgb(56, 90, 245);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.mdInfoButton:hover {
  color: rgb(33, 70, 236);
  gap: 10px;
}

.mdInfoButton i {
  font-size: 18px;
  transition: all 0.3s ease;
}

/* #endregion */

/* #region Responsive */ 

@media (max-width: 1200px) {
  .mdHeroContent {
    gap: 20px;
  }
  
  .mdHeadingMain {
    font-size: 2.2rem;
  }
  
  .mdIhaleCategoriesContainer .mdIhaleCard {
    width: calc(33.33% - 14px);
  }
  
  .mdIhaleArea, .mdHelpArea, .mdInfoArea {
    width: 90%;
  }
  
  .mdHelpCards, .mdInfoCards {
    flex-wrap: wrap;
  }
  
  .mdInfoCard {
    width: calc(50% - 15px);
  }
}

@media (max-width: 992px) {
  .mdHeroContent {
    flex-direction: column;
    text-align: center;
  }
  
  .mdLeftHero {
    max-width: 100%;
    align-items: center;
  }
  
  .mdHeroBadge {
    margin: 0 auto 10px;
  }
  
  .mdPopularSearches {
    justify-content: center;
  }
  
  .mdHeroStats {
    justify-content: center;
  }
  
  .mdHelpCard {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .mdHeadingMain {
    font-size: 1.8rem;
  }
  
  .mdIhaleCategoriesContainer .mdIhaleCard {
    width: calc(50% - 10px);
  }
  
  .mdIhaleCardContainer {
    justify-content: center;
  }
  
  .mdInfoCard {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .mdTextArea .mdMainTitle {
    font-size: 26px;
  }
  
  .mdTextArea .mdSubTitle {
    font-size: 16px;
  }
  
  .mdHelpTitle h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .mdHero {
    min-height: auto;
  }
  
  .mdHeroArea {
    min-height: auto;
    padding: 30px 0;
  }
  
  .mdHeadingMain {
    font-size: 1.5rem;
  }
  
  .searchArea {
    height: 50px;
    font-size: 14px;
  }
  
  .mdStatNumber {
    font-size: 22px;
  }
  
  .mdStatLabel {
    font-size: 12px;
  }
  
  .mdIhaleArea, .mdHelpArea, .mdInfoArea {
    width: 95%;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .mdIhaleCategoriesContainer .mdIhaleCard {
    width: 100%;
  }
  
  .mdTag {
    padding: 4px 8px;
    font-size: 12px;
  }
  
  .mdHelpCard, .mdInfoCard {
    padding: 20px;
  }
  
  .mdHelpCard h3, .mdInfoCard h3 {
    font-size: 20px;
  }
  
  .mdHelpCard p, .mdInfoCard p {
    font-size: 14px;
  }
}

/* #endregion */