#header {
    text-align: center;
    color: #111111;
}
.container {
    width: 90%;
    max-width: 1200px;
    min-width:300px;
    margin: auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
    text-align: center;
    color: #222;
}
.services, .offers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.card {
    background: #fff;
    padding: 20px;
    margin: 10px;
    width: 45%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
.contact {
    text-align: center;
    background: #222;
    color: white;
    padding: 20px;
    margin-top: 20px;
}
.contact h2 {
    margin: 0;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background: #f4b400;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
ul {
    list-style: none; /* Removes default bullets */
    padding: 0;
    margin: 10px 0;
}

ul li {
    padding: 10px 15px;
    margin: 5px 0;
    background: #f4f4f4; /* Light grey background */
    border-radius: 5px; /* Rounded corners */
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

ul li::before {
    content: "\2713"; /* Checkmark icon */
    color: #4CAF50; /* Green color */
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

ul li:hover {
    background: #e0e0e0; /* Slightly darker background on hover */
    transform: translateX(5px); /* Subtle movement effect */
}

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f4b400;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#modal-container { width: auto !important; }

@media (max-width: 768px) {
    .card {
        width: 100%;
    }
}

/* start work-gallery */

.subhead{
  max-width: 900px;
  margin: 10px auto 18px;
  text-align: center;
  line-height: 1.35;
  opacity: 0.9;
}

.work-gallery{
  max-width: 1100px;
  margin: 0 auto 28px;
  padding: 18px 16px;
}

.section-title{
  text-align:center;
  margin: 0 0 14px;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid figure{
  margin:0;
  background:#fff;
  border-radius: 10px;
  overflow:hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.gallery-grid img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
}

.gallery-grid figcaption{
  padding: 10px 12px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.gallery-cta{
  display:flex;
  gap: 10px;
  justify-content:center;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img{ height: 200px; }
}

@media (max-width: 560px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .gallery-grid img{ height: 220px; }
}

.work-gallery{
  max-width:1100px;
  margin:0 auto 40px;
  padding:20px;
}

.section-title{
  text-align:center;
  margin-bottom:20px;
}

.carousel-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
}

.carousel-card{
  background:#fff;
  padding:12px;
  border-radius:12px;
  box-shadow:0 3px 14px rgba(0,0,0,0.08);
}

.carousel-card h3{
  margin:0 0 10px;
  text-align:center;
}

.carousel{
  overflow:hidden;
  border-radius:10px;
}

.carousel-track{
  display:flex;
  transition: transform 0.4s ease;
}

.carousel-track img{
  width:100%;
  height:220px;
  object-fit:cover;
  flex-shrink:0;
}

/* Responsive */
@media (max-width: 900px){
  .carousel-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .carousel-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== Premium Work Showcase ===== */
.work-showcase{
  max-width: 1150px;
  margin: 0 auto 44px;
  padding: 18px 16px 0;
}

.work-head{
  text-align:center;
  margin-bottom: 18px;
}

.work-head h2{
  margin: 0;
  letter-spacing: 0.2px;
}

.work-head p{
  margin: 8px auto 0;
  max-width: 760px;
  opacity: 0.85;
  line-height: 1.35;
}

.work-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Card */
.work-card{
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #0f0f10;
  box-shadow: 0 10px 26px rgba(0,0,0,0.16);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
}

.work-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}

/* Title overlay */
.work-card__title{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 12px 10px;
  z-index: 4;
  color: #fff;
  background: linear-gradient(to bottom, rgba(0,0,0,.72), rgba(0,0,0,0));
}

.work-card__title h3{
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .2px;
}

.work-card__title span{
  display:block;
  margin-top: 2px;
  font-size: .9rem;
  opacity: .85;
}

/* Carousel */
.work-carousel{
  position: relative;
}

.wc-viewport{
  overflow:hidden;
}

.wc-track{
  display:flex;
  transition: transform .45s cubic-bezier(.2,.75,.2,1);
  will-change: transform;
}

.wc-track img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  flex-shrink: 0;
  display:block;
  filter: saturate(1.05) contrast(1.03);
}

/* Subtle bottom fade for “premium” feel */
.work-card::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height: 55%;
  pointer-events:none;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
  z-index: 2;
}

/* Buttons */
.wc-btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.42);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity: 0;
  transition: opacity .15s ease, transform .15s ease, background .15s ease;
  backdrop-filter: blur(6px);
}

.work-card:hover .wc-btn{
  opacity: 1;
}

.wc-btn:hover{
  background: rgba(0,0,0,.62);
  transform: translateY(-50%) scale(1.03);
}

.wc-btn.prev{ left: 10px; }
.wc-btn.next{ right: 10px; }

/* Dots */
.wc-dots{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 6;
  display:flex;
  gap: 6px;
  justify-content:center;
  align-items:center;
}

.wc-dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(0,0,0,.25);
  cursor:pointer;
  transition: transform .12s ease, background .12s ease;
}

.wc-dot.active{
  background: rgba(255,255,255,.92);
  transform: scale(1.15);
}

/* CTA buttons (if your site already has btn styles, keep yours) */
.work-actions{
  display:flex;
  gap: 10px;
  justify-content:center;
  flex-wrap: wrap;
  margin: 18px 0 0;
}

.btn-primary, .btn-secondary{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 12px;
  text-decoration:none;
  font-weight: 700;
}

.btn-primary{
  background:#f4b000;
  color:#111;
}

.btn-secondary{
  background:#1d1d1f;
  color:#fff;
  border: 1px solid rgba(255,255,255,.12);
}

/* Responsive */
@media (max-width: 900px){
  .work-grid{ grid-template-columns: repeat(2, 1fr); }
  .wc-track img{ height: 230px; }
}

@media (max-width: 560px){
  .work-grid{ grid-template-columns: 1fr; }
  .wc-track img{ height: 240px; }
  .wc-btn{ opacity: 1; } /* always visible on mobile */
}


/* end work-gallery */