@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  font-family: 'Poppins', sans-serif;
}

body {
  background: radial-gradient(circle at top,#020617,#020617,#020617);
  color: #e5e7eb;
}
body {
  font-family: 'Poppins', sans-serif;
}


/* Navbar */
.navbar {
  background: linear-gradient(120deg,#020617,#1e3a8a,#2563eb) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

/* Hero */

.hero {
  position: relative;
  height: 100vh;
  background: url(img/Background.jpg) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero .container {
  position: relative;
  z-index: 2;
}


.hero h1 {
  color: #fff !important;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  text-shadow: 0 10px 40px rgba(0,0,0,0.9);
}

.hero p {
  color: rgba(255,255,255,0.9) !important;
  font-size: 1.25rem;
  text-shadow: 0 5px 25px rgba(0,0,0,0.7);
}

#home .accent {
  background: linear-gradient(90deg, #60a5fa, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




/* Cards */
.card {
  background: linear-gradient(180deg,#020617,#020617);
  border-radius: 20px;
  color: #e5e7eb;
  border: 1px solid rgba(59,130,246,.2);
  transition: .4s;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(37,99,235,.4);
}

/* Layanan Card Typography */
#services h3,
#services h4 {
  font-weight: 700; /* judul tebal */
}

#services p {
  font-weight: 500; /* isi ditebalkan (tidak terlalu bold) */
  opacity: 0.95;
}

/* Buttons */
.btn-warning {
  background: linear-gradient(135deg,#facc15,#f97316);
  border: none;
  font-weight: 600;
  color: #020617;
}

.btn-warning:hover {
  background: linear-gradient(135deg,#f97316,#facc15);
}

/* Portfolio images */
#portfolio img {
  border-radius: 15px;
  height: 220px;
  object-fit: cover;
  filter: brightness(.9);
}
.carousel-item img {
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}
.carousel {
  border-radius: 16px;
  overflow: hidden;
}

.carousel-control-prev,
.carousel-control-next {
  background: rgba(0,0,0,0.4);
  width: 45px;
}
/* Tinggi tetap untuk semua portfolio slider */
.portfolio-card .carousel-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

/* Pastikan carousel tidak ikut berubah tinggi */
.portfolio-card .carousel-inner {
  height: 240px;
}

/* Card tidak berubah saat slide */
.portfolio-card {
  display: flex;
  flex-direction: column;
}

.portfolio-card .carousel,
.portfolio-card .carousel-inner,
.portfolio-card .carousel-item {
  height: 240px;
}

.portfolio-card .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.portfolio-card .card-body {
  flex-grow: 1;
}


/* Section titles */
h2 {
  font-weight: 700;
  background: linear-gradient(90deg,#3b82f6,#93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* WhatsApp */
.whatsapp-float{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover{
    transform: scale(1.1);
    color: #fff;
}


/* Footer */
footer {
  background: linear-gradient(120deg,#020617,#1e3a8a);
}
