@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #d4af37; 
  height: 60px; /* atau 30px, sesuaikan */
  width: auto;
  object-fit: contain;  
  transform: scale(1.4); /* ubah sesuai kebutuhan */
  transform-origin: left center;
  margin-left: 20px;
}


.nama {
    font-size: 12px;
    letter-spacing: 1px;
    color: #aaa;
    margin-top: 5px;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-weight: 700;
    font-size: 12px;
}

p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

button.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: #088178;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

button.white {
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    border: 1px solid #fff;
    outline: none;
    transition: 0.2s;
}

body {
    width: 100%;
}

/* Header Start */

#header {
     display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 999;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Geser ke kanan */
    gap: 30px;
    padding: 20px; /* Optional: memberi jarak dalam */
}

#navbar li {
    list-style: none;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: #088178;
}

#navbar li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #088178;
    left: 0;
    bottom: -6px;
    transition: width 0.3s ease;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    width: 30%;
}

#mobile {
    font-size: 20px;
    color: #fff;
}

#mobile a {
    color: inherit;
    text-decoration: none;
}

#close {
    display: none;
}

/* Home Page */

#hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full tinggi layar */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) brightness(0.4); /* blur dan gelap */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 40px;
  width: 100%;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.4); /* background semi hitam */
  border-radius: 0; /* Tidak perlu rounded biar full */
}

.hero-content h1,
.hero-content h2,
.hero-content h4,
.hero-content p {
  margin: 10px 0;
  color: #fff;
}

.hero-content button {
  background-color: #a86e24;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  margin-top: 15px;
  cursor: pointer;
}

#tentang-kami {
  padding: 80px 20px;
  background-color: #fff;
}

.tentang-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.tentang-teks {
  flex: 1;
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  text-align: justify;
}

.tentang-gambar {
  flex: 1;
  text-align: center;
  width: 50px;
}

.tentang-gambar img {
  width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.tentang-gambar img:hover {
  transform: scale(1.03);
}

/* Layout responsif */
@media (max-width: 768px) {
  .tentang-container {
    flex-direction: column;
    text-align: center;
  }

  .tentang-gambar {
    display: flex;
    justify-content: center; /* gambar di tengah */
  }

  .tentang-gambar img {
    width: 80%;   
    height: auto;
  }
}

@media (max-width: 480px) {
  .tentang-gambar img {
    width: 100%;
    height: auto;
  }
}

.services {
  padding: 70px 0;
  text-align: center;
}

.services h3 {
  margin-bottom: 50px;
  font-size: 30px;
  color: #000;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #fff;
  padding: 25px 20px;
  margin: 15px;
  flex: 1 1 280px;
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}


.card.show {
  opacity: 1;
  transform: translateY(0);
}

.card h4 {
  font-size: 20px;
  color: #4d2c19;
  margin-bottom: 10px;
  font-weight: 600;
}

.card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.kenapa-kami {
  padding: 80px 20px;
  background-color: #fff8f1;
  text-align: center;
}

.kenapa-kami h2 {
  font-size: 32px;
  color: #4d2c19;
  margin-bottom: 40px;
}

.alasan-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.alasan {
  background-color: #fff;
  padding: 30px 20px;
  max-width: 250px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.alasan:hover {
  transform: translateY(-10px);
}

.alasan i {
  font-size: 36px;
  color: #c79b53;
  margin-bottom: 15px;
}

.alasan h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.alasan p {
  font-size: 14px;
  color: #666;
}
.galeri-portofolio {
  padding: 60px 20px;
  background-color: #f4efe8;
  text-align: center;
}

.galeri-portofolio h2 {
  font-size: 30px;
  color: #4d2c19;
  margin-bottom: 10px;
}

.galeri-portofolio p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.galeri-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.galeri-item img:hover {
  transform: scale(1.05);
  filter: brightness(0.9);
}

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("../foto/banner/b2new.jpg");
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
}

#banner h4 {
    color: #fff;
    font-size: 16px;
}

#banner h2 {
    color: #fff;
    font-size: 30px;
    padding: 10px 0;
}

#banner h2 span {
    color: #ef3636;
}

#banner button:hover {
    background-color: #088178;
    color: #fff;
}

#sm-banner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#sm-banner .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("../foto/banner/b17new.jpg");
    min-width: 540px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
}

#sm-banner .banner-box2 {
    background-image: url("../foto/banner/b10new.jpg");
}

#sm-banner h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}

#sm-banner h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

#sm-banner span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
}

#sm-banner .banner-box:hover button {
    background: #088178;
    border: 1px solid #088178;
}

#banner3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("../foto/banner/b7new.jpg");
    min-width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
}

#banner3 .banner-box2 {
    background-image: url("../foto/banner/b4new.jpg");
}

#banner3 .banner-box3 {
    background-image: url("../foto/banner/b18new.jpg");
}

#banner3 h2 {
    color: #ec544e;
    font-weight: 900;
    font-size: 22px;
}

#banner3 h3 {
    color: #fff;
    font-weight: 800;
    font-size: 15px;
}

#newsletter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #041e42;
}

#newsletter h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

#newsletter p {
    font-size: 14px;
    font-weight: 600;
    color: #818ea0;
}

#newsletter p span {
    color: #ffbd27;
}

#newsletter .form {
    display: flex;
    width: 40%;
}

#newsletter input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#newsletter button {
    background-color: #088178;
    color: #fff;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer.logo {
    margin-bottom: 30px;
}

footer h4 {
    font-size: 14px;
    padding-bottom: 20px;
}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}

footer .follow {
    margin-top: 20px;
}

footer .follow i {
    color: #465b52;
    padding-right: 4px;
    cursor: pointer;
}

footer .install .row img {
    border: 1px solid #088178;
    border-radius: 6px;
}

footer .install img {
    margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover {
    color: #088178
}

footer .copyright {
    width: 100%;
    text-align: center;
}

/* layanan page */

.layanan-header {
  text-align: center;
  padding: 50px 20px;
  background-color: #004d40;
  color: #fff;
}
.layanan-header h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}
.layanan-header p {
  font-size: 1.2em;
}
.image-slider {
  text-align: center;
  padding: 40px 0;
}

.image-slider {
  padding: 50px 0;
  background: #f9f9f9;
}

.judul-slider {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #1e3932;
}

.slider-container {
  overflow: hidden;
  cursor: grab;
  max-width: 1400px;
  margin: auto;
}

.slider-track {
  display: flex;
  gap: 30px;
  animation: scrollInfinite 40s linear infinite;
}

/* ✅ Gambar besar */
.slider-track img {
  width: 360px;
  height: 240px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.slider-track img:hover {
  transform: scale(1.06);
}

/* Animasi infinite loop */
@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive mobile */
@media (max-width: 768px) {
  .slider-track img {
    width: 220px;
    height: 150px;
  }

  .judul-slider {
    font-size: 1.8rem;
  }
}

.layanan-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #222;
}


.layanan-teks {
  padding: 1rem;
}

.layanan-teks h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.layanan-teks p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}


.card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.card {
  flex: 1 1 30%;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  color: #004d40;
  margin-bottom: 10px;
}

.layanan-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.layanan-table thead {
  background: #004d40;
  color: white;
}
.layanan-table th, .layanan-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.alur-pemesanan {
  max-width: 1200px;
  margin: 80px auto;
  text-align: center;
  padding: 0 20px;
}

.alur-pemesanan h2 {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #004d40;
}

.step-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.step {
  flex: 1;
  min-width: 220px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.step .circle {
  width: 60px;
  height: 60px;
  background: #004d40;
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
}

.step p {
  font-size: 0.95em;
  color: #666;
  line-height: 1.5;
}
.cta-full {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #fdfaf6;
  padding: 100px 20px;
}

.cta-box {
  text-align: center;
}

.cta-box h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #004d40;
  margin-bottom: 30px;
}

.curved-arrows {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  animation: bounceArrows 2.5s ease-in-out infinite;
}

@keyframes bounceArrows {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

.cta-button {
  padding: 14px 32px;
  background-color: #6d4c41;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #5d4037;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.copyright {
    width: 100%;
    text-align: center;
}


/* blog page */
#page-header.blog-header{
    background-image: url(../foto/banner/b2new.jpg);
}

#blog{
    padding: 150px 150px 0 150px;
}

#blog .blog-box{
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom: 90px;
}

#blog .blog-img{
    width: 50%;
    margin-right: 40px;
}

#blog img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#blog .blog-details{
    width: 50%;
}

#blog .blog-details a{
    text-decoration: none;
    font-size: 11px;
    color: #000;
    font-weight: 700;
    position: relative;
    transition: 0.3s;
}

#blog .blog-details a::after{
    content: "";
    width: 50px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 4px;
    right: -60px;
}

#blog .blog-details a:hover{
    color: #088178;
}

#blog .blog-details a:hover::after{
    background-color: #088178;
}

#blog .blog-box h1{
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 70px;
    font-weight: 700;
    color: #c9cbce;
    z-index: -9;
}


/* about page */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fdfdfd;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}
/* Tentang Kami */
.tentang-kami {
  padding: 80px 0;
}

.tentang-kami .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tentang-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.tentang-content .text {
  flex: 1 1 50%;
}

.tentang-content .text h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: bold;
  text-align: center;
}

.tentang-content .text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

.tentang-content .image {
  flex: 1 1 50%;
  text-align: center;
}

.tentang-content .image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* TIMELINE */
.timeline-modern {
  position: relative;
  padding-left: 40px;
  margin-top: 60px;
  border-left: 3px solid #00a86b;
}

.timeline-block {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  animation: fadeInUp 0.6s ease both;
}

.timeline-date {
  background-color: #00a86b;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.timeline-content {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.timeline-content h3 {
  margin-top: 0;
  color: #00a86b;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.timeline-content p {
  margin: 0;
  line-height: 1.6;
}

/* Animasi */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsif */
@media (max-width: 768px) {
  .timeline-modern {
    padding-left: 20px;
  }

  .timeline-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-date {
    margin-bottom: 10px;
  }
}

/* SPACER */
.spacer {
  height: 100px;
}

/* VIDEO */
.video-section {
  text-align: center;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: auto;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* GALERI */
.galeri {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.galeri img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.galeri img:hover {
  transform: scale(1.05);
}
/* --- TESTIMONI --- */
.testimoni {
  background-color: #fdfdfd;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.testimoni-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.testimoni-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  max-width: 320px;
  flex: 1 1 300px;
  transition: transform 0.3s ease;
}

.testimoni-card:hover {
  transform: translateY(-8px);
}

.testi-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #f39c12;
}

.testimoni-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
  min-height: 90px;
}

.testimoni-card h4 {
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: #333;
}

.testimoni-card span {
  font-size: 0.9rem;
  color: #888;
}

/* --- CTA --- */
.cta-section {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-overlay {
  backdrop-filter: blur(2px);
}

.cta-container h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-container p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background-color: white;
  color: #e67e22;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  background-color: #ffe6cc;
  color: #d35400;
}


/* contact page */
#breadcrumb {
    background-color: #f5f5f5;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #0056b3;
}

.breadcrumb span {
    color: #555;
}

#contact-details{
     display: flex;
     align-items: center;
     justify-content: space-between;
}

#contact-details .details{
    width: 40%;
}

#contact-details .details span,
#form-details form span{
    font-size: 12px;
}

#contact-details .details h2,
#form-details form h2{
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
}

#contact-details .details h3{
    font-size: 16px;
    padding-bottom: 15px;
}

#contact-details .details li{
    list-style: none;
    display: flex;
    padding: 10px 0;
}

#contact-details .details li i{
    font-size: 14px;
    padding-right: 22px;
}

#contact-details .details li p{
    margin: 0;
    font-size: 14px;
}

#contact-details .map{
    width: 55%;
    height: 400px;
}

#contact-details .map iframe{
    width: 100%;
    height: 100%;
}

#form-details{
    display: flex;
    justify-content: space-between;
    margin: 30px;
    padding: 80px;
    border: 1px solid #e1e1e1;
}

#form-details form{
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#form-details form input,
#form-details form textarea{
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
}

#form-details form button{
    background-color: #088178;
    color: #fff;   
}

#form-details .people div{
    padding-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

#form-details .people div img{
    width: 65px;
    height: 65px;
    object-fit: cover;
    margin-right: 15px;
}

#form-details .people div p{
    margin: 0;
    font-size: 13px;
    line-height: 25px;
}

#form-details .people div p span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}


/* cart page */
#cart{
    overflow-x: auto;
}

#cart table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}

#cart table img{
    width: 70px;
}

#cart table td:nth-child(1){
    width: 100px;
    text-align: center;
}
#cart table td:nth-child(2){
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(3){
    width: 250px;
    text-align: center;
}
#cart table td:nth-child(4),
#cart table td:nth-child(5)
#cart table td:nth-child(6){
    width: 150px;
    text-align: center;
}

#cart table td:nth-child(5) input{
    width: 70px;
    padding: 10px 5px 10px 15px;
}

#cart table thead{
    border: 1px solid #e2e9e1;
    border-left: none;
    border-right: none;
}

#cart table thead td{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 0;
}

#cart table tbody tr td{
    padding-top: 15px;
}

#cart table tbody tr td{
    font-size: 13px;
}

#cart-add{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#coupon{
    width: 50%;
    margin-bottom:30px;
}

#coupon h3,
#subtotal h3{
    padding-bottom: 15px;
}

#coupon input{
    padding: 10px 20px;
    outline: none;
    width: 60%;
    margin-right: 10px;
    border: 1px solid #e2e9e1;
}

#coupon button,
#subtotal button{
    background-color: #088178;
    color: #fff;
    padding: 12px 20px;
}

#subtotal{
    width: 50%;
    margin-bottom: 30px;
    border: 1px solid #e2e9e1;
    padding: 30px;
}

#subtotal table{
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

#subtotal table td{
    width: 50%;
    border: 1px solid #e2e9e1;
    padding: 10px;
    font-size: 13px;
}


/*Start Media Query */

@media (max-width:799px) {
    .section-p1 {
        padding: 40px 40px;
    }

    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #E3E6F3;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }

    #navbar.active {
        right: 0px;
    }

    #navbar li {
        margin-bottom: 25px;
    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }

    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }

    #lg-bag {
        display: none;
    }
    
    #hero {
        height: 70vh;
        padding: 0 80px;
        background-position: top 30% right 30%;
    }

    #feature {
        justify-content: center;
    }

    #feature .fe-box {
        margin: 15px 15px;
    }

    #product1 .pro-container {
        justify-content: center;
    }

    #product1 .pro {
        margin: 15px;
    }

    #banner {
        height: 20vh;
    }

    #sm-banner .banner-box {
        min-width: 100%;
        height: 30vh;
    }

    #banner3 {
        padding: 0 40px
    }

    #banner3 .banner-box {
        width: 28%;
    }

    #newsletter .form {
        width: 70%;
    }

    /* contact page */
    #form-details{
        padding: 40px;
    }
    #form-details form{
        width: 50%;
    }
}

@media (max-width: 477px) {
    .section-p1 {
    padding: 20px;
    }

    #header {
        padding: 10px 30px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }

    #hero {
        padding: 0 20px;
        background-position: 55%;
    }

    #feature {
        justify-content: space-between;
    }

    #feature .fe-box {
        width: 155px;
        margin: 0 0 15px 0;
    }

    #product1 .pro {
        width: 100%;
    }

    #banner {
        height: 40vh;
    }

    #sm-banner .banner-box {
        height: 40vh;
    }

    #sm-banner .banner-box2 {
        margin-top: 20px;
    }

    #banner3 {
        padding: 0 20px;
    }

    #banner3 .banner-box {
        width: 100%;
    }

    #newsletter {
        padding: 40px 20px;
    }

    #newsletter .form {
        width: 100%;
    }

    footer .copyright {
        text-align: start;
    }

    /* single product */
    #prodetails{
        display: flex;
        flex-direction: column;
    }

    #prodetails .single-pro-image{
        width:100%;
        padding-top: 0px;
    }

    #prodetails .single-pro-details{
        width: 100%;
    }

    /* blog page */
    #blog{
        padding: 100px 20px 0 20px;
    }

    #blog .blog-box{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #blog .blog-img{
        width: 100%;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    #blog .blog-details{
        width: 100%;
    }

    /* about page */
    #about-head{
        flex-direction: column;
    }

    #about-head img{
        width: 100%;
        margin-bottom: 20px;
    }

    #about-head div{
        padding-left: 0px;
    }

    #about-app .video{
        width: 100%;
    }

    /* contact page */
     #contact-details{
        flex-direction: column;
     }

     #contact-details .details{
        width: 100%;
        margin-bottom: 30px;
     }

     #contact-details .map{
        width: 100%;
     }
     
     #form-details{
        margin: 10px;
        padding: 30px 10px;
        flex-wrap: wrap;
     }

     #form-details form{
        width: 100%;
        margin-bottom: 30px;
     }

     /* cart page */
     #cart-add{
        flex-direction: column;
     }

     #coupon{
        width: 100%;
     }

     #subtotal{
        width: 100%;
        padding: 20px;
     }
}
