body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* PARALLAX HERO */
.hero {
    height: 100vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: white;
}

/* GLASS OVERLAY */
.overlay {
    width: 100%;
    height: 100%;
    display: flex;
}

/* NAV LINK ANIMATION */
.nav-link {
    position: relative;
    transition: 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background: var(--ppc-pink);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* ACTIVE NAV */
.nav-link.active {
    color: var(--ppc-pink) !important;
}

.navbar {
    height: 100px;
}

.navbar-brand img {
    height: 90px;
}

/* CARD HOVER */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}
.card-body p {
    min-height: 60px;
}
.card-body h5 {
    font-weight: 600;
}
.card-body p {
    line-height: 1.4;
}
/* IMAGE ZOOM */
img {
    transition: transform 0.4s ease;
}

img:hover {
    transform: scale(1.05);
}

/* BUTTON EFFECT */
.btn-ppc {
    position: relative;
    overflow: hidden;
}

.btn-ppc::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.2);
    transition: 0.4s;
}

.btn-ppc:hover::after {
    width: 100%;
}
.navbar.scrolled {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
#aboutCarousel img {
    height: 350px;
    object-fit: cover;
}

.logo {
    max-width: 500px;
    width: 90%;
    margin-bottom: 20px;

    animation: rotate3D 8s linear infinite;
    transform-style: preserve-3d;
    backface-visibility: visible;
  }

  .tagline {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #014532;
    animation: floatFade 3s ease-in-out infinite;
  }

  @keyframes rotate3D {
    0% {
      transform: rotateY(0deg) rotateX(10deg);
    }
    100% {
      transform: rotateY(360deg) rotateX(10deg);
    }
  }

  @keyframes floatFade {
    0% {
      opacity: 0.6;
      transform: translateY(5px);
    }
    50% {
      opacity: 1;
      transform: translateY(0px);
    }
    100% {
      opacity: 0.6;
      transform: translateY(5px);
    }
  }
  .linker:hover {
    cursor: pointer;
  }
  .vlink {
    color: var(--bs-secondary-color);
    text-decoration: none;
    transition: 0.3s;
  }
  a.vlink {
    color: var(--bs-secondary-color);
    text-decoration: none;
  }
  a.vlink:hover {
    color: #000000;
    text-decoration: underline;
  }
a.boldlink {
    font-weight: 500;
    color: var(--ppc-pink);
    text-decoration: none;
    transition: 0.3s;
}
a.boldlink:hover {
    color: #000000;
    text-decoration: underline;
}