body {
  background-color: #0e0e0e;
  color: #fff;
  font-family: Arial, sans-serif;
}

.nutz-header {
  font-size: 4.1rem;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #fff;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nutz-text {
  font-size: 1rem;
  text-align: left;
  text-transform: uppercase;
}

.nutz-text.planning {
  font-size: 1.5rem;
  color: #ffff;
}

.nutz-text.strategy {
  font-size: 1.5rem;
  color: #ffff;
}

.nutz-text.results {
  font-size: 1.5rem;
  color: #ffff;
}

.image-grid img {
  filter: grayscale(100%);
  width: 100%;
  height: auto;
}

.logo-gradient {
  background: linear-gradient(to right, #f87171, #facc15, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .nutz-header {
    font-size: 1.5rem;
  }

  .nutz-text {
    font-size: 1.25rem;
  }
}

.profile-img {
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

.profile-img img {
  width: 80%;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%);
}

.title-main {
  text-align: start;
  font-size: 3em;
  font-weight: bolder;
  margin: 0;
  line-height: 1;
  color: #fff;
}

.subtitle {
  font-size: 1.5em;
  color: #ccc;
  margin: 10px 0;
}

.designation-txt {
  color: #ccc;
  font-style: italic;
}

.description {
  max-width: 600px;
  line-height: 1.5;
  text-align: start;
}

.stats {
  display: flex;
  justify-content: space-around;
  max-width: 400px;
  margin: 30px auto;
}

.stat {
  text-align: center;
}

.stat .number {
  font-size: 3.5rem;
  color: #fd3db5;
  font-weight: bold;
  display: inline-block;
  transition: all 2s ease;
}

.stat p {
  margin: 5px 0 0;
  color: #fff;
}

@keyframes countUp {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotatePlus {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseDivider {
  0% {
    transform: scaleX(1);
  }

  50% {
    transform: scaleX(1.1);
  }

  100% {
    transform: scaleX(1);
  }
}

.section {
  animation: fadeInUp 1s ease-out;
}

.section.about-nutz .col-md-6:first-child {
  animation: slideInLeft 1s ease-out;
}

.section.about-nutz .col-md-6:last-child {
  animation: slideInRight 1s ease-out;
}

.section.planning-strategy .col-md-2 {
  animation: scaleIn 1s ease-out;
}

.section.planning-strategy .col-md-10 {
  animation: slideInRight 1s ease-out;
}

.section.team .col-md-5:first-child {
  animation: slideInLeft 1s ease-out;
}

.section.team .col-md-5:last-child {
  animation: scaleIn 1s ease-out;
}

.section.team .col-md-2 {
  animation: slideInRight 1s ease-out;
}

.section.services .col-md-6:first-child {
  animation: slideInLeft 1s ease-out;
}

.section.services .col-md-6:last-child {
  animation: slideInRight 1s ease-out;
}

.section.imagination .text-box {
  animation: fadeInUp 1s ease-out;
}

.section.portfolio .col-md-7 {
  animation: slideInLeft 1s ease-out;
}

.section.portfolio .col-md-5 {
  animation: scaleIn 1s ease-out;
}

.plus-sign {
  font-size: 2em;
  color: #ffd700;
  animation: rotatePlus 2s infinite linear;
}

hr.custom-divider {
  border: 5px solid #fff;
  margin: 50px 0;
  animation: pulseDivider 2s infinite;
}

.tabs {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  color: #ccc;
  margin: 10px 0px;
  font-weight: bold;
}

.tab.active {
  color: #ffd700;
  border-bottom: 2px solid #ffd700;
}

.content {
  display: none;
}

.content.active {
  display: block;
}

.wrapper {
  position: relative;
  text-align: left;
  width: 100%;
  height: 100%;
}

.bg-layer {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("img/bg-1.jpg") no-repeat center center;
  background-size: cover;
  opacity: 0.7;
  z-index: 0;
}

.text-box {
  position: relative;
  z-index: 1;
  padding: 50px;
  max-width: 50%;
}

.primary-heading {
  font-size: 6em;
  font-weight: bold;
  margin: 0 0 20px 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.secondary-text {
  margin: 20px 0;
  font-weight: bold;
}

.direction-symbol {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 3em;
  transform: rotate(45deg);
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: #003cff17;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}
.jump {
    animation: jump 1.2s infinite;
}
.jump a:hover {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}
@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@media only screen and (max-width: 600px) {
  .nutz-text {
    text-align: center !important;
  }
  .nutz-header {
    text-align: center !important;
  }
  .section.team .subtitle,
  .section.team .designation-txt,
  .section.team .description {
    text-align: center !important;
  }
  .service-des {
    text-align: center !important;
  }
  .imagination .bg-layer {
    display: none !important;
  }
  .imagination .text-box {
    width: 100%;
    padding: 20px;
    max-width: 100%;
  }
  .imagination .secondary-text,
  .imagination .description,
  .portfolio .description {
    text-align: center !important;
  }
}
