/* Basic Reset */
html {
  scroll-behavior: smooth;
  /* This enables smooth scrolling for the whole page */
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: 'Migha Condensed';
  src: url('./font/Migha-Black.woff') format('woff'),
    url('./font/Migha-BlackSemiExpandedCNTR.woff') format('woff'),
    url('./font/Migha-Bold.woff') format('woff'),
    url('./font/Migha-Medium.woff') format('woff'),
    url('./font/Migha-Regular.woff') format('woff');
  font-weight: normal;
  font-weight: 400;
  font-weight: 500;
  font-weight: 700;
  font-weight: 900;
  font-weight: 950;
}





/* navbar  */
.navbar {
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed; /* Changed from absolute to fixed */
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 10; /* Lower than top-bar (10000) */
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.navbar.visible {
  opacity: 1;
  visibility: visible;
}


.nav-wbg {
  background-color: #fff;
  height: 100vh;
  width: 100vh;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: -1;
  transform: scale(0); /* start small */
  transition: transform 1.5s ease;
}

.navbar.visible .nav-wbg {
  transform: scale(1); /* scale to full size */
}

.nav-b-bg {
  background-color: #000;
  height: 95vh;
  width: 95vh;
  border-radius: 50%;
  position: relative;
  z-index: -1;
  transform: scale(0);
  transition: transform 1.3s ease 0.4s; /* delay for layered effect */
}

.navbar.visible .nav-b-bg {
  transform: scale(1);
}
.nav-close {
  width: 35px;
  height: 35px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: 20px;        /* distance from the top */
  left: 50%;        /* move to center horizontally */
  transform: translateX(-50%); /* truly center it */
  border: 1px solid #fff;
  display: flex;    /* to center image inside */
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.close-plus {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.6s ease;
}
.close-plus.rotated {
  transform: rotate(360deg);
}
.nav-list {
  text-transform: uppercase;
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  position: relative;
  overflow: hidden; /* Hide content while sliding */
}
.nav-list a{
 color: #fff;
}

.list.section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Perfect centering */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.navlist-icon {
  position: absolute;
  bottom: 20px;           /* distance from the bottom */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  justify-content: center;
}

.nav-icon {
  height: 20px;
  width: 20px;
  background-color: #000;
  padding: 5px;
  border-radius: 100%;
  border: 1px solid #fff;
}


/* top-section */
.top-container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 20px 40px;
  background: #f2f2f2;
  color: #000;
  overflow: hidden;
  z-index: 1;
}

.top-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to top, white 0%, transparent 20%, transparent 80%, white 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.top-container.fade-edges::after {
  opacity: 0.3;
}

/* Top Bar */
.top-bar {
  top: 0;
  left: 0;
  right: 0;
  padding: 0px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999; /* Highest z-index on the page */
  background-color: transparent;
  pointer-events: auto; /* Ensures clicks work */
}

.bottom-bar {
  position: relative;
  z-index: 20;
}

.logo-circle {
  background: #000;
  color: #fff;
font-family: 'Migha Condensed', Impact, sans-serif;
  width: 40px;
  height: 37px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  line-height: 1; /* Optional: ensures consistent vertical centering */
}
.logo-circle a{
  color: #fff;
}


.black-r {
  background-color: #000;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  margin-left: 120px;
  position: relative;
  z-index: 9999;
  display: flex;                /* Add this */
  justify-content: center;      /* Center horizontally */
  align-items: center;    
}

.rotate {
  transform: rotate(360deg);
  transition: transform 0.3s ease;
}

.plus {
  transition: transform 0.6s ease;
}

.plus.rotated {
  transform: rotate(360deg);
  /* 45, 90, 135, or 180 based on style */
}


.plus {
  height: 25px;
  width: 25px;
  border-radius: 50%;
}

.get-in-touch {
  background: #000;
  color: #fff;
  padding: 14px 25px;
  font-size: 14px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
}
/* Side Text */
.side-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 16px;
}

.left {
  left: 40px;
}

.right {
  right: 40px;
}

/* Brand Name */
@keyframes rotateBackAndForth {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-90deg);
  }

  50% {
    transform: rotate(-180deg);
  }

  75% {
    transform: rotate(-270deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.brand-name {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 245px;
  font-family: 'Migha Condensed', Impact, sans-serif;
  letter-spacing: -5px;
  text-align: center;
  white-space: nowrap;
  transition: transform 1s ease-in-out;
  z-index: 1;
}

/* Bottom Bar */
.bottom-bar {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  padding-bottom: 20px;
}

.social-icons i {
  margin: 0 10px;
  font-size: 20px;
  cursor: pointer;
}

.studio {
  margin: 0;
}

.scroll-down {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon {
  height: 20px;
  width: 20px;
  background-color: #000;
  padding: 5px;
  border-radius: 100%;
}

/* moving-grid */
.moving-grid {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  pointer-events: none;
}

.moving-img-grid {
  position: relative;
  transform: none !important;
}

@keyframes cycleDirections {
  0% {
    transform: translateY(100vh) rotate(-45deg);
    opacity: 0;
  }

  5% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  20% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  24.9% {
    transform: translateY(-100vh) rotate(45deg);
    opacity: 0;
  }

  25% {
    transform: translateX(100vw) rotate(45deg);
    opacity: 0;
  }

  30% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }

  45% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }

  49.9% {
    transform: translateX(-100vw) rotate(-45deg);
    opacity: 0;
  }

  50% {
    transform: translateY(-100vh) rotate(45deg);
    opacity: 0;
  }

  55% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  70% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  74.9% {
    transform: translateY(100vh) rotate(-45deg);
    opacity: 0;
  }

  75% {
    transform: translateX(-100vw) rotate(-45deg);
    opacity: 0;
  }

  80% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }

  95% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateX(100vw) rotate(45deg);
    opacity: 0;
  }
}

.moving-grid-four,
.moving-grid-three,
.moving-grid-two,
.moving-grid-one {
  opacity: 10;
  /* default hidden */
}



.moving-grid-four {
  background-image: url(./images/movingimg4.jpg);
  height: 320px;
  width: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #000;
  animation: cycleDirections 27s ease-in-out infinite;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;

}

.moving-grid-three {
  background-image: url(./images/movingimg3.jpg);
  height: 290px;
  width: 290px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #000;
  animation: cycleDirections 27s ease-in-out infinite;
  animation-delay: 0.1s;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.moving-grid-two {
  background-image: url(./images/movingimg2.jpg);
  height: 260px;
  width: 260px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #000;
  animation: cycleDirections 27s ease-in-out infinite;
  animation-delay: 0.2s;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.moving-grid-one {
  background-image: url(./images/movingimg1.jpg);
  height: 230px;
  width: 230px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #000;
  animation: cycleDirections 27s ease-in-out infinite;
  animation-delay: 0.4s;
  position: relative;
  z-index: 4;
}

/* line */
.line-container {
  height: 1px;
  position: relative;
  overflow: hidden;
  background-color: #F8F8F8;
}

.line {
  height: 5px;
  background-color: black;
  width: 0;
  /* Start hidden */
  position: absolute;
  top: 0%;
  left: 0;
  transform: translateY(-50%);
  transition: width 3s ease-in-out;
}

.line.visible {
  width: 100%;
}

/* identity-section */
.identity-section {
  padding: 80px 40px;
  margin: 0 auto;
  background-color: #F8F8F8;
}

.strategy-text {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  line-height: 1.4;
  color: #000000;
}

.strategy-text-left {
  width: 30%;
  text-align: left;
}

.strategy-text-right {
  width: 30%;
  text-align: right;
}

.title {
  text-align: center;
  perspective: 800px;
}

.title h2 {
  font-size: 150px;
  font-weight: bold;
  font-family: 'Migha Condensed', Impact, sans-serif;
  line-height: 1.1;
  margin: 40px 0;
  display: inline-block;
  overflow: hidden;
  transform-style: preserve-3d;
  padding-top: 85px;
}

.title h2 span,
.title h2>span {
  display: inline-block;
  letter-spacing: 2px;
  font-weight: 400;
  transform: translate3d(-30%, 100%, 0) rotateY(120deg);
  opacity: 0;
  filter: blur(2px);
}

/* When animate class is added, play animation */
.title h2.animate span {
  animation: rampUpRotate 0.4s ease-out forwards;
}

@keyframes rampUpRotate {
  0% {
    transform: translate3d(-30%, 100%, 0) rotateY(120deg);
    opacity: 0;
    filter: blur(2px);
  }

  80% {
    filter: blur(0px);
  }

  100% {
    transform: translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
    filter: blur(0);
  }
}

.about-btn {
  display: block;
  /* Make it a block element */
  margin: 30px auto;
  /* Auto left/right margins = horizontal centering */
  padding: 15px 30px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.about-btn:hover {
  background-color: #444;
}

.stats {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding: 50px 0px;
  padding-bottom: 0px;

}

.stat {
  display: flex;
  flex-direction: column;
}

.stat h2 {
  font-size: 100px;
  font-family: 'Migha Condensed', Impact, sans-serif;
  font-weight: 400;
  color: #222;
  margin: 0;
  display: flex;
  align-items: center;
  line-height: 1;
}

.icon-m {
  font-size: 100px;
  font-family: 'Migha Condensed', Impact, sans-serif;
  color: #707070;
  margin: 0;
  font-weight: normal;
  line-height: 1;
  padding-top: 20px;
}

.stat p {
  margin-top: 0px;
  font-size: 16px;
  color: #000000;
  text-align: center;
}

/* Rolling counter styling */
.odometer {
  display: flex;
  align-items: center;
  height: 100px;
  /* Make sure this matches */
  font-size: 100px;
  font-family: 'Migha Condensed', Impact, sans-serif;
  font-weight: 400;
  line-height: 1;
}

.digit-container {
  width: 55px;
  height: 100px;
  /* Changed from 90px to match digit height */
  position: relative;
  overflow: hidden;
  display: inline-block;
  line-height: 1;
}

.digit {
  width: 55px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222;
  line-height: 1;
}


.digit-strip {
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  transition: transform 1.5s ease-in-out;
  line-height: 1;
}


/* Fix for percentage alignment */
.percentage-container {
  display: flex;
  align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stats {
    gap: 40px;
  }

  .stat h2,
  .odometer,
  .icon-m {
    font-size: 70px;
    height: 70px;
  }

  .digit-container {
    width: 40px;
    height: 70px;
  }

  .digit {
    width: 40px;
    height: 70px;
  }
}


/* featured-section */
.featured-section {
  background-color: #F2F2F2;
  padding: 80px 40px;
  margin: 0 auto;
  position: relative;
}

.sticky-container {
  height: 200vh;
  /* Space for both sticky sections */
}

.scroll-container {
  height: 200vh;
  scroll-snap-type: y mandatory;
}

.grid-images-section {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  gap: 30px;
}


.first-section {
  z-index: 1;
}

.second-section {
  z-index: 2;
  margin-top: 100vh;
}

.exploreall-btn {
  position: absolute;
  bottom: 30px;
  /* 30px from bottom of featured-section */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  /* Higher than sticky sections */
  display: block;
  padding: 15px 30px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.number {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  line-height: 1.4;
  color: #000000;
}

.grid-left-one,
.grid-left-two,
.grid-right-one,
.grid-right-two,
.image-grid-title {
  transition: transform 0.3s ease;
  will-change: transform;
}

.second-grid-left-one,
.second-grid-left-two,
.second-grid-right-one,
.second-grid-right-two,
.image-grid-title {
  transition: transform 0.3s ease;
  will-change: transform;
}

.grid-left {
  display: flex;
  justify-content: center;
  /* horizontal center */
  align-items: center;
  /* vertical center */
  width: 100%;
  height: 80vh;
  background-image: url(./images/headphone.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #000;
  padding: 40px;
}

.grid-left-one {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 60vh;
  background-image: url(./images/headphone.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #000;
  padding: 40px;
}

.grid-left-two {
  display: flex;
  justify-content: center;
  /* horizontal centering */
  align-items: center;
  /* vertical centering */
  width: 100%;
  height: 60vh;
  background-image: url(./images/headphone.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #000;
}

.grid-right {
  display: flex;
  justify-content: center;
  /* horizontally center child */
  align-items: center;
  /* vertically center child */
  width: 100%;
  height: 80vh;
  background-image: url(./images/china.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #000;
  padding: 40px;
}

.grid-right-one {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 60vh;
  background-image: url(./images/china.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #000;
  padding: 40px;
}

.grid-right-two {
  background-image: url(./images/china.jpg);
  display: flex;
  justify-content: center;
  /* horizontal centering */
  align-items: center;
  /* vertical centering */
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #000;
}

.image-grid-title {
  font-size: 40px;
  color: #fff;
  margin: 0;
  font-family: 'Migha Condensed', Impact, sans-serif;
  text-transform: uppercase;
}

.second-grid-left {
  display: flex;
  justify-content: center;
  /* horizontal center */
  align-items: center;
  /* vertical center */
  width: 100%;
  height: 80vh;
  background-image: url(./images/apple.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #000;
  padding: 40px;
}

.second-grid-left-one {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 60vh;
  background-image: url(./images/apple.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #000;
  padding: 40px;
}

.second-grid-left-two {
  display: flex;
  justify-content: center;
  /* horizontal centering */
  align-items: center;
  /* vertical centering */
  width: 100%;
  height: 60vh;
  background-image: url(./images/apple.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #000;
}

.second-grid-right {
  display: flex;
  justify-content: center;
  /* horizontally center child */
  align-items: center;
  /* vertically center child */
  width: 100%;
  height: 80vh;
  background-image: url(./images/color.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #000;
  padding: 40px;
}

.second-grid-right-one {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 60vh;
  background-image: url(./images/color.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #000;
  padding: 40px;
}

.second-grid-right-two {
  background-image: url(./images/color.jpg);
  display: flex;
  justify-content: center;
  /* horizontal centering */
  align-items: center;
  /* vertical centering */
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #000;
}

/* service-section */
.service-section {
  padding: 80px 40px;
  margin: 0 auto;
  background-color: #F8F8F8;
  position: relative;
}

.service {
  display: flex;
  gap: 30px;
  position: relative;
}

.service-box-one {
  width: 50%;
}
.service-box-two {
  width: 50%;
}
.service-head-section {
  position: sticky;
  top: 80px; /* Adjust this value as needed */
  align-self: flex-start;
  height: fit-content;
  z-index: 10; /* Ensures it's above overlapping content */
}


.service-box:first-child {
  position: sticky;
  top: 80px;
  align-self: flex-start;
  height: fit-content;
}

.service-box:last-child {
  position: relative;
}

/* Common styles for all service grids */
.service-grid {
  background-color: #F2F2F2;
  padding: 50px;
  border: 1px solid #000;
  margin-bottom: 20px;
  position: sticky;
  will-change: transform;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Individual sticky positions */
.service-grid {
  top: 80px;
  z-index: 4;
}

.service-grid-one {
  top: 80px;
  z-index: 3;
}

.service-grid-two {
  top: 80px;
  z-index: 2;
}

.service-grid-three {
  top: 80px;
  z-index: 1;
}

/* When a grid is active (sticking) */
.service-grid.is-sticking {
  position: sticky;
}

/* When a grid is being overlapped */
.service-grid.is-overlapped {
  transform: translateY(30px);
  opacity: 0.7;
}

.title h2.our {
  font-size: 100px;
  font-weight: bold;
  font-family: 'Migha Condensed', Impact, sans-serif;
  line-height: 1.1;
  margin: 0px 0;
  display: inline-block;
  overflow: hidden;
  transform-style: preserve-3d;
  text-align: left;
  padding-top: 0;
}

.title:has(h2.our) {
  text-align: left;
}

.second-grid-img {
  width: 70px;
}

.service-grid-title {
  font-size: 50px;
  font-family: 'Migha Condensed', Impact, sans-serif;
  font-weight: 400;
  color: #000000;
  margin: 0;
  padding: 20px 0px;
  padding-bottom: 80px;
}

.service-grid-headparagraph {
  font-size: 16px;
  color: #000000;
  margin: 0;
  width: 90%;
}

.explore-btn {
  display: block;
  margin: 30px 0px;
  padding: 15px 30px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  align-items: left;
}

.explore-btn:hover {
  background-color: #444;
}

/* create-section */
.create-section {
  position: relative;
  overflow: hidden;
  background-color: #F2F2F2;
}

.moving-img-grid-create {
  position: relative;
  transform: none !important;
}


.create-section .moving-grid {
  z-index: 1;
}

.create-section .title,
.create-section .about-btn {
  position: relative;
  z-index: 10;

}

.create-section .title {
  padding-top: 90px;
}



/* footer */
.footer {
  background-color: #F2F2F2;
  text-align: center;
  padding: 100px 40px;
  position: relative;
  padding-bottom: 0;
}

.footer-logo .logo-circle {
  background-color: black;
  color: white;
  font-size: 30px;
  font-weight: bold;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo .tagline {
  margin: 20px 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  color: #111;
}

.social-icons-top {
  margin: 20px 0;
  padding-top: 0px;
  display: flex;
  gap: 20px;
}

.social-icons {
  margin: 20px 0;
  padding-top: 50px;
}

.social-icons a {
  text-decoration: none;
  color: white;
  background-color: black;
  display: inline-block;
  margin: 0 10px;
  padding: 12px;
  border-radius: 50%;
  font-size: 20px;
}

.footer-nav {
  margin: 30px 0;
  display: flex;
  justify-content: space-between;
  padding: 30px 0px;
}

.footer-nav a {
  text-decoration: none;
  margin: 0 15px;
  color: black;
  font-size: 18px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  /* Align children to the bottom */
  position: relative;
  /* Needed for .scroll-top absolute positioning */
  gap: 20px;
  color: #666;
  font-size: 14px;
  padding-top: 100px;
  padding-bottom: 60px;
}

.footer-left {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-right {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-left p,
.footer-right p {
  margin: 0;
  line-height: 1.4;
  /* or whatever looks clean */
  display: flex;
  align-items: flex-end;
  /* Ensure text aligns to bottom if needed */
}

.footer-bottom span {
  color: #999;
}

.footer-bottom a {
  color: #666;
  text-decoration: none;
}

.scroll-top {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 70px;
  /* Added to contain the animation */
  overflow: hidden;
  /* Hide the arrow when it moves outside */
}

.scroll-top a {
  background-color: black;
  color: white;
  padding: 40px 33px;
  padding-top: 25px;
  border-radius: 50%;
  display: inline-block;
  font-size: 20px;
  text-decoration: none;
  position: relative;
  /* Added for positioning the icon */
}

.scroll-icon {
  display: block;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scroll-top:hover .scroll-icon {
  transform: translate(-50%, -150%);
  /* Moves up and disappears */
  opacity: 0;
}

.scroll-top .scroll-icon {
  animation: appearFromBottom 0.3s ease;
}

@keyframes appearFromBottom {
  0% {
    transform: translate(-50%, 100%);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

.footer-logo-section {
  background-color: #F2F2F2;
  padding: 10px;
}

.brandova-footer {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-family: 'Migha Condensed', Impact, sans-serif;
  font-size: 290px;
  text-align: center;
  color: #E6E6E6;
}