* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    scroll-behavior: smooth;
    transition: all 0.3s ease;
}

body {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-color: #030814;
    background-image: url(BG.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 65%;
    background-position: center;
    height: 100vh;
}


.soon button {
    background-color: #92989F;
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #0088cc;
    color: white;
    padding: 10px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.telegram-button:hover {
    background-color: #0077b3;
}

.telegram-button img {
    width: 20px;
    height: 20px;
}



body.visible {
    opacity: 1;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #030814;
}

::-webkit-scrollbar-thumb {
    background: #244DFE;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0A1A46;
}

h1 {
	font-size: 40px;
  text-align: center;
}

.container-mobile{
	cursor: pointer;
	position: absolute;
	top: 5%;
	right: 5%;
	width: 30px;
	height: 20px;
}

.bars{
	width: 30px;
	height: 4px;
	background: #000;
}

.bars::before,
.bars::after{
	content: '';
	position: absolute;
	width: 30px;
	height: 4px;
	background: #000;
}

.bars::before{
	margin-top: 9px;
}

.bars::after{
	margin-top: 18px;
}

.mobile-nav{
	position: absolute;
	width: 100%;
	height: 30px;
	background: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	right: -200vw;
}

.mobile-nav ul {
	list-style: none;
}

.mobile-nav ul li{
	margin: 50px 0;
}

.mobile-nav ul li a{
	color: #fafafa;
	font-size: 2em;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	opacity: 0;
	pointer-events: none;
}

.mobile-nav ul li a:after{
	content: '';
	width: 100%;
	position: absolute;
	height: 3px;
	border-radius: 5px;
	background: #fff;
	bottom: -10px;
	left: 0;
	transform-origin: left;
	transition: transform .5s ease;
	transform: scaleX(0);
}


.mobile-nav ul li a:hover:after{
	transform: scaleX(1);
}

.mobile-nav .close {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 6%;
	right: 5%;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
}

.mobile-nav h2{
	position: absolute;
	top:5%;
	left: 5%;
	opacity: 0;
	pointer-events: none;
	color: #fff;
	font-size: 2em;
}

.mobile-nav .close div::before,
.mobile-nav .close div::after{
	content: '';
	position: absolute;
	width: 30px;
	height: 4px;
	background: #fff;
	transition: background .5s ease;
}
.mobile-nav .close div::before{
	transform: rotate(-45deg);
}

.mobile-nav .close div::after{
	transform: rotate(45deg);
}

.mobile-nav .close:hover div::before,
.mobile-nav .close:hover div::after{
	background: rgb(209, 3, 3);
}

@media (max-width: 992px){
  h1{
    font-size: 25px;
  }
}

.navbar {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    /* position: sticky; */
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 2100px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

#navbar__logo img {
    width: 120px;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 .5rem;
    font-size: 1.4rem;
}

.navbar__item a:hover {
    color: #6c8bff;
    transition: all 0.3s ease-out;
}

.buttons-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.cart {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 20px;
    margin-left: 16px;
    border: none;
    border-radius: 20px;
    background-color: #244DFE;
}

.cart a {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
}

.lang-selector {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
}

.lang-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background-color: #030814;
    border: 3px solid #091128;
    border-radius: 12px;
    display: none;
    list-style: none;
    padding: 5px 0;
    z-index: 999;
    box-shadow: #091128 4px 5px 0px;
}

.language-icon {
    display: grid;
    grid-template-columns: 2fr 4fr;
    place-items: center;
    text-align: center;
    column-gap: 6px;
    width: 100%;
}


.language-icon img {
    height: 4vh;
}

.lang-menu li {
    padding: 8px 15px;
    cursor: pointer;
    color: #fff;
    transition: all 0.2s ease;
}

.lang-menu li:hover {
    background-color: #091128;
    color: #92989F;
}


.buttons-nav .lang-btn {
    padding: 8px 10px;
    margin-left: 16px;
    border: none;
    border-radius: 10px;
    background-color: #091128;
}

.buttons-nav .lang-btn img {
    height: 20px;
}

/* Base styles */
.navbar {
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.navbar__item .navbar__links {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar__item .navbar__links:hover {
    color: #007bff;
}

.buttons-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}


.navbar__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background: #244DFE;
    margin: 4px 0;
    transition: 0.4s;
}

.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 60vh;
    z-index: 1;
    width: 100%;
    max-width: 2100px;
    padding: 0 50px;
}

.main__content {
    text-align: center;
}

.main__content h1 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 100;
}

.main__content h2 {
    font-size: 2.2rem;
    color: #fff;
    font-weight: 100;
    padding-bottom: 15px;
}

.button-container {
    position: relative;
    display: inline-block;
    border-radius: 12px;
}

.main__img--container {
    text-align: center;
}

#main__img {
    height: 50%;
    width: 50%;
}

#pargh {
    color: #92989F;
    font-size: 1.6rem;
    text-align: center;
    margin-left: 200px;
}

.hr__main {
    background-color: #091128;
    padding: 4px;
    width: 100%;
    border: none;
    margin-top: 10vh;
}

.second__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 100vh;
    z-index: 1;
    width: 100%;
    max-width: 2100px;
    padding: 0 50px;
}

.second__content {
    text-align: center;

}

.second__content h1 {
    color: #fff;
    font-size: 5rem;
    font-weight: 700;
    padding-left: 20px;
}

.second__content h2 {
    color: #92989F;
    font-size: 2rem;
    font-weight: 100;
}

.second__img--container {
    text-align: center;
}

#second__img {
    width: 90%;
    height: 90%;
}

.hr__second {
    background-color: #091128;
    padding: 4px;
    width: 100%;
    border: none;
}

.third__container {
    display: grid;
    place-items: center;
    height: 40vh;
    z-index: 1;
}

.third__content h1 {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 100;
}

.third__box {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 10%;
    text-align: center;
    place-items: center;
    color: #92989F;
}

.third__box p {
    font-size: 2rem;
    font-weight: 100;
}

.third__box h4 {
    font-size: 1.5rem;
    font-weight: 100;
}

.box__1 {
    background-color: #0A1A46;
    padding: 8px 60px;
    border-radius: 8px;
    border: 4px solid rgba(9, 17, 40, 1);
}

.box__2 {
    background-color: #0A1A46;
    padding: 8px 70px;
    border-radius: 8px;
    border: 4px solid rgba(9, 17, 40, 1);
}

.box__3 {
    background-color: #0A1A46;
    padding: 8px 80px;
    border-radius: 8px;
    border: 4px solid rgba(9, 17, 40, 1);
}

.hr__third {
    background-color: #091128;
    padding: 4px;
    width: 100%;
    border: none;
    margin-top: 15vh;
}

.fourth__container {
    display: grid;
    place-items: center;
    padding: 10vh 0;
}

.fourth__content h1 {
    color: #fff;
    text-align: center;
    font-weight: 100;
    font-size: 2.4rem;
}

.slider-wrapper {
    display: grid;
    width: 100%;
    max-width: 1800px;
    padding-top: 44px;
}

.slider-title h1 {
    color: #fff;
    font-size: 2.5rem
}

.temple1__container {
    outline: 4px solid #091128;
    border-radius: 20px;
}

.temple1__content h1 {
    color: #fff;
    padding: 22px;
    padding-left: 8px;
    font-size: 1.8rem;
    text-align: start;
}

.temple1__content__img {
    display: inline-flex;
    width: 100%;
    
}

.temple1__content__img img {
    max-width: 10%;
    height: 35px;
    margin-top: 20px;
    margin-left: 12px;
}

.hr__temple1 {
    background-color: #091128;
    padding: 2px;
    width: 100%;
    border: none;
}

.temple1__stars {
    color: #92989F;
    font-weight: bold;
    padding: 22px;
    padding-bottom: 15px;
}

.temple1__acc {
    color: #92989F;
    font-weight: bold;
    padding: 0 22px;
    padding-bottom: 15px;
}

.temple1__price {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0 22px;
    padding-bottom: 15px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.slider-title {
    font-size: 1.4rem;
    font-weight: bold;
}

.slider-buttons .arrow {
    outline-style: solid;
    background-color: #091128;
    color: #244DFE;
    outline: 1px solid #244DFE;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 4px;
    margin-left: 6px;
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.slides {
    display: flex;
    transition: transform 0.4s ease;
}

.slide {
    flex: 0 0 auto;
    width: 100%;
    padding: 10px;
}

.slide img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.slides-grid {
    display: grid;
    grid-template-columns: 3fr 3fr 3fr;
    width: 100%;
    column-gap: 20px;
}

.reviews__content h1 {
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
    padding-top: 40px;
}

.reviews__content h2 {
    color: #92989F;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 100;
}

.reviews__box {
    display: grid;
    justify-self: center;
    width: 100%;
    padding-top: 66px;
    gap: 22px;
}

.grid__temple1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 12px;
}

.grid__temple2 {
    display: grid;
    grid-template-columns: 1.5fr 2fr 3fr;
    column-gap: 12px;
}

.grid__temple3 {
    display: grid;
    grid-template-columns: 5fr 7fr;
    column-gap: 12px;
}

.review__box1 {
    border: 6px solid #091128;
    /* padding: 22px 66px; */
    border-radius: 22px;
}

.reviewsbox1__header {
    display: flex;
    justify-content: space-between;
    color: #92989F;
    padding: 12px;
}

.reviewsbox1__header h2 {
    font-weight: 100;
}

.review__box1 h3 {
    padding-right: 150px;
    padding-left: 12px;
    color: #fff;
}

.review__box1 h4 {
    padding-right: 150px;
    padding-left: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
    color: #92989F;
}

.review-form-wrapper {
    display: grid;
    place-items: center;
    padding: 40px 0;
}

#reviewForm {
    display: none;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    width: 100%;
    background-color: #0b1225;
    border-radius: 22px;
    border: 4px solid #091128;
    padding: 25px;
}

#reviewForm input,
#reviewForm textarea {
    background-color: #10182e;
    color: #fff;
    border: 1px solid #2a2f3a;
    border-radius: 12px;
    padding: 12px;
    font-size: 1rem;
    transition: border 0.3s ease;
    width: 100%;
}

#reviewForm input::placeholder,
#reviewForm textarea::placeholder {
    color: #888;
}

#reviewForm input:focus,
#reviewForm textarea:focus {
    border: 2px #244DFE solid;
    outline: none;
}

#reviewForm #star-rating {
    font-size: 24px;
    cursor: pointer;
    user-select: none;
    color: #e4e5e9;
    transition: color 0.2s;
}

#reviewForm button {
    background-color: #244DFE;
    color: #fff;
    font-size: 1.2rem;
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#reviewForm button:hover {
    background-color: #0A1A46;
}

#star-rating span {
    margin-right: 5px;
}


.faqs__container {
    margin: 0 auto;
    padding: 20px;
    width: 50%;
}

.faqs__content h1 {
    color: #fff;
    font-size: 2.7rem;
    text-align: center;
}

.faqs__content h2 {
    color: #92989F;
    font-size: 1.7rem;
    text-align: center;
    font-weight: 100;
    padding-bottom: 40px;
}

/* .faqs__grid1 {
    display: grid;
    grid-template-columns: 3fr 5fr;
    gap: 20px;
}

.faqs__grid2 {
    display: grid;
    grid-template-columns: 5fr 3fr;
    gap: 20px;
}

.faqs__grid3 {
    display: grid;
    grid-template-columns: 2fr 4fr 2fr;
    gap: 20px;
} */


.faq-question__answer {
    display: grid;
    width: 100%;
    justify-self: center;
    max-width: 2750px;
    color: #fff;
}

details {
    background-color: #030814;
    border: 4px solid #091128;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

summary {
    position: relative;
    padding: 12px 12px 12px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::before {
    content: "+";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.3s ease, content 0.3s ease;
}

details[open] summary::before {
    content: "×";
    transform: translateY(-50%) rotate(90deg);
    color: #fff;
}

.faq-answer {
    padding: 0 20px 0 20px;
    color: #bbb;
    font-size: 1rem;
    line-height: 1.6;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.4s ease, opacity 0.4s ease;
}

.faq-answer.show {
    height: auto;
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 15px;
    transition: all 0.8s ease;
}

#paymentModal {
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.payment__content {
    background: #030814;
    border: 5px solid #091128;
    filter: drop-shadow(8px 8px 2px #091128);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    padding: 50px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    width: 90%;
    max-width: 500px;
}

.payment__content h2 {
    padding-bottom: 15px;
    font-size: 1.7rem;

}

.payment__content img {
    height: 50px;
    margin-bottom: 15px;
}

.payment__content p {
    font-size: 1.4rem;
}

.payment__content strong {
    color: #244DFE;
}

.cancleBTN {
    padding: 10px 45px;
    cursor: pointer;
    border: none;
    background-color: #0A1A46;
    box-shadow: #0A1A46 -4px 4px 2px;
    color: #acb6c0;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
}

.cancleBTN:hover {
    background-color: #0b1225;
    box-shadow: none;
}

#paymentCodeResult {
    background-color: #030814;
    border: 4px solid #091128;
    border-radius: 12px;
    padding: 10px;
    margin-top: 20px;
    display: none;
    text-align: start;
}

#paymentCodeResult h3 {
    text-decoration: underline;
    color: #244DFE;
    padding-bottom: 8px;
}

#paymentCodeResult p {
    font-weight: bold;
    color: #92989F;
}


footer {
    padding-top: 50px;
    padding-bottom: 10px;
}

footer h2 {
    color: #92989F;
    font-size: 1rem;
    font-weight: 100;
    text-align: center;
}



.modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 320px;
    border-radius: 10px;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.payBTN {
    background-color: #244DFE;
    border: none;
    padding: 12px 40px;
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: all ease 0.5s;
}

.payBTN:hover {
    background-color: #0A1A46;
    padding: 16px 45px;
}




















