@font-face {
    font-family:'IRANSans-web';
    src: url('./fonts/IRANSans-web.eot');
    src: url('./fonts/IRANSans-web.eot?#iefix') format('IRANSans-web-opentype'),
         url('./fonts/IRANSans-web.woff') format('woff'),
         url('./fonts/IRANSans-web.ttf') format('truetype');
    font-style:normal;
    font-weight:normal;
}
@font-face {
    font-family:'Montserrat-Bold';
    src: url('./fonts/Montserrat-Bold.eot');
    src: url('./fonts/Montserrat-Bold.eot?#iefix') format('Montserrat-Bold-opentype'),
         url('./fonts/Montserrat-Bold.woff') format('woff'),
         url('./fonts/Montserrat-Bold.ttf') format('truetype');
    font-style:normal;
    font-weight:normal;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	direction: rtl;
}
body {
	font-family: IRANSans-web !important;
    font-style: normal;
    font-weight: 1000;
    font-size:12px;
	background: white;
	text-align: center;
	
}

.header {
	position: relative;
	width: 100%;
	height: 150px;
	background: linear-gradient(135deg, #6a11cb, #2575fc, #ff0080, #ff8c00);
	background-size: 300% 300%;
	animation: gradientAnimation 6s infinite alternate;
}

@keyframes gradientAnimation {
	0% { background-position: 0% 50%; }
	100% { background-position: 100% 50%; }
}


.white-circle {
	position: absolute;
	bottom: -50px;
	left: 51%;
	transform: translateX(-51%);
	width: 100%;
	height: 100px;
	background: white;
	border-radius: 100% 100% 0 0;
}
.profile-container {
	position: relative;
	margin-top: -100px;
	margin-bottom: 30px;
}
.profile-pic {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 4px solid white;
	-moz-box-shadow: 0 3px 5px #ccc;
	-webkit-box-shadow: 0 3px 5px #ccc;
	-o-box-shadow: 0 3px 5px #ccc;
	-ms-box-shadow: 0 3px 5px #ccc;
	box-shadow: 0 3px 5px #ccc;
}
.title {
	font-size: 22px;
	font-weight: bold;
	margin-top: 10px;
}
.description {
	font-size: 14px;
	color: #666;
	padding: 0 15px;
}
.gallery {
    margin-top: 40px;
}
.slider-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.2);
}
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}
.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active {
    opacity: 1;
}
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
	width: 40px;
	height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
	z-index: 10;
	border-radius: 50%;
	
}
.nav-btn:hover {
    background-color: rgba(0,0,0,0.8);
}

#prev { left: 10px; }
#next { right: 10px; }

.video-container {
	display: none;
	position: relative;
    width: 80%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.2);
}
.player {
    display: flex;
    width: 100%;
    height: 100%;
}

.fa {
  padding: 20px;
  font-size: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}
.fa:hover {
  opacity: 0.7;
}

.fa-instagram {
  background: #cb2027;
  color: white;
  width: 70px;
  height: 70px;
}
.fa-telegram {
  background: #55ACEE;
  color: white;
  width: 70px;
  height: 70px;
}
.social-links{
	margin-top: 30px;
	margin-bottom: 30px;
}
.social-links .icons {
    display: flex;
    justify-content: center;
    gap: 10px;
	margin-top: 20px;
}
.buttons{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.btn {
  font-family: IRANSans-web !important;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto;
  padding: 0;
  overflow: hidden;
  border-width: 0;
  outline: none;
  width:300px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
  background-color: #2ecc71;
  color: #ecf0f1;
  transition: background-color .3s;
}
.btn span{
	display: flex;
	align-items: center;
}
.btn img{
    width: 25px;
    height: 25px;
	margin-left: 8px;
	vertical-align:middle;
  }

.btn:hover, .btn:focus {
  background-color: #27ae60;
}

.btn > * {
  position: relative;
}

.btn span {
  display: block;
  padding: 12px 24px;
}

.btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  padding-top: 0;
  border-radius: 100%;
  background-color: rgba(236, 240, 241, .3);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.btn:active:before {
  width: 120%;
  padding-top: 120%;
  transition: width .2s ease-out, padding-top .2s ease-out;
}

/* Styles, not important */
*, *:before, *:after {
  box-sizing: border-box;
}

.btn.orange {
  background-color: #e67e22;
}

.btn.orange:hover, .btn.orange:focus {
  background-color: #d35400;
}
.btn.blue {
 /* background-color: #0077ff; */
	color: black !important;
	background-color: transparent !important;
	border: 1px solid #2C9DE0;
}
.btn.blue:hover, .btn.blue:focus {
  background-color: #2C9DE0 !important;
  color: white !important;
}

.btn.blue:hover, .btn.blue:focus {
  background-color: #2C9DE0;
}

.btn.green {
 /* background-color: #0077ff; */
	color: black !important;
	background-color: transparent !important;
	border: 1px solid #00FFC3;
}
.btn.green:hover, .btn.green:focus {
  background-color: #00FF1C73 !important;
  color: black !important;
}

.btn.green:hover, .btn.green:focus {
  background-color: #00FF1C73;
}


@media (max-width: 768px) {

    .slider-container {
        width: 95%;
        aspect-ratio: 16 / 9;
    }
}