.meta-ads-section {
  background-color: #000; /* Pure Black */
  color: #fff; /* White text */
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.meta-ads-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.left-content {
  flex: 1 1 500px;
}

.left-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff; /* Red heading */
  margin-bottom: 20px;
}
.left-content h1 span{
    color: #e80000;
}
.left-content p {
  font-size: 16px;
  color: #ddd; /* Light grey for readability */
  margin-bottom: 15px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.primary-btn {
  background-color: #e80000;
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.primary-btn:hover {
  background-color: #e80000;
}

.secondary-btn {
  border: 2px solid #e80000;
  color: #e80000;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.secondary-btn:hover {
  background-color: #e80000;
  color: #fff;
}

.right-graphic {
  flex: 1 1 500px;
  text-align: center;
}

.right-graphic img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.2);
}
.trusted-carousel {
  background: #000;
  padding: 30px 20px;
  text-align: center;
  color: white;
}

.trusted-carousel .container {
  max-width: 1200px;
  margin: auto;
}

.section-heading {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}
.section-heading span {
  color: #e80000; 
}
.section-subtext {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 40px;
}

.carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: #000;
}

.carousel-track {
  display: flex;
  animation: scrollLogos 20s linear infinite;
  gap: 60px;
  align-items: center;
}

.carousel-track img {
  max-height: 50px;
  opacity: 0.8;
  transition: 0.3s;
  border-radius: 5px;
  background-color: #fff;
  width: auto;
  max-width: 150px;
}

.carousel-track img:hover {
  opacity: 1;
  border: #000 2px solid;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
  
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-40%);
  }
}

.what-is-meta-ads-section {
  background-color: #000;
  padding: 30px 20px;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.what-is-meta-ads-section .container {
  max-width: 800px;
  margin: auto;
  align-items: center;
}

.content-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
}

.text-content {
  flex: auto;
  text-align: center;
}

.text-content h2 {
  color: #ff0000;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
}

.image-content {
  flex: auto;
  text-align: center;
}

.image-content img {
  max-width: 60%;
  height: auto;
  border-radius: 16px;
}
.ads-problems-modern {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.ads-problems-modern .container {
  max-width: 1200px;
  margin: 0 auto;
}

.ads-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.ads-left {
  flex: 1 1 500px;
}

.ads-left h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}

.ads-left .red {
  color: #e80000;
}

.ads-list p {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.4;
}

.ads-desc {
  margin-top: 30px;
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}

.ads-desc .highlight {
  color: #e80000;
  font-weight: 600;
}

.ads-right {
  flex: 1 1 500px;
  text-align: center;
}

.ads-right img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}
.why-meta-ads-section {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.why-meta-ads-section .container {
  max-width: 1200px;
  margin: auto;
}

.why-inner {
  max-width: 800px;
  margin: auto;
}

.why-inner h2 {
  font-size: 32px;
  color: #e80000;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-inner .intro {
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
}

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 40px;
}

.point {
  font-size: 16px;
  color: #fff;
  padding: 10px 20px;
  background-color: #111;
  border: 1px solid #222;
  border-radius: 12px;
  transition: 0.3s;
}

.point:hover {
  border-color: #e80000;
  background-color: #111111cc;
}
.work-process-section {
  background-color: #000; /* Pure black background */
  color: #fff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.work-process-section .container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #111; /* Only container is dark */
  border-radius: 16px;
  padding: 60px 80px;
  box-shadow: 0 0 40px rgba(232, 0, 0, 0.15); /* Red glow */
  position: relative;
  z-index: 2;
}

/* Section Heading */
.section-title {
  text-align: center;
  font-size: 32px;
  color: #e80000;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Timeline Wrapper */
.timeline {
  position: relative;
  width: 100%;
}

/* Timeline Item */
.timeline-item {
  display: flex;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  margin: 10px 0;
  align-items: center;
  z-index: 2;
}

/* Alternate Side */
.timeline-item.right {
  justify-content: flex-end;
}

/* Content Box */
.timeline-item .content {
  background-color: #000;
  padding: 20px 24px;
  border-radius: 12px;
  border-left: 4px solid #e80000;
  max-width: 320px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(232, 0, 0, 0.08);
  transition: transform 0.3s;
}

.timeline-item.right .content {
  border-left: none;
  border-right: 4px solid #e80000;
  text-align: right;
}

/* Headings & Paragraphs */
.timeline-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
  color: #fff;
}

.timeline-item p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.5;
}

/* Center Line */
.scroll-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #222;
  transform: translateX(-50%);
  z-index: 1;
}

/* Scroll Circle */
.circle {
  width: 18px;
  height: 18px;
  background-color: #e80000;
  border-radius: 50%;
  position: sticky;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 12px #e80000;
}

.offer-highlight-section {
  background: #000;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
}

.highlight-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.highlight-left {
  flex: 1 1 40%;
}

.highlight-title {
  font-size: 42px;
  color: #e80000;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight-tagline {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.highlight-subline {
  font-size: 16px;
  color: #ccc;
}

.highlight-right {
  flex: 1 1 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(232, 0, 0, 0.1);
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.highlight-list li {
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #333;
}

.highlight-bottom-line {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 20px;
}

.highlight-bottom-line span {
  color: #fff;
  font-weight: bold;
}

.highlight-cta {
  background: #e80000;
  color: #fff;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.highlight-cta:hover {
  background: #c50000;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  overflow-y: auto;
}

.modal-content {
  background: #111;
  padding: 30px;
  margin: 50px auto;
  max-width: 1000px;
  border-radius: 10px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 20px;
  color: white;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  padding: 10px 15px;
  border-radius: 50%;
  z-index: 10000;
  transition: background 0.3s ease;
}

.newgallery-grid {
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 15px;
}

.newgallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}






@media (max-width: 768px) {
  .why-points {
    grid-template-columns: 1fr;
  }
  .ads-problems-modern {
    text-align: center;
  }
  .ads-flex {
    flex-direction: column-reverse
  }
  
  .timeline {
    padding: 0 10px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .timeline-item.right .content {
    border-right: none;
    border-left: 4px solid #e80000;
    text-align: left;
  }
  .work-process-section .container{
    padding: 20px 30px;
  }

  .scroll-line {
    left: 0px; /* Move line to left on mobile */
    transform: none;
  }

  .highlight-flex {
    flex-direction: column;
  }

  .highlight-left, .highlight-right {
    flex: 1 1 100%;
  }

  .highlight-title {
    font-size: 32px;
    text-align: center;
  }

  .highlight-tagline,
  .highlight-subline,
  .highlight-list,
  .highlight-bottom-line,
  .point
   {
    text-align: left;
  }
  .highlight-cta{
    text-align: center;
  }
  .newgallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}
}

