@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
.span1 {
    color: #f83600;
}

.hero {
  width: 100%;
  padding: 100px 20px;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 850px;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
}

/* Breadcrumb Section */
.breadcrumb {
  width: 100%;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.breadcrumb-container {
  margin: 0 auto;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: #f83600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb span {
  margin: 0 8px;
  color: #333;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .breadcrumb-container {
    font-size: 0.85rem;
      padding: 0.8rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 5rem 2rem;
  }
}

.mockup-grid-section {
  padding: 50px 150px;
  background: #ffffff;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.mockup-card {
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.mockup-card:hover {
  transform: translateY(-5px);
}

.mockup-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
    border-radius: 20px;
}

.mockup-info {
  padding: 15px;
  text-align: left;
}

.mockup-info h3 {
  font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .mockup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
  }
  .mockup-grid-section {
    padding: 50px 20px;
    background: #ffffff;
  }
  .mockup-card img {
    height: 250px;
  }
  .mockup-info h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .mockup-card img {
    height: 250px;
  }
  .mockup-info h3 {
    font-size: 1.1rem;
  }
}

.latest-mockups {
  padding: 50px 20px;
  display: flex;
  margin-top: 50px;
  justify-content: center;
}

.latest-mockups-card {
  display: flex;
  background-color: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.latest-mockups-card:hover {
  transform: translateY(-5px);
}

.card-image {
  flex: 1;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  flex: 2;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h2 {
  font-size: 35px;
  margin-bottom: 15px;
}

.interactive-subtext {
  font-size: 18px;
  color: #555;
}

.hover-text {
  color: #1a73e8;
  cursor: pointer;
  text-decoration: underline;
}

.hover-text:hover {
  color: #0c47a1;
}

/* Responsive */
@media (max-width: 992px) {
  .latest-mockups-card {
    flex-direction: column;
    border-radius: 20px;
  }

  .card-content h2 {
    font-size: 24px;
  }

  .card-content {
    padding: 25px 30px;
  }
}

@media (max-width: 480px) {
  .latest-mockups {
    margin-top: 10px;
  }
}

/* Center Google Ads container */
.adsbygoogle {
  display: block;
  margin: 40px auto;  /* centers horizontally */
  text-align: center;
  max-width: 100%;
}

/* Optional: make sure it doesn’t stretch too wide on large screens */
@media (min-width: 1024px) {
  .adsbygoogle {
    width: 70%;  /* adjust this as needed (60–80% looks good) */
  }
}

/* Mobile optimization */
@media (max-width: 768px) {
  .adsbygoogle {
    width: 90%;
  }
}