/* ===============================
   GLOBAL STYLES
================================ */



body {
  background-color: #000;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

section {
  padding: 100px 0;
  scroll-margin-top: 100px;
}

.section-dark {
  background-color: #0f0f0f;
}


/* ===============================
   HERO
================================ */

#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: url('/assets/images/hero.jpg') center/cover no-repeat;
}

#home {
  position: relative;
  z-index: 1;
}

#home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8); 
  z-index: -1;
}


/* ===============================
   LOGO
================================ */
.tj-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 991px) {
  .tj-logo {
    height: 35px;
  }
}

/* ===============================
   TYPOGRAPHY
================================ */
.tj-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.tj-text-muted {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

.tj-text {
  color: #000;
  font-weight: 500;
}
/* ===============================
   BUTTONS
================================ */
.tj-btn-primary {
  background-color: #ffcc00;
  color: #000;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 20px;
  transition: 0.3s;
  text-decoration: none;
 
}

.tj-btn-primary:hover {
  background-color: #fff;
  color: #000;
}



/* ===============================
   SERVICES STATS
================================ */

.tj-stats {
  margin-top: 60px;
}

.tj-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}

.tj-stats p {
  margin-top: 5px;
  font-size: 0.95rem;
}


/* ===============================
   CLIENT LOGOS
================================ */

.tj-client-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: 0.3s;
  display: block;
  margin: 0 auto;
}

.tj-client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}




/* ===============================
   PORTFOLIO (PREMIUM MINIMAL)
================================ */

/* FILTER */
.tj-portfolio-filter {
  margin-bottom: 50px;
}

.tj-portfolio-filter span {
  margin: 0 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #aaa;
  position: relative;
  transition: 0.3s;
}

.tj-portfolio-filter span.active,
.tj-portfolio-filter span:hover {
  color: #ffcc00;
}

.tj-portfolio-filter span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #ffcc00;
  transition: 0.3s;
}

.tj-portfolio-filter span:hover::after,
.tj-portfolio-filter span.active::after {
  width: 100%;
}

/* ITEMS */
.tj-portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* IMAGE */
.tj-portfolio-item img {
  width: 100%;
  transition: 0.4s ease;
}

/* OVERLAY */
.tj-portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: #fff;
  opacity: 0;
  transition: 0.3s;
}

/* HOVER */
.tj-portfolio-item:hover img {
  transform: scale(1.08);
}

.tj-portfolio-item:hover .tj-portfolio-overlay {
  opacity: 1;
}


/* ===============================
   NAVBAR
================================ */
.navbar {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 15px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.nav-link {
  color: #fff !important;
  margin-left: 15px;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #ffcc00 !important;
}

/* ===============================
   TOGGLER
================================ */
.tj-toggler {
  width: 70px;
  height: 32px;
  border: none;
  background: transparent;
}

.tj-toggler span {
  display: block;
  height: 4px;
  width: 70%;
  background: #fff;
  margin: 6px auto;
  border-radius: 2px;
  transition: 0.3s;
}

.tj-toggler.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.tj-toggler.active span:nth-child(2) {
  opacity: 0;
}

.tj-toggler.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ===============================
   MOBILE MENU
================================ */
@media (max-width: 991px) {

  .navbar-collapse {
    background-color: #000;
    padding: 30px 20px;
  }

  .navbar-nav {
    text-align: left;
    width: 100%;
  }

  .nav-link {
    font-size: 40px;
    padding: 2px 0;
    font-weight: 600;
    letter-spacing: 5px;
    display: block;
  }

}


/* ===============================
   TEAM SECTION
================================ */
#team {
  background-color: #000;
}

/* TEAM CARD */
.tj-team-card {
  text-align: center;
  margin-bottom: 40px;
}

/* IMAGE */
.tj-team-card img {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.tj-team-card:hover img {
  transform: scale(1.05);
}

/* NAME */
.tj-team-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

/* ===============================
   HERO SECTION
================================ */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#home h1 {
  font-size: 3rem;
  font-weight: 700;
}

#typewriter {
  color: #ffcc00;
  display: inline-block;
  min-width: 220px;
  text-align: left;
  position: relative;
}






@keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
/* ===============================
   ABOUT SECTION
================================ */
.tj-about-gold {
  background-color: #ffcc00;
  color: #000;
  padding-top: 100px;
  padding-bottom: 100px;
}

.tj-about-gold h2,
.tj-about-gold p {
  color: #000;
}

.tj-about-img img {
  border-radius: 10px;
  width: 300px;
  display: block;
  margin: 0 auto;
}

.tj-about-content {
  padding-left: 50px;
}

.tj-value-item i {
  font-size: 50px;
  margin-bottom: 15px;
  display: block;
  color: #000;
}

.tj-value-item p {
  font-weight: 600;
  color: #000;
}

.tj-value-item:hover i {
  transform: scale(1.1);
  transition: 0.3s;
}

/* ABOUT MOBILE */
@media (max-width: 991px) {
  .tj-about-gold {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .tj-about-content {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
  }
}

/* ==========
   SERVICES 
============= */

/* SECTION */
#services {
  background: #ffcc00;
  color: #000;
}

/* CARD */
.tj-service-card {
  background: transparent;
  color: #000;
  padding: 30px;
  border: 2px solid #000;
  transition: all 0.3s ease;
  height: 100%;
}

/* TITLE */
.tj-service-card h5 {
  font-weight: 900;
  margin-bottom: 17px;
}

/* LIST */
.tj-service-card ul {
  padding-left: 18px;
  margin: 0;
}

.tj-service-card li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* HOVER */
.tj-service-card:hover {
  background: #000;
  color: #fff;
  transform: translateY(-5px);
}

.tj-service-card:hover h5,
.tj-service-card:hover li {
  color: #ffffff;
}

/* HOVER */
.tj-service-card:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-5px);
}

/* ===============================
   PORTFOLIO
================================ */
.tj-portfolio-item {
  position: relative;
  overflow: hidden;
}

.tj-portfolio-item img {
  width: 100%;
  display: block;
  transition: 0.3s;
}

.tj-portfolio-item:hover img {
  transform: scale(1.1);
}


/* ===============================
   CONTACT SECTION
================================ */

#contact {
  background: #ffcc00;
  color: #000;
}

/* MAP */
.tj-map iframe {
  border-radius: 10px;
}

/* CONTACT INFO */
.tj-contact-info p {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* SOCIAL ICONS */
.tj-contact-social a {
  display: inline-block;
  margin-right: 15px;
  font-size: 22px;
  color: #000;
  transition: 0.3s;
}

.tj-contact-social a:hover {
  color: #fff;
}

/* ===============================
   FOOTER
================================ */
footer {
  background-color: #000;
}