body {
    margin: 0;
    font-family: "Alatsi", sans-serif;
}

a {
    text-decoration: none;
}

.alatsi-regular {
    font-family: "Alatsi", sans-serif;
    font-weight: 400;
    font-style: normal;
}


/* toggle */
.switch {
    display: inline-flex;
    margin: 0 10px;
    position: fixed;
    bottom: 20px;
    left: 90px;
    z-index: 1000;
}

.switch input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
}

.switch input[type=checkbox]:checked+label {
    background: rgb(255, 255, 255);
}

.switch input[type=checkbox]:checked+label::after {
    left: calc(100% - 4px);
    transform: translateX(-100%);
    background: black;
}

.switch label {
    cursor: pointer;
    width: 58px;
    height: 30px;
    background: rgb(0, 0, 0);
    display: block;
    border-radius: 20px;
    position: relative;
}

.switch label::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 16px;
    transition: 0.3s;
}

/* dark-light-theme */

/* Dark Mode Styles */
.dark-mode {
  background-color: #000 !important;
  color: #fff !important;
}

/* Dark mode for specific elements */
.dark-mode .header-section {
  background-color: #000 !important;
}

.dark-mode .selected-work-section,
.dark-mode .project-img-section-grey,
.dark-mode .testimonial-grid-box {
  background-color: #121212 !important;
}

.dark-mode .selected-work-section-two {
  background-color: #000 !important;
}

.dark-mode .testimonial-grid-box-grey {
  background-color: #1a1a1a !important;
}

/* Text colors in dark mode */
.dark-mode .heading,
.dark-mode .heading a,
.dark-mode .second-heading,
.dark-mode .second-heading a,
.dark-mode .project,
.dark-mode .project a,
.dark-mode .project-minihead,
.dark-mode .craft,
.dark-mode .craft-grid,
.dark-mode .testimonial-head,
.dark-mode .client-name,
.dark-mode .brand-option,
.dark-mode .nav-mid-text,
.dark-mode .nav-mid-text a,
.dark-mode .sidebar .nav-mid-text {
  color: #fff !important;
}

.dark-mode .header-para,
.dark-mode .testimonial-para {
  color: #aaa !important;
}

.dark-mode .about,
.dark-mode .about-detail,
.dark-mode .service-grid-content-about {
  color: #888 !important;
}

/* Update sidebar in dark mode */
.dark-mode .sidebar {
  background-color: #000 !important;
}

/* Footer is already dark, but ensure consistency */
.dark-mode .footer {
  background-color: #000 !important;
}

/* Arrow background in dark mode */
.dark-mode .arrow {
  background-color: #fff !important;
}

.dark-mode .arrow svg path {
  stroke: #000 !important;
}

/* Toggle switch appearance update */
.dark-mode .switch label {
  background: #fff !important;
}

.dark-mode .switch label::after {
  background: #000 !important;
}



/* Initial state: logo just visible, no animation */
.load-logo {
    color: white;
    font-weight: 900;
    font-size: 150px;
    text-align: right;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
    margin: 50px;
}

/* When disappearing: move logo up 200px and fade out */
.load-logo.logo-slide-up {
    transform: translateY(-120px);
    opacity: 0;
}

/* Loader slide-out (unchanged) */
.load-section {
    background-color: black;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    overflow: hidden;
    transition: transform 1.2s ease;
}

.load-section.slide-up {
    transform: translateY(-100%);
    pointer-events: none;
}






/* header-section */
@keyframes slightZoomOut {
    to {
        transform: scale(0.96);
        opacity: 0.98;
    }
}

@keyframes zoomReset {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.header-section {
    background-color: white;
    transition: background-color 0.6s ease;
    position: relative;
}




.header-imag {
    /* background-image: url(./images/6706520a607216d450a352f6_home-hero-p-1080.webp); */
    width: 45%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;

}

.header-imag {
    pointer-events: none;
}

.header-imag-mark {
    display: none;
}

.header-scroll-grid {
    height: 100vh;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: 60px;
}

.header-scroll-grid::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.navbar {
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.kayo {
    margin: 0;
    font-weight: 900;
    color: #ffff;
    font-size: 36px;
}

.kayo a {
    color: #ffff;
}

.nav-left {
    width: 25%;
}

.nav-mid {
    display: flex;
    gap: 20px;
    padding-left: 10px;
}

.nav-mid-text {
    margin: 0;
    font-size: 16px;
    color: black;
    font-weight: 400;
}

.nav-mid-text a {
    color: black;
}

.menu-icon {
  width: 30px;
  height: 24px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}
.bar {
  width: 24px;
  height: 3px;
  background-color: #000;
  transition: 0.4s ease;
  position: absolute;
}
.top-bar {
  transform: translateY(-6px);
}

.bottom-bar {
  transform: translateY(6px);
}

.menu-icon.open .top-bar {
  transform: rotate(45deg);
}

.menu-icon.open .bottom-bar {
  transform: rotate(-45deg);
}

.header-content {
    display: flex;
    height: 100vh;
}

.header-content-left {
    width: 50%;
}

.header-content-right {
    width: 50%;
    padding-right: 50px;
}

.heading {
    font-size: 130px;
    margin: 0;
    font-weight: 800;
    color: black;
    text-transform: uppercase;
    line-height: 110px;
    letter-spacing: -2px;
    padding: 60px 0px;
}

.studio-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    /* Start from below */
    transition: opacity 0.1s ease-out, transform 0.5s ease-out;
    font-size: 130px;
    letter-spacing: -6px;
}

.studio-show {
    opacity: 1;
    transform: translateY(0);
    /* Final position */
}


.heading a {
    color: black;
}

/* .heading span {
    display: inline-block;
    font-size: 150px;
    letter-spacing: -2px;
    margin: 0;
    font-weight: 900;
    color: black;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(40px);
    animation: dropIn 2s forwards;
} */

.animated-text span:nth-child(1) {
    animation-delay: 0s;
}

.animated-text span:nth-child(2) {
    animation-delay: 0s;
}

.animated-text span:nth-child(3) {
    animation-delay: 0s;
}

.animated-text span:nth-child(4) {
    animation-delay: 0s;
}

.animated-text span:nth-child(5) {
    animation-delay: 0s;
}

.animated-text span:nth-child(6) {
    animation-delay: 0s;
}

@keyframes dropIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add the same animation for logo-section */
/* .logo-section animation */
.logo-section {
    opacity: 0;
    transform: translateY(40px);
    /* Start from below */
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
    padding-top: 20px;
    /* Same timing and delays as header-para */
}

/* Add the class that will trigger the animation when in view */
.logo-show {
    opacity: 1;
    /* Full opacity */
    transform: translateY(0);
    /* End at normal position */
}

.about {
    color: #6B6D6D;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    padding: 15px 0px;
}
.fade-up-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 3s ease, transform 3s ease;
}

/* When in viewport */
.fade-up-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 2s ease, transform 2s ease;
}

.fade-up-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.craft {
    color: black;
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    padding-top: 20px;
    opacity: 0;
    /* Start with opacity 0 */
    transform: translateY(40px);
    /* Start from below */
    transition:
        opacity 1s ease-out 0.2s,
        /* 1s delay for opacity */
        transform 0.5s ease-out 0.2s;
    /* 0.5s delay for transform */
}

.craft-show {
    opacity: 1;
    /* Full opacity */
    transform: translateY(0);
    /* End at normal position */
}

.second-heading {
    font-size: 95px;
    margin: 0;
    font-weight: 700;
    color: black;
    text-transform: uppercase;
    line-height: 75px;
    padding-top: 30px;
    letter-spacing: 0px;
}

.second-heading a {
    color: black;
}

.one,
.two,
.three,
.four {
    display: inline-block;
    transform: translateY(40px);
    opacity: 0;
}

.four {
    padding-bottom: 30px;
}

.animate-in .one {
    animation: dropIn 0.6s forwards;
}

.animate-in .two {
    animation: dropIn 0.8s forwards;
}

.animate-in .three {
    animation: dropIn 1s forwards;
}

.animate-in .four {
    animation: dropIn 1.2s forwards;
}

@keyframes dropIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* For .header-para */
.header-para {
    color: #6E7070;
    font-weight: 400;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    font-size: 18px;
    padding: 15px 0px;
    line-height: 35px;
    transform: translateY(40px);
    /* Start from below */
    opacity: 0;
    /* Start with opacity 0 */
    transition:
        opacity 0.6s ease-out 0.2s,
        /* 0.6s for opacity */
        transform 0.6s ease-out 0.2s;
    /* 0.6s for transform */
}

/* Add animation for .header-para when it is in the viewport */
.header-para.show {
    opacity: 1;
    /* Full opacity */
    transform: translateY(0);
    /* End at normal position */
}

.partner-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px;
}

.partner {
    height: auto;
    width: 150px;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh; /* Full screen height */
  width: 100%; /* Full screen width */
  background-color: white;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  opacity: 0;
  pointer-events: none;
  display: flex; /* Needed to center content */
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
}

.sidebar.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.sidebar .nav-mid-text {
    font-size: 25px;
    font-weight: 500;
    padding: 5px 0;
    cursor: pointer;
    color: black;
    text-align: center;
    align-items: center;
}

.sidebar-content {
    text-align: center;

}

.close-btn {
    font-size: 30px;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 20px;
    padding-right: 20px;
}

/* selected-work-section-01 */
.selected-work-section {
    background-color: #F8F8F8;
}

.selected-work-header {
    padding: 80px 80px;
}

.section-number {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}

.project {
    margin: 0;
    font-weight: 900;
    font-size: 175px;
    line-height: 140px;
    text-transform: uppercase;
    letter-spacing: -5px;
}

.project a {
    color: black;
}

.project-minihead {
    margin: 0;
    font-weight: 700;
    font-size: 70px;
    line-height: 70px;
    padding-top: 30px;
}

.project-img-section {
    display: flex;
}

.project-img-section-grid {
    position: relative;
    overflow: hidden;
    width: 50%;
}

.craft-grid {
    color: black;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    padding-top: 20px;
}

.arrow {
    background-color: #0d0d0d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    display: none;
    /* Hidden initially */
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease-out;
}

.project-img-wrapper {
    height: 80vh;
    overflow: hidden;
    /* Prevent scrollbars on zoom */
}

.project-img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-img:hover {
    transform: scale(1.1);
    /* Zoom in by 10% */
}

.project-img-header-section {
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
}

/* selected-work-section-02 */
.selected-work-section-two {
    background-color: #FFFFFF;
}

.project-img-section-grey {
    display: flex;
    background-color: #F8F8F8;
}

.service-grid-content {
    padding: 15px 30px;
}

.service-grid-content-about {
    color: #6B6D6D;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    padding: 25px 0px;
}

.brand {
    display: flex;
    gap: 50px;
}

.brand-option {
    margin: 0;
    font-size: 20px;
    font-weight: 700;

}

/* selected-work-section-03 */
.testimonial-grid {
    display: flex;
}

.testimonial-grid-box {
    background-color: #F8F8F8;
    padding: 80px;
    width: 34%;
}

.testimonial-grid-box-grey {
    background-color: #EEEEEE;
    padding: 80px;
    width: 34%;
}

.icon {
    width: 35px;
    height: auto;
    padding-bottom: 30px;
}

.testimonial-head {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

/* For .header-para */
.testimonial-para {
    color: #6E7070;
    font-weight: 400;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    font-size: 16px;
    padding: 15px 0px;
    line-height: 25px;

}

.about-detail {
    color: #6B6D6D;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    padding: 0px 0px;
    margin: 0;
}

.testimonial-grid-profile {
    display: flex;
    gap: 20px;
}

.client {
    width: 60px;
    height: auto;
    border-radius: 100%;
}

.client-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    padding-top: 5px;
}

/* footer */
.footer {
    padding: 40px;
    background-color: #0d0d0d;
    display: flex;
    flex-direction: column;

}

.footer-logo {
    margin: 0;
    color: white;
    font-weight: 900;
    font-size: 150px;
    text-align: left;
    padding-left: 20px;
}

.footer-logo a {
    color: white;
}

.logo .copyright {
    font-size: 2rem;
    border: 3px solid white;
    border-radius: 50%;
    padding: 0.25em 0.4em;
    margin-left: 20px;
}

.footer-sections {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 40px;
}

.section {
    flex: 1 1 200px;
    margin: 20px;
}

.section h4 {
    font-style: italic;
    color: #ccc;
    margin-bottom: 10px;
}

.section ul {
    list-style: none;
    padding: 0;
}

.section li {
    margin-bottom: 10px;
}

.section a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: color 0.2s;
}

.section a:hover {
    color: #999;
}

.btn-template {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: white;
    color: black;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}

.btn-template.small {
    font-size: 12px;
    padding: 8px 16px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.footer-bottom {
    position: relative;
    width: 100%;
    text-align: center;
}

.cart {
    color: white;
}

.footer-bottom a {
    color: white;
    font-style: italic;
    text-decoration: underline;
}

.footer-bottom p {
    color: white;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
}