@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Vidaloka&display=swap');

:root {


  --bg: #ffffff;
  --fg: #0b1220;
  /* near-black */
  --muted: #5b6577;
  /* slate */
  --line: #e9edf3;
  /* soft border */
  --accent1: #111827;
  /* charcoal */
  --accent2: #6b7280;
  /* slate */
  --brand: #111827;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(8, 15, 35, .06);
  --soft: linear-gradient(180deg, rgba(17, 24, 39, .02), rgba(17, 24, 39, 0));
  --pill: 999px;
}

html,
body {
  height: 100%;

  font-family: "Vidaloka", serif;

}

body {
  /* background: var(--bg); */
  color: var(--fg);
  /* font-family: ui-sans-serif, -apple-system, Segoe UI, Roboto, Helvetica, Arial; */
  scroll-behavior: smooth
}

a {
  text-decoration: none;
  color: inherit
}

section[id] {
  scroll-margin-top: 50px;
  /* adjust to your navbar height */
}

.navbar {
  background: transparent;
  transition: all 0.4s ease;
  padding: 1rem 0;
  font-family: "Mulish", sans-serif;
}

.navbar.scrolled {
  background: #1c1c1cb6;
  /* black background after scroll */
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
  padding: .6rem 0;
  backdrop-filter: saturate(160%) blur(14px);
}

.navbar.scrolled .nav-link {
  color: #d4af37 !important;
  /* gold color when scrolled */
}

.navbar-brand img {
  transition: transform .3s ease;
}

.navbar.scrolled .navbar-brand img {
  transform: scale(.9);
}

/* NAV */
.navbar {
  --bs-navbar-padding-y: .9rem;
  /* background: rgba(42, 42, 42, 0.7); */
  /* backdrop-filter: saturate(160%) blur(14px); */
  /* border-bottom: 1px solid rgba(42, 42, 42, 0.7); */
}

.navbar img {
  width: 120px;
}

.navbar-brand {
  letter-spacing: .04em
}

.nav-link {
  font-weight: 300 !important;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
}

/* ACTIVE UNDERLINE EFFECT */
.nav-link {
  position: relative;
  color: white;
  transition: color .3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #bfa247, #d4af37, #f5e6a2);
  transition: width .35s ease;
  border-radius: 2px;
}

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

/* Optional: active link text color gold */
.nav-link.active {
  color: #d4af37 !important;
}


/* HERO as full-screen wrapper */
.hero {
  min-height: 100vh;
  position: relative;
  text-align: left;
  margin: 0;
  padding: 0;
}

/* Make Swiper + each slide full screen */
.hero .swiper,
.hero .swiper-slide {
  height: 100vh;
}

/* Center content inside each slide */
.hero .swiper-slide {
  display: flex;
  align-items: center;
}

.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

.hero-content h1{
 color: #fff;
 font-weight: 900;
 letter-spacing: 1px;
 margin: 20px 0;
 font-size: 3rem;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 6s ease;
}

.swiper-slide-active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(17, 17, 17, 0.92), rgba(44, 44, 44, 0.6) 40%, rgba(0, 0, 0, 0.651)); */
  background-color: rgba(0, 0, 0, 0.4);
}

/* Text reveal animations */
.reveal-up {
  opacity: 0;
  transform: translateY(18px);
}
.eyebrow{
  font-weight: 200;
  color: #d4af37 !important;
  font-size: 1.5em !important;
}
.swiper-slide-active .reveal-up {
  animation: riseIn .7s ease forwards;
}

.swiper-slide-active .reveal-up.delay-1 {
  animation-delay: .15s;
}

.swiper-slide-active .reveal-up.delay-2 {
  animation-delay: .3s;
}

.swiper-slide-active .reveal-up.delay-3 {
  animation-delay: .45s;
}

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

/* Swiper controls */
.swiper-button-prev,
.swiper-button-next {
  color: #111;
  border: 1px solid #e9edf3;
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  background: #bda55a;
  opacity: .35;
}

.swiper-pagination-bullet-active {
  background: #d4af37;
  opacity: 1;
}


/* Premium Accent Button */
.btn-accent {
  background: linear-gradient(135deg, #d4af37, #bda55a);
  color: #111 !important;
  border: none;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
  letter-spacing: .5px;
  transition: .3s ease;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
}

.swiper-pagination-bullet-active {
  background: #d4af37 !important;
  opacity: 1;
}

/* Premium Ghost Button */
.btn-ghost {
  background: rgba(255, 255, 255, .7);
  color: #111 !important;
  border: 1px solid #ddd;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: .5px;
  transition: .3s ease;
}

.btn-ghost:hover {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

/* SECTION WRAPPERS */
section {
  position: relative
}

.section-head h2 {
  font-weight: 800
}

.section-head p {
  color: var(--muted)
}

/* ABOUT */



.about-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow)
}

.about-list .bi {
  color: #111827
}
#about h2{
  font-weight: 900;
  font-size: 1rem;
  color: #d4af37;
}
#about h3{
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.1;
}
#about p{
  font-size: 1.1rem;
  color: #555555;
}
/* SERVICES */
#services {
  background: url('images/services.jpg') center/cover no-repeat;
  position: relative;

}

#services::before {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.svc-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform .25s ease
}

.svc-card:hover {
  transform: translateY(-4px)
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #111827;
  color: #fff
}

/* PORTFOLIO */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center
}

.filters .btn {
  border: 1px solid var(--line);
  background: #f8fafc;
  color: #111827;
  border-radius: var(--pill);
  padding: .45rem 1rem
}

.filters .btn.active {
  background: #111827;
  color: #fff
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem
}

@media(min-width:576px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:992px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow)
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease
}

.portfolio-item:hover img {
  transform: scale(1.04)
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 39, .25), rgba(17, 24, 39, 0) 60%);
  opacity: 0;
  transition: opacity .35s ease
}

.portfolio-item:hover .overlay {
  opacity: 1
}

.overlay-content {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff
}

.badge-cat {
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(6px);
  padding: .3rem .55rem;
  border-radius: 999px;
  font-size: .75rem
}

/* CONTACT */
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow)
}

.form-control,
.form-select {
  border: 1px solid var(--line)
}

.form-control:focus,
.form-select:focus {
  border-color: #111827;
  box-shadow: 0 0 0 .2rem rgba(17, 24, 39, .08)
}

footer {
  /* border-top: 1px solid var(--line);
   color: var(--muted) */

  background-color: #282828;
  color: var(--bg);
}


.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  background: #25D366;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}

.wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0,0,0,.30);
}

.wa-icon{
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Tooltip */
.wa-tooltip{
  position: absolute;
  right: 68px;
  bottom: 50%;
  transform: translateY(50%);
  background: rgba(10,10,15,.92);
  color: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

.wa-float:hover .wa-tooltip{
  opacity: 1;
  transform: translateY(50%) translateX(-2px);
}

/* Pulse ring */
.wa-float::before{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:999px;
  background: rgba(37, 211, 102, .25);
  animation: wa-pulse 1.6s ease-out infinite;
}

@keyframes wa-pulse{
  0%{ transform: scale(.85); opacity: .8; }
  100%{ transform: scale(1.25); opacity: 0; }
}

@media (max-width: 480px){
  .wa-float{ right: 14px; bottom: 14px; width: 54px; height: 54px; }
  .wa-tooltip{ display:none; }
}
