/*
Theme Name: Pixel & Pepper
Theme URI: http://example.com/pixel-and-pepper
Author: Your Name
Author URI: http://example.com
Description: A custom theme for Pixel & Pepper agency.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pixel-and-pepper
*/
  :root {
  --primary-color: #CFE621;
  --secondary-color: #d4ff00;
  --accent-color: #d5e312;
  --black: #000;
  --white: #fff;
  --gray-light: #f9f9f9;
  --gray-dark: #090909;
  --text-light: #aaa;
  --font-base: "DM Sans", sans-serif;;
  --font-accent: "DM Serif Display", serif;
  --font-accent-text: "DM Serif Text", serif;
}

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body, html {
     font-family: var(--font-base);
  scroll-behavior: smooth;
  overflow-x: hidden;
    }
    .subcaption{
        font-size: 16px;
    }
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      background: #000;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .logo {
     max-height: 60px;
    }
    .menu li{
      display:inline-block;
    }
    nav a {
      margin: 0 15px;
        font-family: "DM Sans", sans-serif;
        font-weight: 400;
      text-decoration: none;
   color: var(--black);
    }
    .cta {
       font-family: "DM Sans", sans-serif;
        background-color:#DCF32A;
 color: var(--black);
      padding: 15px 40px;
      font-size: 16px;
      border-radius: 200px;
      border: none;
      font-weight:400;
      cursor: pointer;
      text-decoration: none;
    }
    .hero {
      text-align: center;
      padding: 80px 20px;
      /* background: url('https://picsum.photos/1600/900?blur=2') center/cover no-repeat; */
    color: var(--white);
      position: relative;
    }
    .hero::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /* background: rgba(0,0,0,0.6); */
    }
    .hero-content {
      position: relative;
      z-index: 1;
    }
    .hero h1 {
      font-size: 70px;
       color: var(--black);
        font-family: "DM Sans", sans-serif;
        font-weight: 500;
    }
    .hero  h1 span {
 color: var(--primary-color);
  font-family: var(--font-accent);
  font-weight: 600;
  font-style: italic;
    }
    .section {
      padding: 30px 20px;
     
      margin: 0 auto;
    }
    .parallax-text {
      /* background: url('https://picsum.photos/1600/700?grayscale') center/cover fixed no-repeat; */
      color: #fff;
      text-align: center;
      padding: 120px 20px;
      font-size: 1.5rem;
      font-style: italic;
    }
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
    .service-item {
      background: #000;
      color: #fff;
      padding: 30px;
      text-align: center;
    }
    .highlight {
      color: var(--primary-color);
  font-family: var(--font-accent-text);
    }
    .portfolio {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .portfolio img {
      width: 100%;
      height: auto;
      display: block;
    }
    .testimonial {
      background: #f9f9f9;
      padding: 60px 20px;
      text-align: center;
      font-style: italic;
    }
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .contact-form input, .contact-form textarea {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    .footer {
     background: var(--gray-dark);
  color: var(--white);

      padding: 40px 20px;
      text-align: center;
    }
    .footer a {
      color: #fff;
      text-decoration: none;
      margin: 0 10px;
    }
    .footer-logo {
  max-height: 60px;
}
.footer p{
font-weight: 400;
font-size: 16px;
line-height: 200%;
letter-spacing: 0%;
text-align: left;
}
.footer h6{
 color: #8B8B8B;
 text-align: left;
font-weight: 400;
font-size: 16px;
line-height: 200%;
letter-spacing: 0%;

}
.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
}

.footer-heading .highlight {
  color: #d5e312;
  font-style: italic;
  font-weight: 600;
}

.btn-footer {
  background-color: #d5e312;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.btn-footer:hover {
  background-color: #c5d100;
  color: #000;
}

.circle-icon {
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-link {
  color: #fff;
  margin-left: 1rem;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-link:hover {
  text-decoration: underline;
}
.scrolling {
  height: 50vh;
  padding: 0 clamp(4rem, 12vw, 20rem);
  display: grid;
  place-content: center;
  margin-bottom: 40px;
}

.scrolling p {
  font-size: 66px;
  line-height: 80px;
}
    .section-header {
      padding: 2rem 1rem;
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 1px;
    }

    .brand-text {
      font-size: 45px;
      font-weight:400;
      text-transform: capitalize;
    }

    .highlight {
          color: #CFE621;
     font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: italic;
    }

    .service-box {
      padding: 2rem;
      border-bottom: 1px solid #333;
      transition: background-color 0.4s ease;
      position: relative;
      opacity: 0;
      transform: translateY(50px);
    }

    .service-box:hover {
      background-color: #111;
    }
.service-number,
.service-title,
.service-desc {
  margin-bottom: 0 !important;
  white-space: nowrap;
}

    .service-number {
      font-size:10px;
      color: #CCCCCC;
    }

    .service-title {
      font-size:40px;
      font-weight: 400;
    }

    .service-desc {
      font-size: 0.9rem;
      color: #aaa;
    }

    .service-arrow {
      position: absolute;
      right: 2rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.2rem;
      background: var(--secondary-color);
  color: var(--black);
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .service-box:hover .service-arrow {
      /* transform: translateY(-50%) rotate(90deg); */
    }

    .highlighted {
      border: 2px solid #00aaff;
    }
    #services{
          background-color: #000;
          color: #fff;
          padding:30px 20px 100px 20px;
    }
    .service-arrow {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background: #d4ff00;
  color: #000;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show arrow on hover */
.service-box:hover .service-arrow {
  opacity: 1;
  pointer-events: auto;
}

/* Animate arrow on hover */
.service-arrow:hover {
  /* transform: translateY(-50%) rotate(90deg) scale(1.1); */
}
 .section-title {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #fff;
    }
.section-title-dark {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #000000;
    }
    .headline {
    font-size: 45px;
  font-weight: 400;
  line-height: 110%;
  text-transform: capitalize;
    }

    .headline .highlight {
     color: #CFE621;
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: italic;
    }

    .btn-see-more {
      background-color: #CFE621;
      color: #000;
      border: none;
      padding: 0.6rem 1.4rem;
      border-radius: 2rem;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: background 0.3s ease;
    }

    .btn-see-more:hover {
      background-color: #a4c800;
    }

    .arrow-circle {
      background-color: #000;
      color: #fff;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .btn-see-more:hover .arrow-circle {
      transform: rotate(90deg);
    }
.arrow-circle-dark{
   background-color:#fff;
      color:  #000;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
}
.btn-see-more:hover .arrow-circle-dark {
      transform: rotate(90deg);
    }
    .features-grid {
      
    }

    .feature-item {
      padding: 2rem;
      border-right: 1px solid #eee;
      border-bottom: 1px solid #eee;
      min-height: 150px;
      display: flex;
    }
.feature-item:nth-child(3){
 border-bottom: none;
}
.feature-item:nth-child(4){
 border-bottom: none;
  border-right: none;
}
.feature-item:nth-child(2){

  border-right: none;
}
section{
  margin: 40px 0;
}
    .feature-icon {
      font-size: 2rem;
      color: #ccc;
      margin-bottom: 1rem;
    }

    .feature-text {
    font-size: 25px;
  font-weight: 400;
  text-align: left;
    }
     .portfolio-title {
      font-size: 2rem;
      font-weight: 500;
      line-height: 1.4;
      margin-bottom: 50px;
    }

    .portfolio-title span {
      font-style: italic;
      font-weight: 400;
      color: #d4ff00;
    }
.portfolio-section{
 background: var(--gray-dark);
  color: var(--white);
  padding:60px 20px 60px 20px;
}
    .portfolio-card {
      overflow: hidden;
      border-radius: 0.75rem;
      transition: transform 0.3s ease-in-out;
      margin:20px 0;
    }

    .portfolio-card img {
      height: auto;
      display: block;
    }

    .caption {
      margin-top: 15px;
    }

    .caption small {
      display: block;
      color: #aaa;
      font-size: 0.9rem;
    }

    .caption h5 {
      font-size: 1.1rem;
      font-weight: 400;
      margin: 5px 0 0;
    }

    .view-all-btn {
      background-color: #d4ff00;
      color: #000;
      border-radius: 30px;
      padding: 10px 30px;
      font-weight: 500;
      border: none;
      transition: background-color 0.3s ease;
    }

    .view-all-btn i {
      margin-left: 10px;
    }

    .view-all-btn:hover {
      background-color: #eaff55;
    }

    .btn-wrapper {
      margin-top: 40px;
    }
    .step-card {
      background-color: #fff;
    border: 0.5px solid #E7E7E7;
      border-radius: 25px;
      text-align: center;
      padding: 30px 20px;
      color: #000;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }

    .step-card:hover {
      transform: translateY(-5px);
    }

    .step-number {
      font-size: 90px;
  font-weight: 600;
  opacity: 0.1;
  background: linear-gradient(150.07deg, #FEFEFE 8.29%, #F0F0F0 93.57%);
    }

    .step-title {
    color: #000000;
font-weight: 400;
font-size: 25px;
line-height: 110.00000000000001%;
letter-spacing: 0%;
text-align: center;
margin-bottom: 20px;
height: 65px;
    }

    .step-text {
color: #000000;
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0%;
  text-align: center;

    }

    .testimonial-text {
      font-size: 1.1rem;
      font-weight: 300;
      line-height: 1.8;
      margin-top: 30px;
      color: var(--white);
      max-width: 900px;
    }
    .section-dark{
    background: var(--gray-dark);
  color: var(--white);
  padding:60px 20px 60px 20px;
    }
    /* Testimonial Text */


/* Author Image */
.owl-carousel .item img {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #fff;
}

/* Author Info */
.owl-carousel .item h6 {
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.owl-carousel .item small {
  color: #aaa;
}

/* Owl Carousel Nav Buttons */
.owl-nav {
  display: flex;
  justify-content: flex-start;
  margin-top: 40px;
  gap: 15px;
}

.owl-nav button {
  background-color: transparent;
  border: none;
  outline: none;
}

.owl-nav button span {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #d4e115;
  color: #000;
  font-size: 1.5rem;
  line-height: 48px;
  text-align: center;
  transition: background 0.3s ease;
}

.owl-nav button span:hover {
  background-color: #c0d408;
  color: #000;
}

/* Optional: Hide Dots */
.owl-dots {
  display: none;
}
  .testimonial-section {
      padding: 60px 0;
    }

    .testimonial-nav {
      display: flex;
      gap: 15px;
      margin-top: 40px;
    }

    .custom-nav-btn {
      border: none;
      background: none;
      cursor: pointer;
      outline: none;
    }

    .custom-nav-btn span {
      display: inline-block;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background-color: #d4e115;
      color: #000;
      font-size: 1.5rem;
      line-height: 48px;
      text-align: center;
      transition: background 0.3s ease;
    }

    .custom-nav-btn span:hover {
      background-color: #c0d408;
    }

    .testimonial-section small {
      color: #aaa;
    }
        .form-control,
    textarea.form-control {
      border: none;
      border-bottom: 1px solid #ccc;
      border-radius: 0;
      background-color: transparent;
      color: #000;
      padding-left: 0;
      padding-right: 0;
    }

    .form-control:focus {
      border-bottom: 1px solid #d4e115;
      box-shadow: none;
    }

    .form-label {
      font-weight: 500;
    }

    .submit-btn-wrapper {
      display: flex;
      align-items: center;
      gap: 0;
      margin-top: 30px;
    }
    .submit-btn-wrapper p{
      display: flex;
      align-items: center;
      gap: 0;
      margin-top: 30px;
    }
    .btn-custom-submit {
      background-color: #d4e115;
      color: #000;
      border: none;
      padding: 12px 30px;
      border-radius: 30px;
      font-weight: 500;
    }

    .btn-custom-icon {
      background-color: #000;
      color: #fff;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      border: none;
    }
    @media (min-width: 768px) {
  .col-md-2 {
    flex: 0 0 auto;
    width: 19%;
  }
}
@media (min-width:999px){
  .owl-carousel .item p {
  font-size: 25px !important;
  line-height: 200%;
    color: var(--white);
}
}
/* For tablets (768px and down) */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
    flex-direction: row;
    align-items: center;
  }

  .hero h1 {
    font-size: 40px;
  }

  .scrolling p {
    font-size: 40px;
    line-height: 50px;
  }

  .brand-text {
    font-size: 30px;
  }

  .headline {
    font-size: 30px;
  }

  .portfolio-title {
    font-size: 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

/* For mobile devices (480px and down) */
@media (max-width: 600px) {
  nav a {
    display: block;
    margin: 10px 0;
  }

  .cta {
    padding: 6px 20px;
    font-size: 14px;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .scrolling p {
    font-size: 30px;
    line-height: 40px;
  }

  .service-title {
    font-size: 18px;
  }

  .feature-text {
    font-size: 18px;
  }

  .step-number {
    font-size: 60px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-text {
    font-size: 13px;
  }

  .portfolio-title {
    font-size: 1.2rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .btn-see-more,
  .view-all-btn {
    padding: 0.5rem 1rem;
    font-size: 14px;
  }

  .arrow-circle,
  .arrow-circle-dark {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  .section-header{
gap:30px;
display: block !important;
  }
  .scrolling {
  height: auto;
  padding: 20px;
  display: grid;
  place-content: center;
  margin-bottom: 40px;
}
.subcaption {
  font-size: 14px;
}
.section {
  margin: 40px 20px;
}
.section-title-dark{
  margin-bottom: 20px;
}
.feature-item{
  align-content: center;
  align-items: center;
  gap: 30px;
}
.service-flex{
  width:100%;
}
.testimonial-section{
  padding: 30px 20px;
}
.owl-carousel .item p {
  font-size: 16px !important;
  line-height: 200%;
  color: var(--white);
}
}
.contact-section form{
margin-top:20px;
}
  .nisoz-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
 background-color: #d4e115;
  color: #000;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: 500ms;
  overflow: hidden;
  z-index: 2;
  position: relative;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  -webkit-transition-delay: calc((var(--n) - 1) * 0.1s);
  -moz-transition-delay: calc((var(--n) - 1) * 0.1s);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  text-decoration: none;
}

.nisoz-btn__text {
  position: relative;
  z-index: 2;
}

.nisoz-btn__shape {
  display: inline-block;
  position: absolute;
  width: 25%;
  height: 100%;
  background: var(--black);
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--b) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--b) - 1) * 0.1s);
  z-index: 1;
}

.nisoz-btn__shape:nth-child(1) {
  --b: 1;
}

.nisoz-btn__shape:nth-child(2) {
  --b: 2;
}

.nisoz-btn__shape:nth-child(3) {
  --b: 3;
}

.nisoz-btn__shape:nth-child(4) {
  --b: 4;
}

.nisoz-btn:hover {
  color: var(--white);
}

.nisoz-btn:hover .nisoz-btn__shape {
  transform: translateY(0) scale(2);
  -moz-transform: translateY(0) scale(2);
  -moz-transform: translateY(0) scale(2);
}
/* Hamburger Icon */
/* Desktop Navigation */
.main-nav .nav-menu {
  display: flex;
  gap: 30px;
}

.main-nav .nav-menu li {
  list-style: none;
}

.main-nav .nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

/* Hide sidebar & hamburger on desktop */
@media (min-width: 768px) {
  .sidebar-nav,
  .menu-toggle {
    display: none !important;
  }
}

/* Mobile Sidebar Styles (same as before) */
.sidebar-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100%;
  background: #fff;
  padding: 30px 20px;
  transition: right 0.3s ease;
  z-index: 9999;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}
.sidebar-nav.open {
  right: 0;
}
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  height: 3px;
  background: #fff;
  border-radius: 2px;
}
.close-menu {
  background: none;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}
#sidebar-nav ul li{
list-style:none;
padding:10px 5px;
}
#sidebar-nav ul li a{
	text-decoration: none;
  color: #333;
  font-weight: 500;
}
.wpcf7-spinner{
	display:none;
}