*{
    top: 0;
    left: 0;
    box-sizing: border-box;
}

body {
    background: #faf7f7;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 6rem);
    color: #153C33;
    font-weight: 700;
    font-family: 'Times New Roman', Times, serif;
}

span{
    color: #ff7a00;
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(2.4rem, 5vw, 6rem);
    font-weight: 900;
}

p {
    font-size: 1.1rem;
    color: #817e7e;
}

.btn {
    background: rgba(201, 201, 198, 0.459);
    color: #fff;
    border-radius: 25px;
    padding: 8px 20px;
    margin: 12px;
}

.btn:hover {
    background: #153C33;
    color: #fff;
    border-radius: 25px;
    padding: 8px 20px;
}

h2 {
    color: #fff;
    font-size: 2.3rem;
    font-family: 'Times New Roman', Times, serif;
}

/*********************** head section *****************************/

.head {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.main {
    margin: 50px 30px;
}

.main p {
    color: #ffc400;
}

.background-clip {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
}


/*********************** card section *****************************/



.card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(241, 241, 240, 0.459);
    text-align: center;
} 

.card h4 {
    color: #8f8d8d;
}

.card h2 {
    color: #153C33;
    font-weight: 500;
}

.card .card-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    column-gap: 20px;
    margin: 30px auto;
}

.main-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px 12px;
    max-width: 280px;
    width: 100%;
    /* background: #a09d9d; */
    background: linear-gradient(#ffb703, #153C33);
    border-radius: 12px;
    margin: auto;
    position: relative;
    /* z-index: 99; */
    overflow: visible;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.main-card::before,
.main-card::after {
    content: '';
    position: absolute;
    inset: -4px;
    background-image: conic-gradient(from var(--angle), transparent 70%, rgb(255, 0, 234), red, coral, yellow, rgb(255, 0, 234));
    border-radius: inherit;
    z-index: -1;
    animation: spin 3s linear infinite;
    box-sizing: border-box;
}

.main-card::before {
    filter: blur(1.5rem);
    opacity: 0.5;
}

@keyframes spin {
    from {
        --angle: 0deg;
    }
    to {
        --angle: 360deg;
    }
}

.main-card img {
    border-radius: 50%;
    height: 120px;
    width: 120px;
}

.main-card h4, .main-card p {
    color: #fff;
    text-align: left;
}

.main-card h4 {
    color: #153C33;
    font-weight: 700;
}

/*********************** card section *****************************/


.jour-img{
    position: relative;
    margin: auto;
}

.main-img {
    max-width: 450px;
    width: 100%;
    border: 2px solid #153C33;
    border-radius: 12px;
    margin: 80px auto; 
}

.main-img img {
    border-radius: 12px;
}

.jour-img .jour-card {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 9px;
    width: 200px;
    height: 75px;
    border: 2px solid #153C33;
    border-radius: 8px;
    

}

.jour-card h4 {
    color: #ff7a00;
    font-size: 900;
}

.jour-contant {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

.jour-contant h1 {
    font-size: clamp(2rem, 5vw, 4rem );
    color: #ff7a00;
    font-weight: 700;
}

.jour-contant h2 {
    font-size: clamp(2rem, 5vw, 4rem );
    color: #ff9f1c;
    font-weight: 700;
}

.jour-contant .top {
    border: 2px solid #153C33;
    padding: 6px 50px;
    background: linear-gradient(90deg, #153C33, #ffb703);
    border-radius: 8px;
    color: #fff;
    margin: 14px auto;
} 

.jour-contant .bottom {
    display: inline-flex;
    /* justify-content: center; */
    width: 100%;
    padding: 8px 12px;
    /* align-items: start; */
    gap: 12px;
    border: 2px solid #153C33;
    border-radius: 8px;
    background: #fff;
    margin: 8px auto;
}

.jour-contant .bottom img {
    height: 50px;
    width: 50px;
}

.jour-contant .bottom i {
    font-size: 2.9rem;
}

/*********************** join section *****************************/

.join {
    text-align: center;

}

.join h3 {
    font-size: clamp(2rem, 5vw, 4rem );
    color: #ff9f1c;   
}

.join p {
    margin-bottom: 30px;
}
 
.contact {
    display: flex;
    justify-content: left;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    margin: 14px auto;
    gap: 8px;
    border-radius: 10px;
    border-left: 3px solid #ff7a00;
    border-right: 3px solid #ff7a00;
}

.join-contact .contact .icon {
    font-size: 3rem;
    padding: 6px;
    color: aqua;
    background: #153C33;
    border-radius: 40%;
    border-left: 3px solid #ff7a00;
    border-right: 3px solid #ff7a00;
}

.contact .text h5 {
    color: #153C33;
    font-size: 2rem;
    font-weight: 500;
}

.yoga-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
}

.yoga-form h4 {
    color:#153C33;
    font-size: 2rem;
    font-weight: 500;
    padding: 15px auto;
}

.yoga-form .form-label {
  font-weight: 600;
  /* color: #3c2f2f; */
  color: #ff7a00;
  text-align: start;
  display: block;
}

.yoga-form .form-control {
  background: #fbf6ef;
  border: 1px solid #e6ded4;
  padding: 12px 14px;
  border-radius: 6px;
}

.yoga-form .form-control:focus {
  border-color: #ff9f1c;
  box-shadow: none;
}

.submit-btn {
  background: linear-gradient(90deg, #153C33, #ffb703);
  color: #fff;
  font-size: 18px;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: .4s ease;
}

/*********************** video section *****************************/

.videos h1 {
    text-align: center;
}

.trust-video {
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

}

.short-video {
  width: 100%;
  max-width: 225px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.short-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-video {
    height: 225px;
    width: 400px;
    margin: 12px;
}

/********************************* testimonial section ***********************/

.testimonial {
    gap: 15px 15px;

}

.testimonial-card {
  max-width: 340px;
  width: 100%;
  margin: auto;
  /* max-height: 600px;
  height: 100%; */
  background: #3d6d62;
  border-radius: 16px;
  padding: 70px 40px 30px;
  position: relative;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  flex-wrap: wrap;
  
}

/* White top section illusion */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 35%;
  width: 100%;
  background: #a4c5bd;
  border-radius: 16px 16px 0 0;
  z-index: 0;
}

.profile {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.profile img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
}

.testimonial-text {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 75px;
}

.name {
  color: #fff;
  margin: 15px 0 5px;
  font-size: 16px;
  font-weight: 600;
}

.designation {
  color: #fff;
  font-size: 13px;
  opacity: 0.9;
}

.quote-top {
  top: 5px;
  left: 20px;
  font-size: 60px;
  color: #3d6d62;
  position: absolute;
}

.quote-bottom {
  top: 300px;
  left: 280px;
  font-size: 60px;
  right: 15px;
  color: #a4c5bd;
  position: absolute;
}

.star-icon i {
    font-size: .8rem;
    color: #ffb703;
    margin-bottom: 20px;
}

.testimonial-card .style1 {
    background: transparent;
    position: absolute;
    left: 60px;
    top: 30px;
    max-width: 260px;
    border: none;
    width: 100%;
    height: 60%;
    border-top: 5px solid #3d6d62;
    border-right: 5px solid #3d6d62;
    border-top-right-radius: 16px;
}

.testimonial-card .style2 {
    background: transparent;
    position: absolute;
    left: 30px;
    top: 120px;
    max-width: 250px;
    border: none;
    width: 100%;
    height: 60%;
    border-left: 5px solid #a4c5bd;
    border-bottom: 5px solid #a4c5bd;
    border-bottom-left-radius: 16px;
}


/*************************** footer section **************************/

.footer-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 10px;
    background: linear-gradient(90deg, #ffb703, #153C33);
    color: rgb(192, 188, 188);
    flex-direction: column;
}

.footer-section h5 {
    color: #153C33;
    font-size: 1.7rem;
    padding: 8px;
    text-align: center;
}

.footer-section p {
    color: #faf7f7;
    font-size: 1.3rem;
    margin-top: 8px;
}












/* responsive section */

@media (min-aspect-ratio: 16/9) {
    .background-clip {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .background-clip {
        width: auto;
        height: 100%;
    }

    
}

@media (max-width: 561px) {

    .main {
        margin: 20px 12px;
    }

    .head {
        width: 100%;
        height: auto;
    }

    .background-clip {
        width: 100%;
        
        object-position: center;
    }
    
}

