@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&family=Montserrat:wght@400;600;700;900&display=swap');

/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-weight: 900;
}

/* ================= HTML / BODY ================= */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* Fallback background color for HTML */
html {
  background-color: #0a051f;
  min-height: 100%;
}

/* DARK BACKGROUND */
body {
  background: transparent;
  position: relative;
  overflow-x: hidden;
  color: #ffffff;
  font-size: 16px;
  text-rendering: optimizeSpeed;
}


main,
header,
nav,
footer,
section,
.content {
  position: relative;
  z-index: 1;
}

/* ================= HEADER ================= */

/* ================= DESKTOP TOP NAVIGATION ================= */
.main-nav-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
  transition: all 0.3s ease;
  display: block;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.nav-logo a:hover {
  transform: scale(1.05);
}

.nav-menu-desktop {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-item-desktop {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-item-desktop::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: #00FF85;
  transition: width 0.3s ease;
}

.nav-item-desktop:hover {
  color: #00FF85;
}

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

/* Show desktop nav on desktop screens (768px+) */
@media (min-width: 769px) {
  .main-nav-bar {
    display: block;
    padding-top: 10px;
    /* Reduced from default/inherited */
  }

  .hamburger-btn {
    display: none !important;
  }

  body {
    padding-top: 10px;
    /* Reduced from 50px */
  }
}

/* Hide desktop nav on mobile/tablet */
@media (max-width: 768px) {
  .main-nav-bar {
    display: block;
  }

  .nav-menu-desktop {
    display: none !important;
  }

  .hamburger-btn {
    display: flex;
  }

  body {
    padding-top: 0;
  }
}

#header {
  width: 100%;
  position: relative;
  z-index: 10;
}

#header .container {
  padding: 8px 4%;
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
  #header {
    display: none;
  }
}

/* ========================================= */
/* MORE ABOUT PAGE – DIFFERENT HEADER IMAGE  */
/* ========================================= */
#contact-header {
  width: 100%;
  position: relative;
  z-index: 10;
}

#blog-header {
  width: 100%;
  min-height: 10vh;
  position: relative;
  z-index: 10;
}

.more-about-page #header {
  height: 1100px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 3px;
}

.hero-content h1 span {
  display: block;
  margin-top: 10px;
}

.hero-sub {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 3px;
  color: #ddd;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  display: inline-block;
  margin-top: 28px;
  text-decoration: none;
  color: #fff;
  font-size: 11px;
  letter-spacing: 2px;
}

.scroll-indicator .arrow {
  margin: 10px auto 0;
  width: 18px;
  height: 18px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: bounce 1.6s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }

  50% {
    transform: rotate(45deg) translate(0, 8px);
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}


/* ================= CONTAINER ================= */
.container {
  padding: 80px 10% 60px;
}

/* ================= NAVBAR ================= */
nav {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 0 10%;
  /* Decreased padding to add more space between the logo and menu */
}

nav h5 {
  color: #00E5FF;
  font-size: 26px;
  /* Slightly larger */
  margin: 0;
  white-space: nowrap;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
  -webkit-text-stroke: 1px #00E5FF;
  /* Extra bold effect */
}

nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 15px;
  /* Add some gap between links */
  flex-wrap: wrap;
  /* Wrap links on very small screens */
  justify-content: center;
}

nav ul li {
  list-style: none;
  margin: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  /* Max bold */
  text-transform: uppercase;
  /* Match the heading style */
  padding: 6px 12px;
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 1px;
  -webkit-text-stroke: 0.5px #fff;
  /* Make links ultra-bold */
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 12px;
  width: 0;
  height: 3px;
  background: #00FF85;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: calc(100% - 24px);
}

/* Show top logo and menu on mobile */
@media (max-width: 768px) {
  nav {
    padding: 85px 5% 70px;
    flex-direction: row;
    /* Keep logo and hamburger on same row */
    gap: 15px;
    justify-content: space-between;
    align-items: center;
  }

  /* Hide the old inline menu on mobile */
  nav .nav-menu-desktop,
  .nav-menu-desktop {
    display: none !important;
  }
}

/* ================= CUSTOM CURSOR TRAIL ================= */
.cursor-trail {
  position: absolute;
  /* absolute based on page coordinates */
  height: 3px;
  background: linear-gradient(90deg, #00E5FF, #b785ff, #FF00E5);
  background-size: 200% 200%;
  pointer-events: none;
  z-index: 9999;
  transform-origin: left center;
  border-radius: 10px;
  animation: trailSpread 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  mix-blend-mode: screen;
}

@keyframes trailSpread {
  0% {
    opacity: 1;
    height: 3px;
    filter: hue-rotate(0deg);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.8), 0 0 20px rgba(183, 133, 255, 0.6);
  }

  50% {
    opacity: 0.8;
    height: 12px;
    filter: hue-rotate(90deg);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.6), 0 0 50px rgba(255, 0, 229, 0.4);
  }

  100% {
    opacity: 0;
    height: 25px;
    filter: hue-rotate(180deg);
    box-shadow: 0 0 50px rgba(0, 229, 255, 0), 0 0 80px rgba(255, 0, 229, 0);
  }
}

@media (max-width: 768px) {
  .cursor-trail {
    display: none;
    /* Hide on mobile devices where touch is used */
  }
}

/* ================= HERO ================= */
.hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10%;
  gap: 40px;
}

.hero-img-col {
  flex-basis: 40%;
  display: flex;
  justify-content: center;
}

.hero-img-wrapper {
  position: relative;
  max-width: 550px;
  width: 100%;
}

.hero-img-wrapper img,
.about-col-1 img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  /* Make the bottom edge fade out smoothly into the background */
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.hero-text-col {
  flex-basis: 55%;
}

@media (max-width: 768px) {
  .hero-row {
    flex-direction: column-reverse;
    margin-top: 15%;
    text-align: center;
  }

  .hero-img-col {
    margin-bottom: 30px;
  }

  .hero-img-wrapper img {
    max-width: 320px;
  }

  .header-text {
    text-align: center;
  }

  .header-text h1 {
    font-size: 40px;
  }
}

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

.header-text p {
  color: #ffffff;
}

.header-text h1 {
  color: #00E5FF;
  font-size: 56px;
}

.intro-text {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  margin-top: 12px;
}

/* ================= ABOUT ================= */
#about {
  padding: 80px 0;
  color: #ffffff;
  background: transparent;
}

.row-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-col-1 {
  flex-basis: 35%;
  display: flex;
  justify-content: center;
}

.about-col-2 {
  flex-basis: 60%;
}

.about-col-1 img {
  width: 100%;
  border-radius: 15px;
}

/* ================= DIGITAL MARKETING DASHBOARD MOCK ================= */
.marketing-dashboard-mock {
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  font-family: 'Poppins', sans-serif;
  color: #fff;
  width: 100%;
}

.marketing-dashboard-mock .dash-header {
  font-size: 16px;
  font-weight: 600;
  color: #00E5FF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.marketing-dashboard-mock .dash-metrics {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.marketing-dashboard-mock .metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  border-radius: 8px;
  border-left: 3px solid #00E5FF;
}

.marketing-dashboard-mock .metric .label {
  font-size: 14px;
  font-weight: 500;
  color: #d4f1f4;
}

.marketing-dashboard-mock .metric .value {
  font-size: 18px;
  font-weight: 700;
}

.marketing-dashboard-mock .metric .value.hue-cyan {
  color: #00E5FF;
}

.marketing-dashboard-mock .metric .value.hue-green {
  color: #00FF85;
}

.marketing-dashboard-mock .metric .value.hue-purple {
  color: #b785ff;
}

.marketing-dashboard-mock .dash-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 80px;
  gap: 8px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.marketing-dashboard-mock .dash-chart .bar {
  flex-grow: 1;
  background: linear-gradient(to top, rgba(0, 229, 255, 0.2), #00E5FF);
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
  animation: growBar 2s ease-out forwards;
}

@keyframes growBar {
  0% {
    transform: scaleY(0);
  }

  100% {
    transform: scaleY(1);
  }
}

.sub-title {
  font-size: 60px;
  color: #00E5FF;
}

/* ================= TABS ================= */
.tab-titles {
  display: flex;
  margin: 20px 0 40px;
}

.tab-links {
  margin-right: 50px;
  cursor: pointer;
  position: relative;
}

.tab-links::after {
  content: '';
  width: 0;
  height: 3px;
  background: #d4f1f4;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.4s;
}

.tab-links.active-link::after {
  width: 50%;
}

.tab-contents {
  display: none;
}

.tab-contents.active-tab {
  display: block;
}

.tab-contents ul li {
  list-style: none;
  margin: 12px 0;
}

.tab-contents ul li span {
  color: #988ecd;
  font-size: 14px;
}

/* ================= SERVICES ================= */
#services {
  padding: 30px 0;
  color: #ffffff;
  background: transparent;
}

.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

/* ================= PORTFOLIO ================= */
#portfolio {
  padding: 30px 0;
  text-align: center;
  background: transparent;
}

.worklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

/* ================================================= */
/* ========= SLIDING HOVER EFFECT – ALL BOXES ====== */
/* ================================================= */

#services .row div,
#portfolio .work {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 16px;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* glowing gradient overlay on hover */
#services .row div::before,
#portfolio .work::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

#services .row div>*,
#portfolio .work>* {
  position: relative;
  z-index: 1;
}

#services .row div:hover,
#portfolio .work:hover {
  transform: translateY(-15px) scale(1.03);
  background: rgba(10, 10, 15, 0.9);
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.2), inset 0 0 20px rgba(0, 229, 255, 0.05);
}

#services .row div:hover::before,
#portfolio .work:hover::before {
  opacity: 1;
}

/* Icon Styling */
#services .row div i {
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  display: inline-block;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

#services .row div:hover i {
  transform: translateY(-5px) scale(1.1) rotate(5deg);
  color: #0a051f;
  /* Dark contrast */
  background: #00E5FF;
  /* Solid glowing cyan */
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.5);
  border-color: transparent;
}

#services .row div:hover h3,
#portfolio .work:hover h3 {
  color: #00E5FF;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
}

#portfolio .work img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.45s ease;
}

#portfolio .work:hover img {
  transform: scale(1.05);
}

/* ================= CONTACT ================= */
#contact {
  padding: 50px 0;
  text-align: center;
}

/* ================= BUTTON ================= */
.more-about-btn {
  text-decoration: none;
  margin-top: 25px;
  color: #fff;
  outline: none;
}



/* ================= MOBILE ================= */
@media (max-width: 600px) {
  nav {
    justify-content: center;
  }

  .container {
    padding: 10px 10%;
  }

  .header-text {
    margin-top: 40%;
    text-align: center;
    font-size: 22px;
  }

  .header-text h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .intro-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .row-1 {
    flex-direction: column;
  }

  .about-col-1,
  .about-col-2 {
    flex-basis: 100%;
  }

  .sub-title {
    font-size: 36px;
    text-align: center;
  }

  .tab-titles {
    flex-direction: column;
  }

  .row,
  .worklist {
    grid-template-columns: 1fr;
  }
}

/* ================= TABLET ================= */
@media (max-width: 900px) {
  .container {
    padding: 10px 8%;
  }

  .header-text {
    margin-top: 20%;
  }

  .row-1 {
    flex-direction: column;
    gap: 30px;
  }

  .row,
  .worklist {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= WHY CHOOSE ME – DMIRSHA STYLE ================= */

#why-choose-me {
  padding: 100px 0;
  background: transparent;
  color: #fff;
}

.why-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 1px;
  color: #00E5FF;
  margin-bottom: 70px;
  text-transform: uppercase;
}

/* CONTENT GRID */
.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* COLUMN */
.why-col h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #fff;
}

/* LIST STYLE */
.why-col ul {
  list-style: none;
  padding: 0;
}

.why-col ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 14px;
  position: relative;
  padding-left: 20px;
}

/* CUSTOM BULLET */
.why-col ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00E5FF;
  font-size: 22px;
  line-height: 1;
}

.why-col strong {
  color: #fff;
}

/* SPACING */
.mt {
  margin-top: 35px;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .why-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-title {
    font-size: 26px;
  }
}

/* ================= CTA SECTION ================= */

#cta-section {
  padding: 90px 0;
  background: transparent;
  text-align: center;
  color: #fff;
}

#cta-section h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  text-transform: uppercase;
}

#cta-section p {
  max-width: 750px;
  margin: 0 auto 35px;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 36px;
  background: #00E5FF;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #6244e8;
}

.btn-outline {
  padding: 14px 36px;
  border: 1px solid #00E5FF;
  color: #00E5FF;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #00E5FF;
  color: #000;
}


/* ================= TESTIMONIALS ================= */
#testimonials {
  padding: 80px 0;
  overflow: hidden;
  background: transparent;
}

.testimonial-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* SLIDING TRACK */
.testimonial-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: slideRightToLeft 30s linear infinite;
}

/* PAUSE ON HOVER */
.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

/* CARD */
.testimonial {
  min-width: 360px;
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  padding: 25px;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  cursor: pointer;
}

/* CLIENT INFO */
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.client-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00E5FF;
}

.client-info h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 2px;
}

/* STARS */
.stars {
  color: #FFD700;
  font-size: 14px;
  letter-spacing: 2px;
}

/* TEXT */
.testimonial p {
  color: #ffffff;
  font-size: 14.5px;
  line-height: 1.7;
}

/* RIGHT ➜ LEFT ANIMATION */
@keyframes slideRightToLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .testimonial {
    min-width: 280px;
  }
}

/* ================= STATS / COUNTERS ================= */
#stats {
  padding: 80px 0;
  text-align: center;
  background: transparent;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-box {
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  padding: 35px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(123, 97, 255, 0.15);
}

.stat-box h2 {
  font-size: 48px;
  color: #00E5FF;
  margin-bottom: 8px;
}

.stat-box p {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 1px;
}


/* MOBILE */
@media (max-width: 600px) {
  .stat-box h2 {
    font-size: 36px;
  }
}

.contact-area {
  background: transparent;
  padding: 15px 7%;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.contact-heading {
  text-align: center;
  margin-bottom: 10px;
}

.contact-heading p {
  font-size: 13px;
  color: #d4f1f4;
  letter-spacing: 1px;
}

.contact-heading h2 {
  margin-top: 10px;
  font-size: 48px;
  font-weight: 900;
  color: #00E5FF;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 50px;
}

.contact-col h3 {
  font-size: 17px;
  color: #00E5FF;
  margin-bottom: 16px;
}

.contact-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #ffffff;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-details li {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  color: #00E5FF;
}

.hire-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 11px 28px;
  border: 1px solid #00E5FF;
  color: #00E5FF;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.hire-btn:hover {
  background: #00E5FF;
  color: #000;
}



.simple-list {
  list-style: none;
  padding: 0;
}

.simple-list li {
  font-size: 14px;
  margin-bottom: 12px;
  color: #ffffff;
}

.recent-post {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.recent-post img {
  width: 75px;
  height: 55px;
  object-fit: cover;
  border-radius: 6px;
}

.recent-post p {
  font-size: 13px;
  margin: 0;
}

.recent-post span {
  font-size: 11px;
  color: #9c9c9c;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ================= FAQ SECTION ================= */

#faq {
  padding: 100px 0;
  background: transparent;
  color: #fff;
}

.faq-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #00E5FF;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-item:hover {
  box-shadow: 0 18px 35px rgba(123, 97, 255, 0.12);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 22px;
  color: #00E5FF;
  transition: transform 0.3s;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 14.5px;
  line-height: 1.8;
  color: #ffffff;
}

/* MOBILE */
@media(max-width:600px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-question {
    font-size: 15px;
  }
}

/* FORCE REMOVE LINK STYLES FROM BUTTON */
.hire-btn>a.btn,
.hire-btn>a.btn:link,
.hire-btn>a.btn:visited,
.hire-btn>a.btn:hover,
.hire-btn>a.btn:active,
.hire-btn>a.btn:focus {
  color: #908c8c !important;
  text-decoration: none !important;
  outline: none !important;
  border: none !important;
}

/* KILL ANY ::after UNDERLINE */
.hire-btn>a.btn::after {
  display: none !important;
  content: none !important;
}

.social-fixed {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 999;
}

/* FOLLOW ME text */
.social-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.social-label span {
  writing-mode: vertical-rl;
  /* vertical text */
  text-orientation: upright;
  /* letters straight */
  font-size: 11px;
  letter-spacing: 3px;
  color: #aaa;
}

/* Arrow below FOLLOW ME */
.social-label i {
  font-size: 14px;
  color: #00E5FF;
  animation: arrowMove 1.5s infinite;
}

@keyframes arrowMove {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

/* Social icons */
.social-fixed a {
  color: #aaa !important;
  font-size: 16px;
  text-decoration: none !important;
  transition: 0.3s ease;
}

.social-fixed a:hover {
  color: #00E5FF !important;
  transform: translateY(-3px);
}

/* Remove underline completely */
.social-fixed a::after,
.social-fixed a::before {
  content: none !important;
  display: none !important;
}

.social-label span:first-child {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 400;
  color: #bdbdbd;
  text-transform: uppercase;
}

/* ================= TAB SECTION HEADING (CSS ONLY) ================= */

.tab-titles {
  position: relative;
  margin-top: 100px;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* HEADING TEXT */
.tab-titles::before {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #00E5FF;
  text-align: center;
}

/* SUB HEADING */
.tab-titles::after {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: #d4f1f4;
  text-align: center;
  max-width: 720px;
  line-height: 1.6;
}

/* ================= CONTACT SECTION ================= */

.contact-area {
  background: transparent;
  padding: 5px 7% 0;
  /* Changed bottom padding to 0 */
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Heading */
.contact-heading {
  text-align: center;
  margin-bottom: 10px;
}

.contact-heading p {
  font-size: 13px;
  color: #d4f1f4;
  letter-spacing: 1px;
}

.contact-heading h2 {
  margin-top: 10px;
  font-size: 48px;
  font-weight: 900;
  color: #00E5FF;
}

/* Wrapper – FLEX instead of forced grid */
.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* Column */
.contact-col {
  width: 100%;
  max-width: 520px;
}

/* Title */
.contact-col h3 {
  font-size: 17px;
  color: #00E5FF;
  margin-bottom: 16px;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 13px 15px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9c9c9c;
}

/* Focus */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00E5FF;
  box-shadow: 0 0 0 1px rgba(123, 97, 255, 0.3);
}

/* Textarea */
.contact-form textarea {
  resize: none;
}

/* Button (same hire-btn style) */
.contact-form .hire-btn {
  margin-top: 10px;
  padding: 12px 34px;
  border: 1px solid #00E5FF;
  background: transparent;
  color: #00E5FF;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form .hire-btn:hover {
  background: #00E5FF;
  color: #000;
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

  .contact-heading h2 {
    font-size: 32px;
  }

  .contact-wrapper {
    padding: 0 10px;
  }

}

/* ================= FOOTER SECTION ================= */
#footer-alt {
  background: #050505;
  border-top: 1px solid #1a1a1a;
  position: relative;
  z-index: 10;
  width: 100%;
  display: block;
  margin: 0;
  padding-bottom: 0;
}

/* SEO Consultation Button Hover */
.seo-btn {
  display: inline-block;
  background: #7B61FF;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(123, 97, 255, 0.4);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.seo-btn:hover {
  background: #6347ff;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 30px rgba(123, 97, 255, 0.6);
  color: #fff;
}

/* ================= MOBILE BOTTOM NAVIGATION ================= */
/* ================= HAMBURGER & SIDE MENU ================= */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-btn span {
  width: 30px;
  height: 3px;
  background: #00E5FF;
  border-radius: 10px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }
}

.side-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.side-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: rgba(10, 5, 31, 0.5) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  z-index: 1001;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
  border-left: 1px solid rgba(0, 229, 255, 0.2) !important;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 30px 40px 60px;
  display: flex;
  flex-direction: column;
}

.side-menu.active {
  right: 0;
}

.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.2) !important;
  padding-bottom: 15px;
}

.side-menu-header h5 {
  color: #00E5FF;
  font-size: 20px !important;
  letter-spacing: 2px;
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.close-menu-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.side-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu-links li {
  margin-bottom: 40px;
}

.side-menu-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
}

.side-menu-links li a i {
  width: 20px;
  text-align: center;
  color: #00E5FF;
}

.side-menu-links li a:hover {
  color: #00E5FF;
  transform: translateX(10px);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.nav-menu-desktop li a i {
  margin-right: 8px;
  font-size: 14px;
}

/* ================= BLOG PAGE FONT REFINEMENTS ================= */
.blog-card p,
.blog-header-content p,
#blog-section p,
.featured-article p {
  font-weight: 400 !important;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

.blog-card h3,
.featured-article h2,
.blog-header-content h1 {
  font-weight: 700 !important;
}

/* Hide Redundant Bottom Nav Always as requested */
.mobile-bottom-nav {
  display: none !important;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 0px !important;
  }
}

/* ================= MOBILE UI REFINEMENTS ================= */
/* Redundant blocks removed to ensure new side menu and hamburger work correctly */
/* Extracted from welcome.blade.php */

body {
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ================= RESPONSIVE DESIGN ================= */

/* TABLETS & MEDIUM DEVICES (768px and below) */
@media (max-width: 768px) {

  /* Modal */
  .quote-modal {
    width: 100%;
    right: -100%;
  }

  /* Header/Home */
  /* Removed medium mobile nav styling */

  .header-text h1 {
    font-size: 36px;
    margin: 20px 0;
  }

  .header-text p {
    font-size: 15px;
  }

  .intro-text {
    font-size: 14px;
    line-height: 1.7;
  }

  /* About Section */
  .row-1 {
    flex-direction: column;
    gap: 30px;
  }

  .about-col-1 img {
    max-width: 100%;
    height: auto;
  }

  .sub-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  /* Tabs */
  .tab-titles {
    gap: 8px;
    margin-bottom: 20px;
  }

  .tab-links {
    padding: 8px 12px;
    font-size: 12px;
  }

  /* Services Section */
  #services .row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  #services .row div {
    padding: 20px;
  }

  #services .row h3 {
    font-size: 16px;
  }

  #services .row p {
    font-size: 13px;
  }

  /* Portfolio */
  #portfolio .slide {
    flex: 0 0 280px;
  }

  #portfolio .slide img {
    height: 220px;
  }

  /* Why Choose Me */
  .why-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .why-title {
    font-size: 28px;
    line-height: 1.4;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-box h2 {
    font-size: 32px;
  }

  .stat-box p {
    font-size: 12px;
  }

  /* FAQ */
  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 14px;
    padding: 12px;
  }

  /* Testimonials */
  .testimonial {
    padding: 15px;
    border-radius: 10px;
  }

  .testimonial p {
    font-size: 13px;
  }

  .client-info h4 {
    font-size: 14px;
  }
}

/* SMALL DEVICES (600px and below) */
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }

  /* Header/Home */
  #header {
    padding: 20px 0;
  }

  #header .container {
    padding: 0 15px;
  }

  /* Remove inline mobile nav styling here since nav.blade.php handles it */

  .header-text {
    text-align: center;
    padding: 0 15px;
  }

  .header-text p:first-child {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .header-text h1 {
    font-size: 28px;
    margin: 15px 0;
    line-height: 1.3;
  }

  .intro-text {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 10px;
  }

  /* Containers & Sections */
  .container {
    padding: 0 15px;
  }

  /* About Section */
  #about {
    padding: 30px 0;
  }

  .row-1 {
    gap: 20px;
  }

  .about-col-1 {
    width: 100%;
  }

  .about-col-2 {
    width: 100%;
  }

  .about-col-1 img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .sub-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .about-col-2 p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .hire-btn {
    margin: 15px 0;
  }

  .hire-btn .btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  /* Tabs */
  .tab-titles {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
    border-bottom: 1px solid #d4f1f4;
  }

  .tab-links {
    padding: 6px 10px;
    font-size: 11px;
    background: transparent;
    border: 1px solid #d4f1f4;
    border-radius: 4px;
  }

  .tab-links.active-link {
    background: #7B61FF;
    color: #fff;
  }

  .tab-contents ul li {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .tab-contents ul li span {
    font-size: 12px;
  }

  /* Services */
  #services {
    padding: 30px 0;
  }

  #services .sub-title {
    margin-bottom: 20px;
  }

  #services .row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  #services .row div {
    padding: 15px;
    border-radius: 10px;
  }

  #services .row i {
    font-size: 28px;
  }

  #services .row h3 {
    font-size: 15px;
    margin: 10px 0 8px;
  }

  #services .row p {
    font-size: 12px;
    line-height: 1.5;
  }

  /* Portfolio */
  #portfolio {
    padding: 30px 0;
  }

  #portfolio .slide {
    flex: 0 0 240px;
  }

  #portfolio .slide img {
    height: 180px;
  }

  #portfolio .slide h3 {
    font-size: 14px;
    margin: 8px 0 4px;
  }

  #portfolio .slide p {
    font-size: 11px;
  }

  /* Why Choose Me */
  #why-choose-me {
    padding: 30px 0;
  }

  .why-title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .why-content {
    gap: 15px;
  }

  .why-col h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .why-col ul li {
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 1.5;
  }

  .why-col.mt {
    margin-top: 15px;
  }

  /* Stats */
  #stats {
    padding: 30px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-box {
    padding: 20px;
  }

  .stat-box h2 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .stat-box p {
    font-size: 12px;
  }

  /* FAQ */
  #faq {
    padding: 30px 0;
  }

  .faq-title {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .faq-item {
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .faq-question {
    font-size: 13px;
    padding: 12px;
    font-weight: 600;
  }

  .faq-answer {
    padding: 0;
  }

  .faq-answer p {
    font-size: 12px;
    line-height: 1.6;
    padding: 12px;
  }

  /* Testimonials */
  #testimonials {
    padding: 30px 0;
  }

  .testimonial {
    padding: 12px;
    min-height: auto;
    border-radius: 8px;
  }

  .client-info {
    gap: 10px;
    margin-bottom: 10px;
  }

  .client-info img {
    width: 40px;
    height: 40px;
  }

  .client-info h4 {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .client-info .stars {
    font-size: 11px;
  }

  .testimonial p {
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
  }

  /* Buttons */
  .btn {
    padding: 10px 18px;
    font-size: 12px;
  }
}

/* EXTRA SMALL DEVICES (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  /* Removed extra small mobile nav styling */

  .header-text h1 {
    font-size: 24px;
    margin: 12px 0;
  }

  .header-text p {
    font-size: 12px;
  }

  .intro-text {
    font-size: 12px;
    margin-top: 8px;
  }

  .sub-title {
    font-size: 22px;
  }

  .about-col-2 p {
    font-size: 12px;
    margin-bottom: 10px;
  }

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

  .why-col h3 {
    font-size: 14px;
  }

  .why-col ul li {
    font-size: 11px;
  }

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

  .faq-question {
    font-size: 12px;
  }

  .stat-box h2 {
    font-size: 24px;
  }

  .testimonial {
    padding: 10px;
  }
}

.intro-text {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.8;
  color: #d4f1f4;
  margin-top: 12px;
}

.about-extra-img {
  margin: 25px 0;
  max-width: 100%;
  border-radius: 12px;
}

/* Portfolio slider */
#portfolio .portfolio-slider {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  position: relative;
}

#portfolio .portfolio-slider::before,
#portfolio .portfolio-slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

#portfolio .portfolio-slider::before {
  left: 0;
  background: linear-gradient(to right, #050505 0%, transparent 100%);
}

#portfolio .portfolio-slider::after {
  right: 0;
  background: linear-gradient(to left, #050505 0%, transparent 100%);
}

#portfolio .portfolio-track {
  display: flex;
  gap: 30px;
  will-change: transform;
  animation: slideLoop 25s linear infinite;
}

#portfolio .portfolio-slider:hover .portfolio-track {
  animation-play-state: paused;
}

#portfolio .slide {
  flex: 0 0 350px;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

#portfolio .slide:hover {
  transform: translateY(-10px);
  background: rgba(10, 10, 15, 0.9);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 15px 35px rgba(0, 229, 255, 0.15);
}

#portfolio .slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 20px;
  transition: transform 0.5s ease;
}

#portfolio .slide:hover img {
  transform: scale(1.05);
}

#portfolio .slide h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #fff;
  transition: color 0.3s ease;
}

#portfolio .slide:hover h3 {
  color: #00E5FF;
}

#portfolio .slide p {
  color: #d4f1f4;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-380px * 3));
    /* 350px width + 30px gap */
  }
}

/* Header Animation */
.header-text {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===== PORTFOLIO SLIDER ===== */
.pf-slider-wrap {
  border-radius: 16px;
  padding: 20px 0;
}

.pf-slide {
  flex: 0 0 calc(33.333% - 16px);
  width: calc(33.333% - 16px);
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 0.6s ease;
  cursor: pointer;
  opacity: 0.5;
  /* non-center slides are faded */
  transform: scale(0.9);
  /* non-center slides are smaller */
}

/* Center slide styling (added via JS) */
.pf-slide.center-slide {
  opacity: 1;
  transform: scale(1.05);
  /* Center slide pops out */
  box-shadow: 0 20px 50px rgba(0, 229, 255, 0.15);
  border-color: rgba(0, 229, 255, 0.4);
  z-index: 2;
}

.pf-img-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
  /* Taller to show images fully */
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Shows full photo without cropping */
  display: block;
  transition: transform 0.6s ease;
}

.pf-slide:hover .pf-img-wrap img {
  transform: scale(1.05);
}

.pf-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 229, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pf-slide:hover .pf-overlay {
  opacity: 1;
}

.pf-view-btn {
  background: #00E5FF;
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pf-view-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.4);
}

.pf-info {
  padding: 20px;
}

.pf-info h3 {
  font-size: 18px;
  color: #fff;
  margin: 0 0 8px;
  transition: color 0.3s;
}

.pf-slide.center-slide .pf-info h3 {
  color: #00E5FF;
}

.pf-info p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
  margin: 0 0 12px;
  font-weight: 400;
}

.pf-tag {
  font-size: 11px;
  color: #7B61FF;
  background: rgba(123, 97, 255, 0.12);
  border: 1px solid rgba(123, 97, 255, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* LIGHTBOX */
.pf-lightbox {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(5, 5, 10, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pf-lightbox.show {
  opacity: 1;
}

.pf-lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: auto;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pf-lightbox.show .pf-lightbox-inner {
  transform: translateY(0) scale(1);
}

.pf-lightbox-content {
  width: 100%;
  display: block;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  max-height: 70vh;
  object-fit: contain;
  background: #000;
}

.pf-lightbox-caption {
  background: rgba(15, 15, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 0 0 12px 12px;
  padding: 24px 30px;
  text-align: left;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.pf-lightbox-caption h3 {
  margin: 0 0 10px 0;
  color: #00E5FF;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pf-lightbox-caption p {
  margin: 0;
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.7;
}

.pf-lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pf-lightbox-close:hover {
  color: #00E5FF;
  border-color: #00E5FF;
  background: rgba(0, 229, 255, 0.1);
  transform: scale(1.1);
}

/* NAV BUTTONS */
.pf-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: #00E5FF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.pf-btn:hover {
  background: #00E5FF;
  color: #000;
  border-color: #00E5FF;
  transform: translateY(-50%) scale(1.1);
}

.pf-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.pf-prev {
  left: -10px;
}

.pf-next {
  right: -10px;
}

/* DOTS */
.pf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.pf-dot.active {
  background: #00E5FF;
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pf-slide {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
  }

  .pf-prev {
    left: 0;
  }

  .pf-next {
    right: 0;
  }
}

@media (max-width: 600px) {
  .pf-slide {
    flex: 0 0 100%;
    width: 100%;
    opacity: 1;
    transform: scale(1);
  }

  .pf-slide.center-slide {
    transform: scale(1);
  }

  .pf-img-wrap {
    height: 260px;
  }

  .pf-prev {
    left: 4px;
  }

  .pf-next {
    right: 4px;
  }
}