 body {
  font-family: 'Poppins', sans-serif;
  background-color: #fcf5e5;
}

:root {
  --color-primary: #0012b8;
  --color-secondary: #fcf5e5;
  --duration: 1s;
  --nav-duration: calc(var(--duration) / 4);
  --ease: cubic-bezier(0.215, 0.61, 0.355, 1);
  --space: 1rem;
  --font-primary: 'Helvetica', sans-serif;
  --font-heading: 'Merriweather', serif;
  --font-size: 1.125rem;
  --line-height: 1.5;
}



.main-navigation-toggle {
  position: fixed;
  height: 1px; 
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  
  + label {
    position: fixed;
    top: calc(var(--space) * 1.5);
    right: calc(var(--space) * 2);
    cursor: pointer;
    z-index: 2;
  }
}

.icon--menu-toggle {
  --size: calc(1rem + 4vmin);
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  stroke-width: 6;
}

.icon-group {
  transform: translateX(0);
  transition: transform var(--nav-duration) var(--ease);
}

.icon--menu {
  stroke: var(--color-primary);
}

.icon--close {
  stroke: var(--color-secondary);
  transform: translateX(-100%);
}

.main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  transition: transform var(--nav-duration);
  z-index: 1;
  
  &:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    transform-origin: 0 50%;
    z-index: -1;
  }
  
  ul {
    font-size: 12vmin;
   /* font-family: var(--font-heading);*/
    width: 100%;
  }
  
  li {
    --border-size: 1vmin;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    
    &:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: var(--border-size);
      background-color: var(--color-secondary);
      transform-origin: 0 50%;
      transform: translateX(-100%) skew(15deg);
    }
  }
  
  a {
    display: inline-block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-secondary);
    line-height: 1;
    text-decoration: none;
    user-select: none;
    padding: var(--space) calc(var(--space) * 2) calc(var(--space) + var(--border-size) / 2);
    transform: translateY(100%);
  }
}

.main-content {
  margin: 6rem auto;
  max-width: 70ch;
  padding: 0 calc(var(--space) * 2);
  transform: translateX(0);
  transition: transform calc(var(--nav-duration) * 2) var(--ease);
  
  > * + * {
    margin-top: calc(var(--space) * var(--line-height));
  }
}

.main-navigation-toggle:checked {
  ~ label .icon--menu-toggle {    
    .icon-group {
      transform: translateX(100%);
    }
  }
  
  ~ .main-content {
    transform: translateX(10%);
  }
  
  ~ .main-navigation {
    transition-duration: 0s;
    transform: translateX(0);
    
    &:after {
      animation: nav-bg var(--nav-duration) var(--ease) forwards;
    }
    
    li:after {
      animation: nav-line var(--duration) var(--ease) forwards;
    }
    
    a {
      animation: link-appear calc(var(--duration) * 1.5) var(--ease) forwards;
    }
    
    /*@for $i from 1 through 4 {
      li:nth-child(#{$i}) {
        &:after, a {
          animation-delay: calc((var(--duration) / 2) * #{$i} * 0.125);
        }
      }
    }*/
  }
}

@keyframes nav-bg {
  from { transform: translateX(-100%) skewX(-15deg) }
  to { transform: translateX(0) }
}

@keyframes nav-line {
  0%   { transform: scaleX(0); transform-origin: 0 50%; }
  35%  { transform: scaleX(1.001); transform-origin: 0 50%; }
  65%  { transform: scaleX(1.001); transform-origin: 100% 50%; }
  100% { transform: scaleX(0); transform-origin: 100% 50%; }
}

@keyframes link-appear {
  0%, 25%   { transform: translateY(100%); }
  50%, 100% { transform: translateY(0); }
}


* {
  box-sizing: border-box;
}

h1, p{
    color: #0012b8;
}



#logo_ano_another_v {
  width: 84px;
  height: 98px;
  margin-right: 10px; 
}


#face-outline {
  position: absolute;
  top: 80px; 
  right: 0;
  max-width: 415px;
  max-height: 600px;
  width: auto;
  height: auto;
}

#face-outline img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

@media (max-width: 768px) {
  #face-outline {
    top: 150px; /* Adjusted top value for medium screens */
    right: 0;
    max-width: 300px;
    max-height: 433px;
  }
}

@media (max-width: 480px) {
  #face-outline {
    top: 190px; 
    right: 0;
    max-width: 200px;
    max-height: 289px;
  }
}






/* new navbar starts */

.my-name {
  font-size: 64px;
  font-weight: 200;
  margin: 0;
}

@media (max-width: 768px) {
  .my-name {
    font-size: 15vw;
  }
}

@media (max-width: 480px) {
  .my-name {
    font-size: 10vw;
  }
}

.navbar-2 {
  top: 88px;
  right: 50px;
  left: 50px; 
  z-index: 1001;
}

.navbar-2-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%; 
}

.my-name {
  flex: 1; 
  text-align: left;
}

.navbar-2-list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-2-list li a {
  font-size: 16px;
  font-weight: 500;
  color: #0012b8;
  text-transform: uppercase;
  text-decoration: none;
  padding: 5px 10px; 
  transition: border 0.3s ease; 
}

.navbar-2-list li a:hover {
  border: 2px solid #0012b8; 
  border-radius: 50px; 
  outline: none; 
}

/* Hamburger Menu with Transition */
.hamburger-2 {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1100; 
  transition: all 0.3s ease;
}

.hamburger-2 .bar {
  width: 25px;
  height: 3px;
  background-color: #0012b8;
  transition: all 0.3s ease; 
}

.hamburger-2.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg); 
}

.hamburger-2.active .bar:nth-child(2) {
  opacity: 0; 
}

.hamburger-2.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg); 
}


@media (max-width: 768px) {
  .navbar-2-list {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background-color: #fcf5e5; 
    padding: 2rem;
    box-shadow: none; 
    z-index: 1000; 
    justify-content: center;
    align-items: center; 
    margin: 0;
  }

  .navbar-2-list.active {
    display: flex; 
  }

  .hamburger-2 {
    display: flex;
  }
}


.more-menu-item {
  display: none ;
}

.navbar-2-list.active .more-menu-item {
  display: flex; 
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.rotating-text-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotating-circle-container {
  position: absolute;
  width: 220px; /* Slightly larger than rotating text */
  height: 220px;
  border-radius: 50%;
  border: 2px solid #0012b8; /* Circle around rotating text */
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotating-circle {
  position: absolute;
  width: 150px; 
  height: 150px;
  animation: rotateText 10s linear infinite;
}

.rotating-text {
  font-size: 16px; 
  font-weight: regular;
  font-style: italic;
  fill: #0012b8;
  text-transform: uppercase;
}

.outer-circle {
  position: absolute;
  width: 135px; 
  height: 135px;
  border-radius: 50%;
  border: 2px solid #0012b8; /* Outer circle */
}

.center-image {
  width: 80px; /* Keep the image size unchanged */
  height: auto;
}

.image-wrapper {
  position: absolute;
  width: 80px; /* Bigger than the image */
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #0012b8; /* Larger circle */
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.image-wrapper a:focus-visible {
  outline: none;
}

.image-wrapper a {
  outline: none !important;
  border: none !important;
}
/* new navbar ends*/



/*case study layout starts */

.case-studies-section {
    margin-top: 50px;
}

.case-studies-section h1 {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    color: #0012b8;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
    margin-left: 126px;
    white-space: nowrap;
}

.case-study-list {
    list-style-type: none;
    padding: 0;
    margin-top: 30px;
}

.case-study-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    white-space: nowrap; 
}

/* Number circles */
.case-study-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px; 
    min-height: 40px; 
    background: #0012b8;
    color: white;
    font-weight: semibold;
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
    margin-left: 74px;
    font-size: clamp(12px, 1.8vw, 16px); 
}

.case-study-name {
    flex-grow: 1;
    width: clamp(280px, 40vw, 562px); 
    border: 2px solid #0012b8;
    border-radius: 50px;
    padding: clamp(6px, 1vw, 10px) clamp(10px, 2vw, 15px);
    text-decoration: none;
    color: #0012b8;
    font-weight: regular;
    background-color: #fcf5e5 !important;
    display: inline-block;
    text-align: left;
    position: relative;
    z-index: 2; 
    font-size: clamp(12px, 1.8vw, 16px); 
    white-space: nowrap;
}

@keyframes soft-bounce {
    0% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
    50% { transform: translateY(0); }
    70% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

.case-study-name:hover {
    background-color: #0012b8 !important;
    color: #fcf5e5 !important;
    animation: soft-bounce 0.6s ease-in-out;
}

.case-study-tag {
    background-color: #fcf5e5 !important;
    color: #0012b8;
    border: 2px solid #0012b8;
    padding: clamp(3px, 0.7vw, 5px) clamp(6px, 1.5vw, 10px);
    border-radius: 20px;
    font-size: clamp(10px, 1.5vw, 14px);
    font-style: italic;
    font-weight: extralight;
    margin-left: 10px;
    margin-right: clamp(20px, 10vw, 180px);
    display: inline-block;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}


.case-study-tag:hover {
    background-color: #0012b8 !important;
    color: #fcf5e5 !important;
}


@media (max-width: 768px) {
    .case-studies-section h1 {
        font-size: clamp(30px, 5vw, 60px);
    }

    .case-study-number {
        min-width: 30px;
        min-height: 30px;
        font-size: clamp(10px, 1.5vw, 14px);
    }

    .case-study-name {
        width: 100%;
        font-size: clamp(10px, 1.5vw, 14px);
    }

    .case-study-tag {
        font-size: clamp(9px, 1.3vw, 12px);
        padding: clamp(2px, 0.5vw, 4px) clamp(5px, 1vw, 8px);
    }
}



/*case study layout ends*/



/* images */

.container-home-images {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto; 
    margin-top: 40px;
  }
  
  .blueimage,
  .wavess,
  .eye {
    flex: 1;
    max-width: 30%; 
  }
  
  .blueimage img,
  .wavess img,
  .eye img {
    width: 100%;
    height: auto;
  }
  /* images */
  
  .bottom, .bottom1{
    text-align: center;
    text-decoration: none;
    /*color: #0012b8;*/

  }

  .bottom a, .bottom1 a{
    text-decoration: none;
    color: inherit;
  }
  
  .up-arrow {
    font-size: 30px;
    color:  #fcf5e5;
    background-color: #0012b8;
    border: solid 2px #fcf5e5;
    border-radius: 100px;

    /* Position at the bottom */
    position: fixed;
    bottom: 20px; /* Adjust the value as needed */
    left: 50%;
    transform: translateX(-50%);
    padding-left: 15px;
    padding-right: 15px;
    /*padding-top: 10px;
    padding-bottom: 2px;*/
    padding-top: 5px;
    padding-bottom: 5px;
}

/* portfolio */


body {
  color: #0012b8;
}
a {
  color: #0012b8;
  text-decoration: none;

}

.portfolio-item > img {
    width: 200px;
    height: 200px;
    object-fit: contain;
  }

#logo_ano_p{
  width: 110px;
  position: absolute;
  right: 20px;

}

#bottom{
  text-align: center;
}

#toptittle{
  margin-left: 20px;
  margin-top: 40px;
}

#topStittle{
  margin-left: 20px;
  margin-top: -15px;
}


.portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 100px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  height: auto;
}


@media screen and (max-width: 600px) {
  .portfolio {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

.transparent-line {
  border: none;
  height: 20px; 
  background-color: transparent; 
}

.portfolio h3, p{
  text-align: center;
}

h2{
  text-align: center;
}


/*portfolio ends*/



/*Stickers starts*/

#hrefname-stickers {
  color: #0012b8;
  text-decoration: none;
}

h1.name-sticker {
  font-family: 'Chelsea Market', sans-serif;
  margin: 20px 0 40px 40px; 
}

h2.sticker-ano-1,
p.sticker-ano-1,
.bottom {
  font-family: 'Chelsea Market', sans-serif;
}

img.sticker-ano-image-1 {
  width: 400px;
  max-width: 100%;
  height: auto;
}

table.stickers-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  border: none;
}

th.stickers-th,
td.stickers-td {
  border: none;
  padding: 10px;
  text-align: center;
}

h2.sticker-ano-1 {
  text-align: center;
  font-size: 30px;
  color: #ff4500;
}



.bottom, .bottom1{
  text-align: center;
  text-decoration: none;
}

.bottom-st a {
  text-decoration: none;
  color: inherit;
}

.up-arrow-st {
  font-size: 30px;
  color:  #fcf5e5;
  background-color: #ff4500;
  border: solid 2px #fcf5e5;
  border-radius: 100px;

  /* Position at the bottom */
  position: fixed;
  bottom: 20px; 
  left: 50%;
  transform: translateX(-50%);
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 0px;
  padding-bottom: 0px;

  
}

#logo_ano-stickers{
  width: 110px;
  position: absolute;
  left: 65px;
  margin-top: 0px;
}

.button-go-back-stickers {
  font-size: 30px;
  color:  #0012b8;
  background-color: transparent;
  border: solid 2px #0012b8;
  border-radius: 100px;
  /*padding-bottom: 5px;*/
  margin-left: 20px;
  margin-top: 20px;
  padding-left: 9px;
  padding-right: 9px;
  padding-top: 0px;
  padding-bottom: 0px;
}

/* Stickers ends*/

/*ABOUT STARTS*/


#contourimage {
  border-radius: 50px;
  width: 500px;
  display: block;      
  margin: 0 auto;      
}

#logo_ano-about{
  width: 110px;
  position: absolute;
  left: 65px;
  margin-top: -18px;
}

article.about-article {
  text-align: center;
  padding: 20px;
  /*width: 30%;*/
  width: 70%;
  margin: 0 auto;

 
}

#logo_ano1-about{
  width: 80px;
  position: absolute;
  right: 40px;
  margin-top: 30px;

}



.button-go-back-about {
  font-size: 30px;
  color:  #0012b8;
  background-color: transparent;
  border: solid 2px #0012b8;
  border-radius: 100px;
  padding-bottom: 5px;
  margin-left: 20px;
}


/*ABOUT ENDS*/

/* Cursor*/

body {
  cursor: url('/images/icons8-arrow-50.png'), auto;
}

a:hover {
  cursor: url('/images/icons8-arrow-50.png'), pointer;
}

/*
body {
  cursor: url('images/icons8-cursor-30.png'), auto;
}
a:hover {
  cursor: url('/images/icons8-arrow-50.png'), pointer;
}*/
/* Cursor ends*/

   hr.bottom-line-break {
      margin-bottom: 15px; 
   }


.bottom-line-break {
  border: none;
  border-top: 2px solid #0012b8;
  margin: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.contact-left {
  display: flex;
  justify-content: flex-start;
}

.contact-right {
  display: flex;
  justify-content: flex-end;
}

.contact-link {
  background-color: #0012b8;
  color: #fcf5e5;
  padding: 10px 20px;
  border: solid 2px #0012b8;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background-color: #fcf5e5;
  color: #0012b8;
}

.contact-right img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.contact-right img:hover {
  transform: scale(1.1);
}

/*sticker bannner start
.full-width-banner {
  width: 100%;
  height: auto;
  display: block;
}

.responsive-banner {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

sticker bannner ends*/

/* roichi-stickers-float-round- home page starts*/
.image-container-roichi-stickers-float-round {
  position: relative;
  float: right;
  margin-left: 20px;
  /*margin-left: -20px;*/
}

.image-outline-roichi-stickers-float-round {
  display: inline-block;
  padding: 2px; 
  border: 3px solid #0012b8;
  border-radius: 150px;
  transition: transform 0.3s ease;
}

.image-outline-roichi-stickers-float-round:hover {
  transform: scale(1.05);
}

.styled-image-roichi-stickers-float-round {
  display: block;
  border-radius: 100px;
  width: 120px;
  height: auto;
  background-color: #0012b8;
}

.overlay-text-roichi-stickers-float-round {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
 /*background-color: #0012b8;
  color: #fcf5e5;*/

  border: 3px solid #0012b8;
  
  color: #0012b8;
  padding: 5px 15px;
  border-radius: 100px;
  font-family: sans-serif;
  font-size: 12px;
  text-align: center;
  /*white-space: nowrap;*/
}

.overlay-text-roichi-stickers-float-round {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.image-container-roichi-stickers-float-round:hover .overlay-text-roichi-stickers-float-round {
  opacity: 1;
}
/* roichi-stickers-float-round- home page ends*/