 /* <!-- Mesmerizingsection İçin --> */

 /* <!-- Mesmerizingsection İçin --> */
		.parallax-section {
			position: relative;
			height: 20vh; /* Sabit yükseklik */
			min-height: 600px; /* Minimum yükseklik */
			display: flex;
			align-items: center;
			justify-content: center;
			background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
			background-size: 400% 400%;
			animation: gradient 15s ease infinite;
			overflow: hidden; /* Taşan içeriği gizle */
		}

		@keyframes gradient {
			0% {
				background-position: 0% 50%;
			}
			50% {
				background-position: 100% 50%;
			}
			100% {
				background-position: 0% 50%;
			}
		}

		@keyframes fadeIn {
			from { opacity: 0; transform: translateY(20px); }
			to { opacity: 1; transform: translateY(0); }
		}

		.fade-in {
			animation: fadeIn 1s ease-out forwards;
		}

		.delay-1 { animation-delay: 0.2s; }
		.delay-2 { animation-delay: 0.4s; }
		.delay-3 { animation-delay: 0.6s; }

		.glow-text {
			font-size: 1.5rem;
			color: #fff;
			text-transform: uppercase;
			letter-spacing: 3px;
			margin-bottom: 2rem;
			text-shadow: 0 0 10px rgba(255,255,255,0.8);
			animation: glow 2s ease-in-out infinite alternate;
		}

		@keyframes glow {
			from {
				text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #0ff, 0 0 35px #0ff, 0 0 40px #0ff, 0 0 50px #0ff, 0 0 75px #0ff;
			}
			to {
				text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #0ff, 0 0 70px #0ff, 0 0 80px #0ff, 0 0 100px #0ff, 0 0 150px #0ff;
			}
		}

	.dynamic-text-container {
		height: 120px; /* İki satır için sabit yükseklik */
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.dynamic-text {
		font-size: 3.5rem; /* Başlangıç font boyutu */
		font-weight: 700;
		color: #fff;
		text-transform: uppercase;
		line-height: 1.2;
		margin: 10px;
	}

    .btn {
        padding: 15px 30px;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: all 0.3s ease;
        margin: 15px 10px;
    }

    .btn-neon {
        background-color: transparent;
        color: #fff;
        border: 2px solid #fff;
        position: relative;
        overflow: hidden;
    }

    .btn-neon:hover {
        background-color: #fff;
        color: #000;
    }

    .btn-neon::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: all 0.5s;
    }

    .btn-neon:hover::before {
        left: 100%;
    }

    .btn-outline {
        background-color: transparent;
        color: #fff;
        border: 2px solid #fff;
    }

    .btn-outline:hover {
        background-color: #fff;
        color: #000;
    }

    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .mouse {
        width: 25px;
        height: 40px;
        border: 2px solid #fff;
        border-radius: 15px;
        position: relative;
        margin: 0 auto 10px;
    }

    .wheel {
        width: 3px;
        height: 8px;
        background-color: #fff;
        position: absolute;
        top: 5px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 3px;
        animation: scroll 1.5s infinite;
    }

    @keyframes scroll {
        0% {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }
        100% {
            transform: translateX(-50%) translateY(15px);
            opacity: 0;
        }
    }

    .arrow-scroll span {
        display: block;
        width: 10px;
        height: 10px;
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        margin: -5px auto;
        animation: arrow 2s infinite;
    }

    .arrow-scroll span:nth-child(2) {
        animation-delay: -0.2s;
    }

    .arrow-scroll span:nth-child(3) {
        animation-delay: -0.4s;
    }

    .login-container {
        display: flex;
        width: 100%;
        height: 300px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        overflow: hidden;
        margin: 50px auto;
    }
	
#wrapper #content-wrapper {
  background-color: #f8f9fc;
  width: 100%;
  overflow-x: hidden;
}

#wrapper #content-wrapper #content {
  flex: 1 0 auto;
}

    @keyframes arrow {
        0% {
            opacity: 0;
            transform: rotate(45deg) translate(-20px, -20px);
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            transform: rotate(45deg) translate(20px, 20px);
        }
    }
	
	/* Responsive tasarım için medya sorguları */
	@media (max-width: 1200px) {
		.dynamic-text {
			font-size: 3rem;
		}
	}

	@media (max-width: 992px) {
		.dynamic-text {
			font-size: 2.5rem;
		}
	}

	@media (max-width: 768px) {
		.dynamic-text {
			font-size: 2rem;
		}
		.dynamic-text-container {
			height: 100px;
		}
	}

	@media (max-width: 576px) {
		.dynamic-text {
			font-size: 1.5rem;
		}
		.dynamic-text-container {
			height: 80px;
		}
	}
	
/* <!-- Mesmerizingsection2 İçin --> */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7fa;
}

.navbar-brand h1 {
    font-family: 'Playfair Display', serif;
}

.content-wrapper, .login-container {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    width: 100%;
    height: 40vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    box-sizing: border-box; /* Box-sizing ayarını ekleyin */
}

.left-side {
    width: 100%;
    flex-grow: 1; /* Left-side'ın tamamen genişlemesini sağlar */
    flex-shrink: 0;
    background-color: #a4c639;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0; /* Ekstra boşluğu kaldırır */
    padding: 0; /* Ekstra boşluğu kaldırır */
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.left-side::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') 0 0 / 20% 20%;
    animation: rotate 30s linear infinite;
    z-index: 0;
}

.left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.description-text {
    font-size: 1.2rem; /* İstediğiniz büyüklüğü buraya yazın */
}

/* Medya sorguları */
@media (max-width: 1200px) {
    .login-container {
        width: 90%;
        height: 500px;
    }
}

@media (max-width: 992px) {
    .login-container {
        flex-direction: column;
        height: auto;
    }
    .left-side {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .login-container {
        width: 95%;
        margin: 30px auto;
    }
    .left-side {
        padding: 20px;
    }
    .navbar-brand h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .login-container {
        box-shadow: none;
        margin: 0;
    }
    .left-side {
        border-radius: 0;
    }
}


 /* <!-- artisticcontainer İçin --> */

.artistic-container {
  position: relative;
  width: 100%;
  height: 40vh;
  overflow: hidden;
  background-color: #a4c639;
  display: flex;
}


.image-container {
  width: 30%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.image-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: 30%;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.2) 51%);
  transform: rotate(-20deg);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(-20deg) scale(1.5);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 70% 100%, 0 100%);
}

.text-container {
  width: 70%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.text-container::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') 0 0 / 20% 20%;
	animation: rotate 30s linear infinite;
	z-index: 0;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

.text-slide {
  position: absolute;
  width: 60%;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.text-slide.active {
  opacity: 1;
}

.icon-container {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  color: #ffffff;
}

.text-slide h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.text-slide p {
  font-size: 1.5rem;
  color: #e0e0e0;
}

@media (max-width: 768px) {
  .artistic-container {
    flex-direction: column;
  }

  .image-container {
    width: 100%;
    height: 30%;
  }

  .image-container img {
    transform: none;
    clip-path: none;
  }

  .text-container {
    width: 80%;
    height: 70%;
  }
}