body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

/* Header */
header {
  background: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header.sticky { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
header .logo { font-weight: 700; font-size: 1.6rem; }
header .logo span { color: #d32f2f; }
header nav { display: flex; gap: 20px; }
header nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  position: relative;
}
header nav a::after {
  content: '';
  width: 0;
  height: 2px;
  background: #d32f2f;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: width .3s;
}
header nav a:hover::after { width: 100%; }
.menu-toggle { display: none; flex-direction: column; cursor: pointer; }
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
  transition: .3s;
}
@media(max-width:768px) {
  header nav { display: none; flex-direction: column; background: #fff; position: absolute; top: 60px; right: 20px; border: 1px solid #eee; padding: 1rem; }
  header nav.active { display: flex; }
  .menu-toggle { display: flex; }
}

/* Hero */
#hero {
  min-height: 100vh;
  background: url('assets/bgphoto.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
#hero .hero-text {
  position: relative;
  z-index: 1;
  animation: fadeIn 2s ease;
  padding: 0 1rem;
}
#hero h1 { font-size: 3rem; margin-bottom: 1rem; }
#hero p { font-size: 1.2rem; margin-bottom: 1.5rem; }
.btn {
  background: #d32f2f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover { background: #a32323; }

/* Sections */
section { padding: 4rem 2rem; text-align: center; }
section:nth-child(even) { background: #fafafa; }
h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}
h2::after {
  content: '';
  width: 50px;
  height: 3px;
  background: #d32f2f;
  display: block;
  margin: .5rem auto;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.chip {
  border: 1px solid #e5e7eb;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
}
.chip.active {
  border-color: #d32f2f;
  color: #d32f2f;
}

/* Grid layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.card-grid .card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  transition: .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 6px 15px rgba(0,0,0,0.15); }
.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  background: #f8fafc;
}
.card h3 { font-size: 1rem; margin-top: 10px; color: #111; }
.card p { font-size: .9rem; color: #666; }

/* Contact */
form {
  max-width: 500px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
}
form input, form textarea {
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}
form button {
  background: linear-gradient(45deg, #d32f2f, #a32323);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: .3s;
}
form button:hover {
  box-shadow: 0 4px 12px rgba(211,47,47,0.4);
  transform: scale(1.05);
}

/* Footer */
footer { background: #111; color: #aaa; padding: 1.5rem; text-align: center; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media(max-width:768px){
  #hero h1{font-size:2rem;}
  #hero p{font-size:1rem;}
}

/* ==============================
   SERVICES SECTION (NEW DESIGN)
   ============================== */

#services {
  background: #fdfdfd;
  padding: 4rem 2rem;
  text-align: center;
}

#services h2 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: #222;
  position: relative;
}

#servicesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* Service card shape */
#servicesGrid .card {
  position: relative;
  background: #fff;
  border-radius: 10px 10px 40px 40px;
  padding: 2rem 1rem 3rem;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Bottom curved shape */
#servicesGrid .card::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 40px;
  background: inherit;
  border-radius: 0 0 80px 80px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Top white circle for icon/image */
/*#servicesGrid .card::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: -25px;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/
/*  width: 60px;*/
/*  height: 60px;*/
/*  border-radius: 50%;*/
/*  background: #fff;*/
/*  background-size: 60% auto;*/
/*  background-repeat: no-repeat;*/
/*  background-position: center;*/
/*  box-shadow: 0 3px 8px rgba(0,0,0,0.1);*/
/*}*/

/* Each card color theme */
#servicesGrid .card:nth-child(1) {
  background: #0097a7; /* teal - Digital */
}
#servicesGrid .card:nth-child(2) {
  background: #e53935; /* red - Offset */
}
#servicesGrid .card:nth-child(3) {
  background: #fbc02d; /* yellow - Flex */
  color: #333;
}
#servicesGrid .card:nth-child(4) {
  background: #ef6c00; /* orange - Screen */
}
#servicesGrid .card:nth-child(5) {
  background: #1565c0; /* blue - Sublimation */
}

/* Optional: set icons for white circles */
/*#servicesGrid .card:nth-child(1)::before {*/
/*  background-image: url('/assets/icons/digital.png');*/
/*}*/
/*#servicesGrid .card:nth-child(2)::before {*/
/*  background-image: url('/assets/icons/offset.png');*/
/*}*/
/*#servicesGrid .card:nth-child(3)::before {*/
/*  background-image: url('/assets/icons/flex.png');*/
/*}*/
/*#servicesGrid .card:nth-child(4)::before {*/
/*  background-image: url('/assets/icons/screen.png');*/
/*}*/
/*#servicesGrid .card:nth-child(5)::before {*/
/*  background-image: url('/assets/icons/sublimation.png');*/
/*}*/

/* Headings and text */
#servicesGrid .card h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

#servicesGrid .card p {
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0 10px;
  color: rgba(255,255,255,0.9);
}

#servicesGrid .card:nth-child(3) h3,
#servicesGrid .card:nth-child(3) p {
  color: #333;
}

/* Hover effect */
#servicesGrid .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  #servicesGrid {
    gap: 25px;
  }
  #servicesGrid .card {
    max-width: 100%;
  }
}

