@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

:root {
  --primary-color: #8263a3;
  --text-dark: #232637;
  --white: #ffffff;
  --max-width: 1200px; 
    /*primary*/
    --color-red:hsl(0, 78%, 62%);
    --color-cyan:hsl(180, 62%, 55%);
    --color-orange:hsl(34, 97%, 64%);
    --color-blue:hsl(212, 86%, 64%);
    /*neutral*/
    --verydark-blue:hsl(234, 12%, 34%);
    --grayish-blue:hsl(229, 6%, 66%);
    --verylight-gray:hsl(0, 0%, 98%);
  
    /*font styls*/
    --font-size:15px;
    --font-weight2:200;
    --font-weight4:400;
    --font-weight6:600;
} 

* {
  padding: 0;
  margin: 0;
  max-width: 100%;
  box-sizing: border-box;
  /* overflow-y: hidden; */
  /* overflow-x: auto; */
}

.btn {
  position: absolute;
  padding: 1rem 2rem;
  outline: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #dbdce0;
}

body::after {
  position: fixed;
  content: "";
  height: 100%;
  width: 0;
  top: 0;
  right: 0;
  background-color: var(--text-dark);
  z-index: -1;

  animation: body-bg 1s ease-in-out forwards;
}

@keyframes body-bg {
  0% {
    width: 0vw;
  }
  100% {
    width: 50vw;
  }
}

body::before {
  position: fixed;
  content: "0";
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  font-size: 70rem;
  font-weight: 200;
  color: var(--white);
  z-index: -1;
  opacity: 0.5;
}

.container {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  max-width: var(--max-width);
  margin-inline: auto;
  overflow: hidden;
}

nav {
  padding-block: 2rem 0;
  padding-inline: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-weight: 500;
}

.nav__links .logo {
  font-size: 1.2rem;
  font-weight: 800;
}

.nav__left a {
  color: var(--text-dark);
}

.nav__right a {
  color: var(--white);
}

.nav__links a:hover {
  color: #4067B5;
}

.letter-s {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25rem;
  line-height: 25rem;
  font-weight: 900;
  color: #4067B5;
}
.container {
  position: relative; /* Ensure .container is positioned relative to allow absolute positioning of the image */
}

.container img {
  position: absolute;
  width: 100%;
  max-width: 150px;
  top: 56%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%); /* Center the image initially */
  filter: drop-shadow(0 0 50px rgba(0, 0, 0, 0.8));
  transition: transform 0.6s ease; /* Smooth transition for rotation and scaling */
}

.container img:hover {
  transform: translate(-50%, -50%) rotate(360deg) scale(1.1); /* Apply both rotation and scaling */
}

.container h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 5rem;
  color: var(--white);
  letter-spacing: 25px;
}

.text__left {
  transform: translate(calc(-50% - 230px), -10%);
}

.text__right {
  transform: translate(calc(-50% + 210px), -10%);
}

.container .explore {
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 225px));
  color: var(--text-dark);
  background-color: var(--white);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
}

.container .print {
  top: 50%;
  right: 0;
  transform: translate(0, -50%) rotate(90deg);
  padding: calc(1rem - 4px) calc(2rem - 4px);
  color: var(--white);
  background-color: transparent;
  border: 1px solid var(--white);
}

.container .catalog {
  top: 25%;
  left: 0;
  transform: translate(0, -50%) rotate(-90deg);
  padding: calc(1rem - 4px) calc(2rem - 4px);
  color: var(--text-dark);
  background-color: transparent;
  border: 1px solid var(--text-dark);
}

.container h5 {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.2rem;
  font-weight: 500;
}

.container h5::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100px;
  top: 50%;
}

.feature-1 {
  color: var(--text-dark);
  transform: translate(calc(-50% - 300px), calc(-50% - 200px));
}

.feature-2 {
  color: var(--white);
  transform: translate(calc(-50% + 300px), calc(-50% - 200px));
}

.feature-3 {
  color: var(--text-dark);
  transform: translate(calc(-50% - 300px), calc(-50% + 200px));
}

.feature-4 {
  color: var(--white);
  transform: translate(calc(-50% + 300px), calc(-50% + 200px));
}

.feature-1::after,
.feature-3::after {
  right: 0;
  transform: translate(calc(100% + 40px), -50%);
  background-color: var(--text-dark);
}

.feature-2::after,
.feature-4::after {
  left: 0;
  transform: translate(calc(-100% - 40px), -50%);
  background-color: var(--white);
}


@media (width > 540px) {
}
@media (width > 768px) {
}
@media (width > 1024px) {
}


.section2{
  margin: 0 auto;
  padding: 0;
  width: auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Poppins, sans-serif;
  background:white;
}
header{
  margin: 0 26em;
  padding: 0;
  text-align: center;
}
.page-title{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: var(--font-weight2);
  color: var(--verydark-blue);
}
.page-title span{
  font-weight: var(--font-weight6);
  color: var(--verydark-blue);
}
.title-content{
  font-size: var(--font-size);
  color: var(--verydark-blue);
}
.page_404 {
  display: none;
}


@media (max-width: 768px) { 
  
  body{ 
    background-color: white;
  }

  body::after{ 
    display: none;
  } 

  body::before{ 
    display: none;
  }

  .page_404 {
      display: flex;
      justify-content: center;
      padding: 40px 0;
      background: #fff;
      font-family: 'Arvo', serif; 
  }  

  .container404{ 
      display: flex; 
      align-items: center; 
      justify-content: center;
  }


  .four_zero_four_bg {
      background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
      background-size: cover; 
      background-repeat: no-repeat; 
      height: 300px; 
      background-position: center;
  }

  .four_zero_four_bg h1 {
      font-size: 60px;  
      text-align: center;
  }

  .four_zero_four_bg h3 {
      font-size: 40px; 
  }

  .contant_box_404 {
      margin-top: -50px;
  } 

  .mainbody1{ 
      display: none;
  }
}
.main--container{
  margin: 2em 8em;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items: center;
  justify-content: center;
  grid-gap: 2em;
  list-style: none;
}
.cards{
  margin: 0;
  padding: 2em;
  box-shadow: 0 3px 5px var(--grayish-blue);
  border-radius: 5px;
  border-top-style: solid;
  border-width: 5px;
}
.card-title{
  margin: 0 ;
  padding: 0;
  font-size: 1.4em;
  font-weight: var(--font-weight6);
}
.card-content{
  margin: 1em 0 0 0;
  padding: 0;
  font-size: .8em;
  color: var(--verydark-blue);
}
.card-images{
  margin: 7% 0 0 0;
  float: right;
}
.card1{
  grid-column: 1/2;
  grid-row: 1/3;
  border-top-color: var(--color-cyan);
}
.card2{
  grid-column: 2/3;
  grid-row: 1/2;
  border-top-color: var(--color-red);
}
.card3{
  grid-column: 2/3;
  grid-row: 2/3;
  border-top-color: var(--color-orange);
}
.card4{
 grid-column: 3/4;
 grid-row: 1/3;
 border-top-color: var(--color-blue);
}
@media only screen and (max-width:1000px){
  header{
      margin: 5em 2em;
  }
  .page-title{
      font-size: 1.5em;
  }
  .main--container{
      margin: 0 2em 5em 2em;
      grid-template-rows: repeat(4,1fr);
      grid-template-columns:unset;
      grid-gap: 2em;
  }
  .card-title{
      margin: 0 ;
      padding: 0;
      font-size: 1.4em;
  }
  .card1{
      grid-column: 1/2;
      grid-row: 1/2;
  }
  .card2{
      grid-column: 1/2;
      grid-row: 2/3;
  }
  .card3{
      grid-column: 1/2;
      grid-row: 3/4;
  }
  .card4{
     grid-column: 1/2;
     grid-row: 4/5;
  }
} 

ul {
  list-style-type: none;
}

a,
a:hover {
  text-decoration: none;
}

.testimonial {
  padding: 100px 0; 
  font-size: 16px;
  font-weight: 300;
  line-height: 23px;
  font-family: "Montserrat", sans-serif; 
  background-color: #000; 
  color: #eee;
}

.testimonial .row .tabs {
  all: unset;
  margin-right: 50px;
  display: flex;
  flex-direction: column;
}

.testimonial .row .tabs li {
  all: unset;
  display: block;
  position: relative;
}

.testimonial .row .tabs li.active::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background-color: #f35405cc;
  border-radius: 50%;
}

.testimonial .row .tabs li.active::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: #f35405cc;
  border-radius: 50%;
}

.testimonial .row .tabs li:nth-child(1) {
  align-self: flex-end;
}

.testimonial .row .tabs li:nth-child(1)::before {
  left: 64%;
  bottom: -50px;
}

.testimonial .row .tabs li:nth-child(1)::after {
  left: 97%;
  bottom: -81px;
}

.testimonial .row .tabs li:nth-child(1) figure img {
  margin-left: auto;
}

.testimonial .row .tabs li:nth-child(2) {
  align-self: flex-start;
}

.testimonial .row .tabs li:nth-child(2)::before {
  right: -65px!important;
  top: 50%!important;
}

.testimonial .row .tabs li:nth-child(2)::after {
  bottom: 101px!important;
  border-radius: 50%!important;
  right: -120px!important;
}

.testimonial .row .tabs li:nth-child(2) figure img {
  margin-right: auto!important;
  max-width: 300px!important;
  width: 100%!important;
  margin-top: -50px!important;
}

.testimonial .row .tabs li:nth-child(3) {
  align-self: flex-end;
}

.testimonial .row .tabs li:nth-child(3)::before {
  right: -10px;
  top: -66%;
}

.testimonial .row .tabs li:nth-child(3)::after {
  top: -130px;
  border-radius: 50%;
  right: -46px;
}

.testimonial .row .tabs li:nth-child(3) figure img {
  margin-left: auto;
  margin-top: -50px;
}

.testimonial .row .tabs li:nth-child(3):focus {
  border: 10px solid red;
}

.testimonial .row .tabs li figure {
  position: relative;
}

.testimonial .row .tabs li figure img {
  display: block;
}

.testimonial .row .tabs li figure::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 4px solid #eee!important;
  border-radius: 50%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.testimonial .row .tabs li figure:hover::after {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.testimonial .row .tabs.carousel-indicators li.active figure::after {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.testimonial .row .carousel > h3 {
  font-size: 20px;
  line-height: 1.45;
  color: #eee;
  font-weight: 600;
  margin-bottom: 0;
}

.testimonial .row .carousel h1 {
  font-size: 40px;
  line-height: 1.225;
  margin-top: 23px;
  font-weight: 700;
  margin-bottom: 0;
}

.testimonial .row .carousel .carousel-indicators {
  all: unset;
  padding-top: 43px;
  display: flex;
  list-style: none;
}

.testimonial .row .carousel .carousel-indicators li {
  background: #000;
  background-clip: padding-box;
  height: 2px;
}

.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper {
  margin-top: 42px;
}

.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper p {
  font-size: 18px;
  line-height: 1.72222;
  font-weight: 500;
  color: #eee;
}

.testimonial .row .carousel .carousel-inner .carousel-item .quote-wrapper h3 {
  color: #eee;
  font-weight: 700;
  margin-top: 37px;
  font-size: 20px;
  line-height: 1.45;
  text-transform: uppercase;
}

@media only screen and (max-width: 1200px) {
    .testimonial .row .tabs {
      margin-right: 25px;
  }
}


a {
  text-decoration: none;
}

a:hover, a:focus, .btn:hover, .btn:focus, button:hover, button:focus {
  text-decoration: none;
  outline: none;
}

/* Footer Styles */
.new_footer_area {
  background: white;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande',
  'Lucida Sans Unicode', Arial, sans-serif;

}

.new_footer_top {
  padding: 120px 0 270px;
  position: relative;
  overflow-x: hidden;
}

.new_footer_area .footer_bottom {
  padding-top: 5px;
  padding-bottom: 50px;
}

.footer_bottom {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #7f88a6;
  padding: 27px 0;
}

.footer_text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #6a7695;
  margin-bottom: 20px;
}

.footer_social a {
  font-size: 24px;
  color: #000;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer_social a:hover {
  color: #007bff;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .footer_social {
      margin-left: 20px;
  }
}

/* Footer Background */
.new_footer_top .footer_bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 266px;
  background: url("footer_bg2.png") no-repeat center center;
}

.new_footer_top .footer_bg_one {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif") no-repeat center center;
  width: 330px;
  height: 105px;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 30%;
  animation: moveBackground 22s linear infinite;
}

.new_footer_top .footer_bg_two {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif") no-repeat center center;
  width: 88px;
  height: 100px;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 38%;
  animation: moveBackground 30s linear infinite;
}

@keyframes moveBackground {
0% {
  left: -25%;
}
100% {
  left: 100%;
}
}

/* Flexbox for footer content alignment */
.footer_content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer_content.flex-md-row {
  flex-direction: row;
}

.footer_text {
  margin-bottom: 4px;
}


/* team */
.team {
  min-height: 100vh;
  position: relative;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;  
  list-style: none!important;
  text-decoration: none!important;
  font-family: "Poppins", sans-serif!important;
  /* border: 1px solid red; */
  /* width: 100%;
  height: 200px; */
}

/* container section */
.container4 {
  position: relative;
  min-width: 500px;
  height: 500px;
  border: 4px solid red;
  border-radius: 50%; 
  list-style: none!important;
  text-decoration: none!important;
}
.outerteam{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid green;
  /* height: 200px; */
  background-color: #FFFFFF;
}
.container4 .icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  left: -50%;
}

.container4 .icon .imgbox {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid black;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 4px #222, 0 0 0 6px #fff;
  transform: rotate(calc(360deg / 7 * var(--i)));
  transform-origin: 285px;
  z-index: 100;
  overflow: hidden;
}

.container4 .icon .imgbox.active {
  box-shadow: 0 0 0 4px #222, 0 0 0 12px #4067B5;
}

.container4 .icon .imgbox img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(calc(-360deg / 7 * var(--i)));
  transition: 500ms;
  filter: grayscale(1);
}

.container4 .icon .imgbox.active img {
  filter: grayscale(0);
}

/* content section */
.content {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content::before {
  position: absolute;
  content: "";
  inset: 65px;
  border: 4px solid transparent;
  border-left: 4px solid #4067B5;
  border-right: 4px solid orangered;
  border-radius: 50%;
  animation: animationOne 3s linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes animationOne {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}

.content::after {
  position: absolute;
  content: "";
  inset: 95px;
  border: 4px solid transparent;
  border-left: 4px solid #4067B5;
  border-right: 4px solid orangered;
  border-radius: 50%;
  animation: animationTwo 2s linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes animationTwo {
  0% {
    rotate: 360deg;
  }
  100% {
    rotate: 0deg;
  }
}

.contentbox {
  position: absolute;
  transform: scale(0);
  opacity: 0;
  transition: 500ms;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contentbox.active {
  transform: scale(1);
  opacity: 1;
  transition-delay: 500ms;
}

.contentbox .card2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 10px; 
  list-style: none!important;
  text-decoration: none!important;
}

.contentbox .card2 .imgbox {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.contentbox .card2 .imgbox img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
} 

ul{ 
  list-style: none;
}

.contentbox .card2 .card-content { 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.contentbox .card2 .card-content h3 {
  text-transform: capitalize;
  font-size: calc(1rem + 0.5vw);
  color: black;
}

.contentbox .card2 .card-content p {
  text-transform: capitalize;
  font-size: 1rem;
  color: #4067B5;
  font-weight: 500;
}

.contentbox .card2 .card-content ul {
  display: flex;
  gap: 10px;
}

.contentbox .card2 .card-content ul li a i {
  color: black;
  font-size: 1rem;
}