/* AK Plaster of Paris - Homepage Custom Styles */
:root {
  --ak-primary: #1C1853;
  --ak-primary-light: rgba(28, 24, 83, 0.1);
  --ak-bg-light: #f2f2f2;
  --ak-text: #5b5d61;
}

.bg-light1 { background: var(--ak-bg-light); }

/* Hero overrides */
.hero5-area .hero5-main-content::after { height: 0; width: 0; }
.hero5-area .img1 img {
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(28, 24, 83, 0.15);
}

/* Stats bar */
.ak-stats-bar {
  background: var(--ak-primary);
  border-radius: 16px;
  padding: 40px 30px;
  margin: -30px 55px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) { .ak-stats-bar { margin: 20px 0 0; } }
.ak-stats-bar .stat-item { text-align: center; padding: 10px; }
.ak-stats-bar .stat-item h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 4px;
}
.ak-stats-bar .stat-item h2 span { color: #F8CE69; }
.ak-stats-bar .stat-item p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

/* Service cards with images */
.ak-service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(28, 24, 83, 0.08);
  transition: all 0.4s;
  height: 100%;
  margin-bottom: 30px;
}
.ak-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(28, 24, 83, 0.15);
}
.ak-service-card .card-img {
  height: 220px;
  overflow: hidden;
}
.ak-service-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.ak-service-card:hover .card-img img { transform: scale(1.08); }
.ak-service-card .card-body { padding: 28px; }
.ak-service-card .card-body h4 {
  color: var(--ak-primary);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.ak-service-card .card-body h4 a { color: inherit; }
.ak-service-card .card-body p {
  color: var(--ak-text);
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 16px;
}
.ak-service-card .card-body .readmore {
  color: var(--ak-primary);
  font-weight: 600;
  font-size: 14px;
}
.ak-service-card .card-body .readmore i { margin-left: 6px; }

/* POP designs grid */
.ak-designs-grid .design-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}
.ak-designs-grid .design-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s;
}
.ak-designs-grid .design-item:hover img { transform: scale(1.06); }
.ak-designs-grid .design-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(28, 24, 83, 0.85));
  padding: 24px 20px 16px;
  transform: translateY(100%);
  transition: transform 0.4s;
}
.ak-designs-grid .design-item:hover .overlay { transform: translateY(0); }
.ak-designs-grid .design-item .overlay h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Process steps */
.ak-process-step {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(28, 24, 83, 0.06);
  height: 100%;
  transition: all 0.3s;
}
.ak-process-step:hover {
  box-shadow: 0 8px 32px rgba(28, 24, 83, 0.12);
  transform: translateY(-4px);
}
.ak-process-step .step-num {
  width: 56px;
  height: 56px;
  background: var(--ak-primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.ak-process-step h4 {
  color: var(--ak-primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ak-process-step p {
  color: var(--ak-text);
  font-size: 14px;
  line-height: 22px;
}

/* Gallery preview */
.ak-gallery-preview .gallery-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.ak-gallery-preview .gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}
.ak-gallery-preview .gallery-item:hover img { transform: scale(1.05); }

/* FAQ */
.ak-faq-section .accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(28, 24, 83, 0.06);
}
.ak-faq-section .accordion-button {
  background: #fff;
  color: var(--ak-primary);
  font-weight: 600;
  font-size: 16px;
  padding: 18px 24px;
  box-shadow: none !important;
}
.ak-faq-section .accordion-button:not(.collapsed) {
  background: var(--ak-primary);
  color: #fff;
}
.ak-faq-section .accordion-button:not(.collapsed)::after { filter: brightness(10); }
.ak-faq-section .accordion-body {
  padding: 16px 24px 20px;
  color: var(--ak-text);
  font-size: 15px;
  line-height: 24px;
}

/* Why choose feature boxes */
.ak-feature-box {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(28, 24, 83, 0.06);
  height: 100%;
  margin-bottom: 24px;
  transition: all 0.3s;
}
.ak-feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(28, 24, 83, 0.12);
}
.ak-feature-box .icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--ak-primary-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ak-feature-box .icon-wrap i {
  font-size: 26px;
  color: var(--ak-primary);
}
.ak-feature-box h5 {
  color: var(--ak-primary);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ak-feature-box p {
  color: var(--ak-text);
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

/* Image sections */
.chosse-section-area .choose-images-area .img1 img {
  width: 100%;
  height: auto;
  border-radius: 8px 50px 8px 50px;
  max-width: 100%;
}
.pt-50 { padding-top: 50px; }
.chosse-section-area .choose-images-area,
.chosse-section-area .choose-images-area .img1 { left: 0; }

.about5 .about-heading ul li {
  font-weight: 500;
  padding: 6px 0;
  font-size: 16px;
  color: var(--ak-text);
}
.about5 .about-heading ul li:nth-child(1),
.about5 .about-heading ul li:nth-child(2) { border-bottom: 0; }

.testimonial2 .testimonial2-slider-area .testimonial-boxarea .img1 img,
.testimonial2 .testimonial2-slider-area .slick-dots li.slick-active button { background: var(--ak-primary); }
.heading2 h5,
.testimonial2 .testimonial2-slider-area .testimonial-boxarea .content-boxarea ul li { color: var(--ak-primary); }
.testimonial2 .testimonial2-slider-area .slick-dots button::after,
.testimonial2 .testimonial2-slider-area .slick-dots button,
.heading2 h5 { background: #1c18535c; }
.heading5 p { font-size: 16px; }
.about5 .about5-images-area .content { z-index: 9999; }

/* About section image collage fix */
.ak-about-images {
  min-height: 480px;
  padding-bottom: 20px;
}
.ak-about-images .img1 {
  margin-bottom: 0 !important;
  width: 85%;
}
.ak-about-images .img1 img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.ak-about-images .img2 {
  width: 70%;
  margin-left: auto;
  margin-top: -100px;
  position: relative;
  z-index: 2;
  padding-right: 0;
}
.ak-about-images .img2 img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  border: 4px solid #fff;
  box-shadow: 0 8px 30px rgba(28, 24, 83, 0.15);
}
.ak-about-images .content {
  position: absolute;
  right: auto !important;
  left: 10px;
  top: auto !important;
  bottom: 30px;
  background: #1C1853;
  padding: 18px 22px;
  border-radius: 12px;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(28, 24, 83, 0.25);
}
.ak-about-images .content h2 {
  color: #fff;
  margin: 0;
  font-size: 36px;
  line-height: 1;
}
.ak-about-images .content h2 span {
  color: #F8CE69;
}
.ak-about-images .content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding-left: 10px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .ak-about-images {
    min-height: auto;
    margin-bottom: 30px;
  }
  .ak-about-images .img1 {
    width: 100%;
  }
  .ak-about-images .img1 img {
    height: 260px;
  }
  .ak-about-images .img2 {
    width: 80%;
    margin-top: -60px;
  }
  .ak-about-images .img2 img {
    height: 200px;
  }
  .ak-about-images .content {
    bottom: 20px;
    left: 10px;
    padding: 14px 18px;
  }
  .ak-about-images .content h2 {
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .ak-about-images .img1 img {
    height: 280px;
  }
  .ak-about-images .img2 img {
    height: 220px;
  }
}
.service5 .service5-boxarea .content-area { padding: 24px 15px 24px 44px; }

/* Section heading accent */
.heading5 h5.vl-section-subtitle,
.heading1 h5.vl-section-subtitle,
.heading2 h5.vl-section-subtitle {
  color: var(--ak-primary);
  background: var(--ak-primary-light);
}
