/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Ubuntu:wght@300;700&display=swap');

/* Universal styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    scroll-behavior: smooth;
}

/* Root variables for easy customization */
:root {
    --bg: #000000;
    --clr-1: #00c2ff;
    --clr-2: #33ff8c;
    --clr-3: #ffc640;
    --clr-4: #e54cff;
    --blur: 1rem;
    --fs: clamp(3rem, 8vw, 7rem);
    --ls: clamp(-1.75px, -0.25vw, -3.5px);
    --white: hsl(0, 0%, 100%);
    --light-pink: hsl(275, 100%, 97%);
    --grayish-purple: hsl(292, 16%, 49%);
    --dark-purple: #800080;
}

/* Body styles */
body {
  background: linear-gradient(to right, #1e1e1e, #2b132b, #550255);
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    line-height: 5rem;
    font-family: 'Ubuntu', sans-serif;
    z-index: 1000;
    backdrop-filter: blur(50px); /* Background blur effect */
    background-color: rgba(0, 0, 0, 0.45); /* Transparent background */
    border: 0.2px solid rgba(0, 0, 0, 0.20);
    border-radius: 10px;
    margin-top: 2%;
    margin-right: 5%;
    margin-left: 5%;
    position: fixed;
    width: 90%;
}

/* Logo styles inside navbar */
.left img {
    width: 30%;
    height: 30%;
    cursor: pointer;
    color: white;
    display: flex;
}

/* Hidden checkbox and toggle button for mobile menu */
.checkBtn {
    display: none;
}

#check {
    display: none;
}

/* Mobile menu toggle button */
.checkBtn {
    cursor: pointer;
    font-size: 30px;
    float: right;
    color: var(--dark-purple);
    line-height: 80px;
}

/* Navigation links styles */
.right ul {
    display: flex;
    list-style: none;
}

.right ul li a {
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #999999;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.5s;
}

.right ul li a:hover {
    border-radius: 7px;
    color: rgb(255, 255, 255);
}

/* Responsive navbar adjustments */
@media screen and (max-width: 1400px) {
    .right ul li a {
        font-size: 1rem;
    }

    .left img {
        width: 25%;
        height: 25%;
        margin-left: 5%;
    }
}

@media screen and (max-width: 1300px) {
    .right ul li a {
        font-size: 0.9rem;
        padding: 5px 15px;
    }
}

@media screen and (max-width: 1161px) {
    .right ul li a {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 1072px) {
    .right ul li a {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

/* Mobile menu styles */
@media screen and (max-width: 960px) {
    .list {
        width: 100%;
        height: 100vh;
        background-color: rgb(22, 7, 36);
        text-align: center;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 4rem;
        left: 100%;
        transition: all 1s;
    }

    #check {
        display: none;
    }

    .checkBtn {
        display: block;
    }

    #check:checked ~ ul {
        left: 0%;
    }
}

/* Small screen adjustments for navbar */
@media screen and (max-width: 600px) {
    .navbar {
        display: block;
    }

    .left img {
        width: 17%;
        height: 17%;
        margin-left: 5%;
        margin-top: 3%;
    }

    .checkBtn {
        margin-top: -13%;
        margin-right: 10%;
    }
}

/* Mobile screen size adjustments */
@media screen and (max-width: 500px) {
    .left img {
        width: 16%;
        height: 16%;
        margin-top: 5%;
    }
}

/* Form container setup */
.form-container {
  position: relative;
  width: 400px;
  height: 470px;
  background: #1c1c1c;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 25%;
}

/* Animated gradient background for form container */
.form-container::before,
.form-container::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 400px;
  height: 470px;
  background: linear-gradient(0deg, transparent, transparent, #00eeff, #00eeff, #00eeff);
  z-index: 1;
  transform-origin: bottom right;
  animation: animate 6s linear infinite;
}

.form-container::after {
  animation-delay: -3s;
}

/* Border animation around the form container */
.border-line::before,
.border-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 400px;
  height: 470px;
  background: linear-gradient(0deg, transparent, transparent, #ff00bb, #ff00bb, #ff00bb);
  z-index: 1;
  transform-origin: bottom right;
  animation: animate 6s linear infinite;
}

.border-line::before {
  animation-delay: -1.5s;
}

.border-line::after {
  animation-delay: -4.5s;
}

/* Animation keyframes for rotation effect */
@keyframes animate {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

/* Form content styling */
.form-container form {
  position: absolute;
  inset: 4px;
  background: #222;
  padding: 50px 40px;
  border-radius: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

/* Heading styling inside the form */
.form-container form h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
}

/* Input box styling */
.input-box {
  position: relative;
  width: 300px;
  margin-top: 20px;
}

.input-box input {
  position: relative;
  width: 100%;
  padding: 20px 10px 10px;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  color: #23242a;
  font-size: 16px;
  letter-spacing: 1px;
  transition: 0.5s;
  z-index: 10;
}

.input-box input::placeholder {
  position: absolute;
  left: 0;
  top: 4px;
  padding: 20px 0px 10px;
  pointer-events: none;
  color: #8f8f8f;
  font-size: 16px;
  letter-spacing: 1px;
  transition: 0.5s;
  z-index: 10;
}

/* Placeholder transition on focus and valid input */
.input-box input:valid ~ input::placeholder,
.input-box input:focus ~ input::placeholder {
  color: #fff;
  font-size: 12px;
  transform: translateY(-34px);
}

/* Bottom line animation inside input box */
.input-box i {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: 0.5s;
  pointer-events: none;
}

.input-box input:valid ~ i,
.input-box input:focus ~ i {
  height: 44px;
}

/* Important links styling */
.imp-links {
  display: flex;
  justify-content: space-between;
}

.imp-links a {
  color: #ececec;
  font-size: 14px;
  text-decoration: none;
  margin: 15px 0;
}

.imp-links a:hover {
  color: #fff;
}

/* Submit button styling */
.form-container button {
  width: 40%;
  border: none;
  outline: none;
  padding: 10px;
  border-radius: 45px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 10px;
  cursor: pointer;
}

/* Button active state */
.form-container button:active {
  opacity: 0.8;
}


@media (max-width: 600px) {
    nav {
        flex-direction: column;
    }

    nav a {
        margin: 5px 0;
    }
}

/* Home Section */
/* carousel */

.carousel{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.carousel .list-1 .item{
    width: 180px;
    height: 250px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 1;
    transition: 1s;
}

.carousel .list-1 .item:nth-child(1),
.carousel .list-1 .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list-1 .item:nth-child(3){
    left: 67%;
}

.carousel .list-1 .item:nth-child(4){
    left: calc(67% + 200px);
}

.carousel .list-1 .item:nth-child(5){
    left: calc(67% + 400px);
}

.carousel .list-1 .item:nth-child(6){
    left: calc(67% + 600px);
}

.carousel .list-1 .item:nth-child(n+7){
    left: calc(67% + 800px);
    opacity: 0;
}


.list-1 .item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #fff;
    display: none;
}

.list-1 .item:nth-child(2) .content{
    display: block;
}

.content .title-0{
    font-size: 100px;
    text-transform: uppercase;
    color: white;
    font-weight: bold;
    text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.44);
    line-height: 1;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .des{
    margin-top: 30px;
    margin-bottom: 20px;
    margin-right: -50%;
    font-size: 22px;
    margin-left: 5px;
    text-shadow: -5px 2px 10px rgba(0, 0, 0, 0.64);
    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn{
    margin-left: 5px;
    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
    margin-top: 30px;
}

.content .btn button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border: 2px solid #fff;
    border-radius: 20px;
}

.content .btn button:nth-child(1){
    margin-right: 15px;
    background-color:transparent;
    font-size: 1.2rem;
    color: white;
}

.content .btn button:nth-child(1):hover{
    background-color: white;
    color: rgb(0, 0, 0);
    transition: 0.5s;
}

.content .btn button:nth-child(2){
    background: var(--dark-purple);
    color: white;
    border: 2px solid var(--dark-purple);
    transition: 0.5s;
    font-size: 1.2rem;
}

.content .btn button:nth-child(2):hover{
    background-color: transparent;
    color: #fff;
    border-color: white;
    border-radius: 1px solid;
}


@keyframes animate {
    
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* Carousel */


/* next prev arrows */

.arrows{
    position: absolute;
    top: 85%;
    right: 40%;
    z-index: 10;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color:var(--light-pink);
    color: #000000;
    border: none;
    outline: none;
    font-size: 18px;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}

.arrows button:hover{
    background: var(--dark-purple);
    color: #ffffff;
}


/* time running */
.carousel .timeRunning{
    position: absolute;
    z-index: 10;
    width: 0%;
    height: 4px;
    background-color: var(--dark-purple);
    left: 0;
    top: 0;
    animation: runningTime 7s linear 1 forwards;
}

@keyframes runningTime {
    
    from{width: 0%;}
    to{width: 100%;}

}


/* Responsive Design */


@media screen and (max-width:1300px) {
    .item .title-0 {
        font-size: 50px;
    }

    .item .des {
        font-size: 20px;
    }

    .content .btn button{
        padding: 9px 18px;
    }

    .arrows button{
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media screen and (max-width:1150px) {
    .item .title-0 {
        font-size: 40px;
    }

    .item .des {
        font-size: 17px;
    }
}

@media screen and (max-width: 999px){
    
    header{
        padding-left: 50px;
    }

    .list-1 .item .content{
        left: 50px;
    }

    .content .title-0, .content .name{
        font-size: 70px;
    }

    .content .des{
        font-size: 16px;
        margin-right: 10%;
    }

}

@media screen and (max-width: 690px){
    header nav a{
        font-size: 14px;
        margin-right: 0;
    }

    .list-1 .item .content{
        top: 40%;
    }

    .content .title-0, .content .name{
        font-size: 45px;
    }

    .content .btn button{
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Gallery */

/* Gallery section */

#Gallery {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  width: 100vw;
  min-height: 60vh;
  background: linear-gradient(to right, #1e1e1e, #2b132b, #550255);
  font: normal normal 400 12pt / 2cap "Golos Text", sans-serif;
  color: white;
  overflow-x: hidden;
}

article {
  width: 100%;
  max-width: 1265px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  margin: 50px 0;
}

figure {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;  /* Changed to center alignment */
  gap: 20px;
  margin: 1em 0px;
}



figcaption, figure, main {
    display: block;
}


figure figcaption {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  flex: 1;
}

figure figcaption h1 {
  font: normal normal 400 240% / 1.5cap "Della Respira", serif;
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  border-bottom: 1px solid #333;
  text-wrap: balance;
}

figure figcaption p {
  color: #bbb;
  padding-left: 30px;
  margin: 0;
  border-left: 10px solid;
  border-image: repeating-linear-gradient(
      43deg,
      white,
      white 4px,
      transparent 5px,
      transparent 9px,
      white 10px
    )
    10;
  text-wrap: pretty;
}

figure figcaption p span:last-of-type {
  display: none;
}

.btn-50 {
  font: normal normal 400 12pt / 2cap "Golos Text", sans-serif;
  margin-left: auto;  /* This will push the button to the right */
  width: 200px;
  height: 50px;
  background-color: transparent;
  border: 1px solid #666;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: -3%;
  margin-right: 3.5%;
}

.btn-50::after {
  position: absolute;
  right: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ccc;
  content: "";
  z-index: -1;
  transition: all 0.3s ease;
}

.btn-50:hover::after {
  right: 0;
  transition: all 0.3s ease;
}

.btn-50 input {
  display: none;
}

.btn-50 label {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-50:hover label {
  color: rgb(255, 255, 5);
  transition: all 0.3s ease;
}

.btn-50 label span {
  display: none;
}

.btn-50:not(:has(input:checked)) label span:first-of-type {
  display: initial;
}

.btn-50:has(input:checked) label span:last-of-type {
  display: initial;
}

.photos {
  width: 100%;
  height: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: stretch;
  border-right: 1px solid #555;
  border-bottom: 1px solid #555;
  border-left: 1px solid #555;
  transition: all 0.5s ease;
  position: relative;
}

.photos::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(
    90deg,
    #ff00bb,
    #ff00b6,
    #ff00a8,
    #ff0b93,
    #ff347a,
    #ff585f,
    #ff7a44,
    #ff9829,
    #ffb20c,
    #ffc500,
    #ffd100,
    #ffd500
  );
  content: "";
  z-index: 2;
  transition: all 1.2s ease;
}

figure:has(.btn-50 input:checked) ~ .photos::before {
  width: 0px;
  transition: all 1.2s ease;
}

.pic {
  flex-grow: 1;
  opacity: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  transition: all 0.4s ease;
}

figure:has(.btn-50 input:checked) ~ .photos {
  height: 220px;
  transition: all 0.5s ease;
}

figure:has(.btn-50 input:checked) ~ .photos .pic,
figure:has(.btn-50 input:checked)
  ~ .photos
  .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic {
  opacity: 1;
  flex-grow: 2;
  transition-delay: 0.15s;
}

figure:has(.btn-50 input:checked) ~ .photos .pic + .pic,
figure:has(.btn-50 input:checked)
  ~ .photos
  .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic {
  opacity: 1;
  transition-delay: 0.3s;
  flex-grow: 3;
}

figure:has(.btn-50 input:checked) ~ .photos .pic + .pic + .pic,
figure:has(.btn-50 input:checked)
  ~ .photos
  .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic {
  opacity: 1;
  transition-delay: 0.45s;
  flex-grow: 4;
}

figure:has(.btn-50 input:checked) ~ .photos .pic + .pic + .pic + .pic,
figure:has(.btn-50 input:checked)
  ~ .photos
  .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic {
  opacity: 1;
  transition-delay: 0.6s;
  flex-grow: 5;
}

figure:has(.btn-50 input:checked) ~ .photos .pic + .pic + .pic + .pic + .pic,
figure:has(.btn-50 input:checked)
  ~ .photos
  .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic
  + .pic {
  opacity: 1;
  transition-delay: 0.75s;
  flex-grow: 6;
}

figure:has(.btn-50 input:checked) ~ .photos .pic + .pic + .pic + .pic + .pic + .pic {
  opacity: 1;
  transition-delay: 0.9s;
  flex-grow: 7;
}

.photos .pic:hover {
  flex-grow: 2 !important;
}

.photos:has(.pic:hover) .pic:not(:hover) {
  flex-grow: 1 !important;
}

.photos:has(.pic:hover) .pic {
  transition-delay: 0s !important;
}

figure:has(.btn-50 input:checked) ~ .photos .pic {
  animation: pointerFix 1.7s linear 0s 1 normal;
}

@keyframes pointerFix {
  0% {
    pointer-events: none;
  }
  99% {
    pointer-events: none;
  }
  100% {
    pointer-events: initial;
  }
}

/*Gallery Images */

.photos .pic:first-of-type {
  background-image: url("https://picsum.photos/id/337/500/500");
}

.photos .pic + .pic {
  background-image: url("https://picsum.photos/id/515/500/500");
}

.photos .pic + .pic + .pic {
  background-image: url("https://picsum.photos/id/424/500/500");
}

.photos .pic + .pic + .pic + .pic {
  background-image: url("https://picsum.photos/id/849/500/500");
}

.photos .pic + .pic + .pic + .pic + .pic {
  background-image: url("https://picsum.photos/id/476/500/500");
}

.photos .pic + .pic + .pic + .pic + .pic + .pic {
  background-image: url("https://picsum.photos/id/57/500/500");
}

.photos .pic + .pic + .pic + .pic + .pic + .pic + .pic {
  background-image: url("https://picsum.photos/id/82/500/500");
}

.photos .pic + .pic + .pic + .pic + .pic + .pic + .pic + .pic {
  background-image: url("https://picsum.photos/id/680/500/500");
}

.photos .pic + .pic + .pic + .pic + .pic + .pic + .pic + .pic + .pic {
  background-image: url("https://picsum.photos/id/553/500/500");
}

.photos .pic + .pic + .pic + .pic + .pic + .pic + .pic + .pic + .pic + .pic {
  background-image: url("https://picsum.photos/id/193/500/500");
}

.photos .pic:last-of-type {
  background-image: url("https://picsum.photos/id/565/500/500");
}

@media (max-width: 900px) {
  figure {
    flex-direction: column;
    align-items: flex-start;
  }
  figure figcaption {
    margin-bottom: 20px;
  }
  figure figcaption p span:first-of-type {
    display: none;
  }
  figure figcaption p span:last-of-type {
    display: initial;
  }
  .btn-50 {
    margin-left: auto;  /* Keep the button on the right even in mobile view */
    width: 200px;
  }
}

@media (max-width: 700px) {
  figure figcaption {
    max-width: unset;
  }
  .btn-50 {
    max-width: unset;
  }
}

@media (max-width: 600px) {
  .photos {
    flex-direction: column;
  }
  figure:has(.btn-50 input:checked) ~ .photos {
    height: 1000px;
  }
}


/* Testinomials sections */

/* Main testimonials section */
.Testinomials {
  font-weight: bold;
  font-family: "Poppins", serif;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(to right, #1e1e1e, #2b132b, #550255);
  display: flex;
  flex-direction: column;
}

/* Testimonials heading */
.Testinomials h2 {
  padding-top: 40px;
  font-size: 2.9em;
}

/* Container for testimonials cards */
.container {
  position: relative;
  width: 100%;
  max-width: 1150px;
  padding: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

/* Individual testimonial card */
.container .card-1 {
  position: relative;
  width: 260px;
  height: 430px;
  background-color: #fff;
  margin: 20px 10px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0, 0, 0, .2);
  transition: .5s ease-in-out;
}

/* Card blur effect on hover within container */
.container:hover .card-1 {
  filter: blur(5px);
  transform: scale(.9);
  opacity: .5;
}

/* Card hover effect */
.container .card-1:hover {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

/* Italicized text in card content */
.content-2 p {
  font-style: italic;
}

/* Circle effect on hover for card */
.container .card-1:hover .circle {
  clip-path: circle(600px);
}

/* Color change for text and links on card hover */
.container .card-1:hover .content-2 p {
  color: #fff;
}

.container .card-1:hover .content-2 a {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, .2),
              -1px -1px 2px rgba(255, 255, 255, .4);
}

/* Active state for links within card */
.container .card-1 .content-2 a:active {
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .1),
              inset 5px 5px 5px rgba(0, 0, 0, .04),
              inset -5px -5px 5px rgba(255, 255, 255, .07),
              inset -1px -1px 2px rgba(255, 255, 255, .4);
}

/* Circular effect inside the card */
.container .card-1 .circle {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  clip-path: circle(180px at center 0);
  text-align: center;
  transition: 1s ease-in-out;
}

/* Title inside card */
.container .card-1 h2 {
  color: #fff;
  font-size: 4.5em;
  padding: 30px 0;
}

/* Content positioning inside the card */
.container .card-1 .content-2 {
  position: absolute;
  bottom: 10px;
  padding: 20px;
  text-align: center;
}

/* Text inside card content */
.container .card-1 .content-2 p {
  color: #666;
  transition: .5s ease-in-out;
}

/* Button inside card */
.container .card-1 .content-2 a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  margin-top: 20px;
  transition: .8s ease-in-out;
}


.card-1 img {
    border-radius: 100px;
    width: 150px;
    height: 150px;
    margin-top: 15px;
    transition: .5s ease-in-out;
    border: 3px solid #fff;
    box-shadow: 1px 1px 20px -1px black;
}

.container .card-1:hover .content-2 a {
    transform: translateY(-8px);
}

.container .card-1:nth-child(1) .circle,
.container .card-1:nth-child(1) .content-2 a {
    background: #ffaf00;
}

.container .card-1:nth-child(2) .circle,
.container .card-1:nth-child(2) .content-2 a {
    background: #e56c64;
}

.container .card-1:nth-child(3) .circle,
.container .card-1:nth-child(3) .content-2 a {
    background: #da2268;
}

.container .card-1:nth-child(4) .circle,
.container .card-1:nth-child(4) .content-2 a {
    background: #bb02ff;
}

@media (max-width: 1024px) {
    .container {
        max-width: 800px;
    }
    .Testinomials h2 {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 600px;
    }
    .container .card-1 {
        width: 100%;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 10px;
    }
    .Testinomials h2 {
        font-size: 2em;
    }
    .container .card-1 {
        width: 100%;
        height: auto;
        padding: 10px;
    }
}

/* Aurora styles */

.body-aurora {
    min-height: 50vh;
    display: grid;
    place-items: center;
    background: linear-gradient(to right, #1e1e1e, #2b132b, #550255);
    color: #fff;
    font-family: "Inter", "DM Sans", Arial, sans-serif;
    overflow: hidden;
}

.content-3 {
    text-align: center;
}

.title {
    font-size: var(--fs);
    font-weight: 800;
    letter-spacing: var(--ls);
    position: relative;
    overflow: hidden;
 /* background: var(--bg); */
    background-color: transparent;
    margin: 0;
}

.aurora {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    mix-blend-mode: darken;
    pointer-events: none;
}

.aurora__item {
    overflow: hidden;
    position: absolute;
    width: 60vw;
    height: 60vw;
    background-color: var(--clr-1);
    border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
    filter: blur(var(--blur));
    mix-blend-mode: overlay;
}

.aurora__item:nth-of-type(1) {
    top: -50%;
    animation: aurora-border 6s ease-in-out infinite,
        aurora-1 5s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(2) {
    background-color: var(--clr-3);
    right: 0;
    top: 0;
    animation: aurora-border 6s ease-in-out infinite,
        aurora-2 5s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(3) {
    background-color: var(--clr-2);
    left: 0;
    bottom: 0;
    animation: aurora-border 6s ease-in-out infinite,
        aurora-3 3s ease-in-out infinite alternate;
}

.aurora__item:nth-of-type(4) {
    background-color: var(--clr-4);
    right: 0;
    bottom: -50%;
    animation: aurora-border 6s ease-in-out infinite,
        aurora-4 13s ease-in-out infinite alternate;
}

@keyframes aurora-1 {
    0% {
        top: 0;
        right: 0;
    }

    50% {
        top: 100%;
        right: 75%;
    }

    75% {
        top: 100%;
        right: 25%;
    }

    100% {
        top: 0;
        right: 0;
    }
}

@keyframes aurora-2 {
    0% {
        top: -50%;
        left: 0%;
    }

    60% {
        top: 100%;
        left: 75%;
    }

    85% {
        top: 100%;
        left: 25%;
    }

    100% {
        top: -50%;
        left: 0%;
    }
}

@keyframes aurora-3 {
    0% {
        bottom: 0;
        left: 0;
    }

    40% {
        bottom: 100%;
        left: 75%;
    }

    65% {
        bottom: 40%;
        left: 50%;
    }

    100% {
        bottom: 0;
        left: 0;
    }
}

@keyframes aurora-4 {
    0% {
        bottom: -50%;
        right: 0;
    }

    50% {
        bottom: 0%;
        right: 40%;
    }

    90% {
        bottom: 50%;
        right: 25%;
    }

    100% {
        bottom: -50%;
        right: 0;
    }
}

@keyframes aurora-border {
    0% {
        border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
    }

    25% {
        border-radius: 47% 29% 39% 49% / 61% 19% 66% 26%;
    }

    50% {
        border-radius: 57% 23% 47% 72% / 63% 17% 66% 33%;
    }

    75% {
        border-radius: 28% 49% 29% 100% / 93% 20% 64% 25%;
    }

    100% {
        border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
    }
}

/* Main section for packages */
#Packages {
  height: 100%;
  background-color: transparent;
  margin-top: -40px;
}

/* Remove list styling */
ul {
  list-style: none;
}

/* Main flow container for packages */
.main-flow {
  max-width: 75rem;
  padding: 3em 1.5em;
  display: grid;
  place-items: center;
  font-family: "League Spartan", system-ui, sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
  color: #ddd;
  margin-left: 30px;
}

/* Cards container */
.cards {
  position: relative;
}

/* Inner card layout with flexbox */
.cards__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5em;
}

/* Individual card styling */
.card {
  --flow-space: 0.5em;
  --hsl: var(--hue), var(--saturation), var(--lightness);
  flex: 1 1 14rem;
  padding: 1.5em 2em;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-items: start;
  gap: 1.25em;
  color: #eceff1;
  background-color: #2b2b2b;
  border: 1px solid #eceff133;
  border-radius: 15px;
}

/* Card color variations based on order */
.card:nth-child(1) {
  --hue: 165;
  --saturation: 82.26%;
  --lightness: 51.37%;
}

.card:nth-child(2) {
  --hue: 291.34;
  --saturation: 95.9%;
  --lightness: 61.76%;
}

.card:nth-child(3) {
  --hue: 338.69;
  --saturation: 100%;
  --lightness: 48.04%;
}

/* Bullet point styling inside the card */
.card__bullets {
  line-height: 1.4;
}

.card__bullets li::before {
  display: inline-block;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='16' title='check' fill='%23dddddd'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z' /%3E%3C/svg%3E");
  transform: translatey(0.25ch);
  margin-right: 1ch;
}

/* Card heading style */
.card__heading {
  font-size: 1.05em;
  font-weight: 600;
}

/* Card price style */
.card__price {
  font-size: 1.75em;
  font-weight: 700;
}

/* Spacing between flow elements */
.flow > * + * {
  margin-top: var(--flow-space, 1.25em);
}

/* Call-to-action (CTA) button styling */
.cta {
  display: block;
  align-self: end;
  margin: 1em 0 0.5em 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #0d0d0d;
  padding: 0.7em;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
}

/* Overlay styling with radial gradient */
.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  opacity: var(--opacity, 0);
  -webkit-mask: radial-gradient(
      25rem 25rem at var(--x) var(--y),
      #000 1%,
      transparent 50%
  );
  mask: radial-gradient(
      25rem 25rem at var(--x) var(--y),
      #000 1%,
      transparent 50%
  );
  transition: 400ms mask ease;
  will-change: mask;
}

/* Card styling when overlay is applied */
.overlay .card {
  background-color: hsla(var(--hsl), 0.15);
  border-color: hsla(var(--hsl), 1);
  box-shadow: 0 0 0 1px inset hsl(var(--hsl));
}

/* CTA button when overlay is applied */
.overlay .cta {
  display: block;
  grid-row: -1;
  width: 100%;
  background-color: hsl(var(--hsl));
  box-shadow: 0 0 0 1px hsl(var(--hsl));
}

/* Transition effects on non-overlayed cards */
:not(.overlay) > .card {
  transition: 400ms background ease;
  will-change: background;
}

/* Hover effect on non-overlayed cards */
:not(.overlay) > .card:hover {
  --lightness: 95%;
  background: hsla(var(--hsl), 0.1);
}


@media (min-width: 1250px) {
    #Packages {
        margin-right: 5%;
        margin-left: 5%;
    }

}

@media (min-width: 1370px) {
    #Packages {
        margin-right: 10%;
        margin-left: 10%;
    }
}

/* Contact Form */

/* Contact us section */

input, textarea {
    font-family: "Poppins", serif;
}
.container-1 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to right, #1e1e1e, #2b132b, #550255);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5%;
}

.form {
  width: 100%;
  max-width: 930px;
  background-color: #2b2b2b;
  border-radius: 10px;
  border: 1px solid #f1eeee;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 2;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background: linear-gradient(45deg, #ffaf00, #bb02ff);
  position: relative;
}

.circle-one {
  border-radius: 50%;
  background: linear-gradient(45deg, #ffaf00, #bb02ff);
  position: absolute;
}

.circle-two {
  border-radius: 50%;
  background: linear-gradient(45deg, #ffaf00, #bb02ff);
  position: absolute;
}

.circle-one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle-two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background: linear-gradient(45deg, #ffaf00, #bb02ff);
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title-4 {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn-19 {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #1e1e1e;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.btn-19:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 20px;
  background: #1e1e1e;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #ffffff;
}

.text {
  color: #eceff1;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #eceff1;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #fafafa;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #ffaf00, #bb02ff);
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #ed7c30;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

@media (max-width: 1500px) {
    .container-1 {
        min-height: 40vh;
    }
}

@media (max-width:1300px) {
    .container-1 {
        min-height: 40vh;
    }
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .container-1 {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title-4 {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn-19 {
    padding: 0.45rem 1.2rem;
  }
}

/* FAQs section */

#FAQ {
    background-color: var(--light-pink);
    font-family: "Poppins", serif;
    min-height: 100vh;
    display: grid;
    place-content: center;
}

.btn-icon {
    max-width: 100%;
    display: block;
}

.accordion-btn {
    cursor: pointer;
    background-color: transparent;
    width: 100%;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 0;
}

.accordion-btn:hover{
    color: var(--dark-purple);
}

.container-8 {
    background-color: var(--white);
    max-width: 800px;
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 1rem;
}

.faq-headline {
    display: flex;
    gap: 2rem;
}

.faq-headline h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px;
}

.accordion-container .accordion-item:not(:last-child) {
    border-bottom: 2px solid var(--light-pink);
}

.accordion-item .icon-tourist .btn-icon {
    min-width: 30px;
}

.accordion-item .icon-tourist .minus-icon {
    display: none;
}

.accordion-description {
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 200ms ease;
}

.accordion-description p {
    color: var(--grayish-purple);
    padding: 1.5rem 0;
}

@media (max-width: 1500px) {
    #FAQ {
        min-height: 40vh;
    }
}

@media (max-width:1300px) {
    #FAQ {
        min-height: 40vh;
    }
}

footer {
    width: 100%;
    position: absolute;
    background: linear-gradient(to right, #1e1e1e, #2b132b, #550255);
    color: white;
    padding: 100px 0 30px;
    font-size: 13px;
    line-height: 20px;
}

.row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col {
    flex-basis: 25%;
    padding: 10px;
}

.col:nth-child(2), .col:nth-child(3) {
    flex-basis: 15%;
}

.logo-2 {
    width: 80px;
    margin-bottom: 30px;
}

.col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

.support {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

.king {
    list-style: none;
    margin-bottom: 12px;
}

.king a {
    text-decoration: none;
    color: white;
}

.news {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}

.news .fa-regular {
    font-size: 18px;
    margin-right: 10px;
}

.news .Newsletter {
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

.news button {
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}

.news button .fa-solid {
    font-size: 16px;
    color: #ccc;
}

.apps .fa-brands {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: white;
    margin-right: 15px;
    cursor: pointer;

}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright {
    text-align: center;
}

.underline {
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span {
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite; 
}

@keyframes moving {
    0% {
        left: -20px;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 900px) {
    footer {
        bottom: unset;
    }

    .col {
        flex-basis: 100%;
    }
    
    .col:nth-child(2), .col:nth-child(3) {
        flex-basis: 100%;
    }
}

/* Scroll to Top Button Styling */
#ScrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 9999;
  font-size: 18px;
  border: 1px solid var(--clr-1);
  outline: none;
  background-color: var(--dark-purple);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0.5px 1px 10px 0.5px var(--clr-1);
  transition: 0.3s;
}

#ScrollToTopBtn:hover {
  background-color: var(--clr-1);
  transform: scale(1.05);
  color: black;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
  background-color: var(--light-pink);
}

::-webkit-scrollbar-track {
  border-radius: 3px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--dark-purple);
  border-radius: 5px;
  border: 2px solid #eff1f5;
}

