/*  ====== GLOBAL RESET (DO NOT REMOVE)====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* =====PAGE BACKGROUND====*/
body {
  background: #fff;
}

/* ===============================
   OPTIVARO HEADER STYLES
================================ */

/* HEADER BASE */
#optiva-main-header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* CONTAINER */
.optiva-header-container {
  max-width: 1300px;
  margin: auto;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.optiva-logo {
  color: #ff6a00;
  font-size: 22px;
  font-weight: 800;
}

/* NAV */
.optiva-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* NAV LINKS */
.optiva-nav a,
.optiva-drop-btn {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* ACTIVE LINK */
.optiva-nav a.active {
  color: #ff6a00;
}

/* HOVER */
.optiva-nav a:hover,
.optiva-drop-btn:hover {
  color: #ff6a00;
}

/* CTA BUTTON */
.optiva-cta-btn {
  background: #ff6a00;
  color: #000;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

/* ================= DROPDOWN ================= */
.optiva-dropdown {
  position: relative;
}

.optiva-drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  min-width: 180px;
  display: none;
  flex-direction: column;
  border-radius: 4px;
}

.optiva-drop-menu a {
  padding: 10px 14px;
  font-size: 13px;
}

.optiva-drop-menu a:hover {
  background: #1a1a1a;
}

/* SHOW DROPDOWN ON HOVER (DESKTOP) */
.optiva-dropdown:hover .optiva-drop-menu {
  display: flex;
}

/* ================= MOBILE ICON ================= */
.optiva-menu-icon {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}
.optiva-drop-btn {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.optiva-dropdown:hover .optiva-drop-menu {
  display: flex;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 992px) {

  /* SHOW HAMBURGER */
  .optiva-menu-icon {
    display: block;
  }

  /* HIDE CTA */
  .optiva-cta-btn {
    display: none;
  }

  /* NAV STACK */
  .optiva-nav {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  /* SHOW MENU */
  .optiva-nav.show {
    display: flex;
  }

  /* DROPDOWN FIX FOR MOBILE */
  .optiva-drop-menu {
    position: static;
    background: #111;
    width: 100%;
    text-align: center;
  }

  .optiva-dropdown:hover .optiva-drop-menu {
    display: none;
  }

  .optiva-dropdown.active .optiva-drop-menu {
    display: flex;
  }
}
/*================After Nav Bar section1 starts here ======*/
/* ======================================
 BACKGROUND IMAGE (LOW OPACITY)
====================================== */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Image effects */
  filter: grayscale(70%) contrast(1.1) brightness(1);
  opacity: 0.55;

  /* Slow premium motion */
  animation: bgMove 22s ease-in-out infinite alternate;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;

  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);

  background-size: 90px 90px;
  opacity: 0.18;
}



/* ======================================
 HERO SECTION BASE
====================================== */
.hero-section {
  position: relative;
  height: 80vh;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

@keyframes bgMove {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
  


/* ======================================
 DARK OVERLAY FOR TEXT READABILITY
====================================== */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      135deg,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.85)
    ),
    linear-gradient(
      120deg,
      rgba(255,122,0,0.18),
      transparent 60%
    );
}
/* ======================================
 HERO CONTENT
====================================== */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======================================
 HEADLINE
====================================== */
.hero-content h1 {
  font-size: 56px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-content h1 span {
  color: #ff7a00;
}

/* ======================================
 DESCRIPTION
====================================== */
.hero-content p {
  font-size: 18px;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.7;
}

/* ======================================
 CTA BUTTON
====================================== */
.hero-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.4s ease;
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255,122,0,0.35);
}

/* ======================================
 RESPONSIVE
====================================== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/*====================After Nav Bar section1 Ends here==============================*/

/* ================= BRAND MARQUEE SECTION2 START HERE ================= */
.brand-marquee {
  padding: 20px 0;
  background: #ffffff;
  overflow: hidden;
  text-align: center;
}

.brand-marquee h2 {
  font-size: 50px;
  color: #ff7a00;
  margin-bottom: 40px;
}

/* Wrapper hides overflow */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Moving track */
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marqueeMove 30s linear infinite;
}

/* Brand text style */
.marquee-track span {
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  opacity: 0.85;
  white-space: nowrap;
  transition: 0.3s ease;
}

/* Hover highlight */
.marquee-track span:hover {
  color: #ff7a00;
  opacity: 1;
  transform: scale(1.05);
}

/* Animation */
@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .marquee-track span {
    font-size: 20px;
  }

  .brand-marquee h2 {
    font-size: 24px;
  }
}

/* ================= BRAND MARQUEE SECTION2 ENDS HERE ================= */

/* ================= ABOUT SECTION ================= */
.about-section {
  position: relative;
  padding: 100px 40px;
  background: #000;
  overflow: hidden;
}

/* Creative background glow */
.about-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,122,0,0.18), transparent 65%);
  top: -150px;
  left: -150px;
  animation: glowMove 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes glowMove {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(60px, 40px);
  }
}

/* Layout */
.about-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.about-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #fff;
}

.about-content h2 span {
  color: #ff7a00;
}

.about-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 20px;
}

/* CTA BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 34px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: 0.4s ease;
}

.about-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(255,122,0,0.35);
}

/* RIGHT IMAGE */
.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  animation: imageFloat 6s ease-in-out infinite alternate;
}

@keyframes imageFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-12px);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-section {
    padding: 80px 20px;
  }
}
/* ================= ABOUT SECTION ENDS HERE ================= */   

/* ================= STRATEGY SECTION START HERE ================= */
.strategy-section {
  background: #000;
  padding: 100px 40px;
}

/* Container */
.strategy-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

/* ================= LEFT SIDE ================= */
.strategy-left h2 {
  font-size: 38px;
  line-height: 1.2;
}

.strategy-left h2 span {
  color: #ff7a00;
}

.intro-text {
  margin: 18px 0 30px;
  color: #ccc;
  line-height: 1.7;
}

/* Accordion wrapper */
.accordion-item {
  margin-bottom: 18px;
  border-radius: 10px;
  background: #111;
  overflow: hidden;
}

/* Accordion title */
.accordion-title {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  gap: 12px;
  transition: background 0.3s;
}

.accordion-title span {
  color: #ff7a00;
}

.accordion-title:hover {
  background: #1a1a1a;
}

/* Accordion content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #0c0c0c;
  transition: max-height 0.4s ease;
}

.accordion-content p {
  padding: 16px 20px;
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

/* ================= RIGHT SIDE ================= */
.skill {
  margin-bottom: 26px;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.skill-name {
  color: #fff;
  font-size: 14px;
}

.skill-percent {
  color: #ff7a00;
  font-size: 13px;
}

/* Progress bar */
.bar {
  background: #222;
  height: 8px;
  border-radius: 20px;
  overflow: hidden;
}

.fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  border-radius: 20px;
  position: relative;
  transition: width 1.5s ease;
}

/* Round percentage circle */
.circle {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: #ff7a00;
  color: #000;
  font-size: 11px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(255, 122, 0, 0.6);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .strategy-container {
    grid-template-columns: 1fr;
  }

  .strategy-section {
    padding: 80px 20px;
  }

  .strategy-left h2 {
    font-size: 30px;
  }
}
/* ================= STRATEGY SECTION ENDS HERE ================= */
/* ================= PROCESS SECTION STARTS HERE ================= */
/* ================= MAIN SECTION ================= */
.process-section {
  background: #fff;
  padding: 100px 40px;
}

/* ================= SECTION TITLE ================= */
.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-title h2 {
  font-size: 36px;
  color: #000;
}

.section-title p {
  margin-top: 12px;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* ================= PROCESS CONTAINER ================= */
.process-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  position: relative;
}

/* Connecting line */
.process-container::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff9f1c, #ffb703);
  z-index: 1;
}

/* ================= PROCESS ITEM ================= */
.process-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  background: #fff;
  border: 4px solid #ff9f1c;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(255, 159, 28, 0.35);
}

.process-item h4 {
  margin-top: 18px;
  font-size: 14px;
  color: #ff9f1c;
}

.process-item h3 {
  font-size: 20px;
  margin: 6px 0;
  color: #000;
}

.process-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  padding: 0 10px;
}

/* ================= PROMOTION BOX ================= */
.promo-box {
  max-width: 1200px;
  margin: 90px auto 0;
  background: linear-gradient(135deg, #ff9f1c, #ffb703);
  border-radius: 18px;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.promo-content h3 {
  font-size: 28px;
  color: #000;
}

.promo-content p {
  margin-top: 10px;
  color: #222;
  max-width: 500px;
}

/* CTA button */
.promo-btn {
  padding: 14px 38px;
  background: #000;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.promo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .process-container {
    grid-template-columns: 1fr;
  }

  .process-container::before {
    display: none;
  }

  .promo-box {
    flex-direction: column;
    text-align: center;
  }

  .section-title h2 {
    font-size: 30px;
  }
}
/* ================= PROCESS SECTION ENDS HERE ================= */
/* ================= WHAT WE DO SECTION STYLES ================= */
.what-we-do-section {
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
  padding: 100px 20px;
  color: #fff;
}

/* -------- Section Heading -------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.6;
}

/* -------- Grid Layout -------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: auto;
}

/* -------- Service Card -------- */
.service-card {
  background: linear-gradient(180deg, #121212, #0d0d0d);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 55px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

/* Orange glow line */
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6a00, #ff9f45);
  transition: width 0.4s ease;
}

/* Hover Effect */
.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255,106,0,0.15);
}

/* -------- Icon -------- */
.service-icon {
  font-size: 36px;
  color: #ff6a00;
  display: inline-block;
  margin-bottom: 25px;
}

/* -------- Card Title -------- */
.service-card h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.5;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }
}

/* ================= WHAT WE DO SECTION ENDS HERE ================= */

/* ================= WHY OPTIVAROMEDIA SECTION starts here ================= */
.why-optiva-section {
  position: relative;
  background: #ffffff;
  padding: 100px 20px;
  overflow: hidden;
}

/* -------- Subtle Background Pattern -------- */
.pattern-layer {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,106,0,0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0,0,0,0.04) 0%, transparent 45%);
  z-index: 0;
}

/* -------- Main Layout -------- */
.why-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* -------- Left Content -------- */
.why-content .section-tag {
  color: #ff6a00;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

.why-content h2 {
  font-size: 40px;
  color: #111;
  margin: 15px 0 20px;
}

.why-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* -------- Feature List -------- */
.why-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.why-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #222;
}

/* -------- CTA Button -------- */
.why-btn {
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(135deg, #ff6a00, #ff944d);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255,106,0,0.35);
}

/* -------- Right Stats Area -------- */
.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 35px 20px;
  text-align: center;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card h3 {
  font-size: 36px;
  color: #ff6a00;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 14px;
  color: #444;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .why-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .why-content h2 {
    font-size: 30px;
  }

  .why-stats {
    grid-template-columns: 1fr;
  }
}
/* ================= WHY OPTIVAROMEDIA SECTION ENDS HERE ================= */

/* ================= CORE SERVICES SECTION START HERE================= */
.core-services-area {
  position: relative;
  background: #000000;
  padding: 100px 20px;
  overflow: hidden;
}

/* ---------- Subtle background texture (new pattern) ---------- */
.core-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(137, 73, 20, 0.349) 0,
      rgba(149, 88, 27, 0.5) 1px,
      transparent 1px,
      transparent 12px
    );
  z-index: 0;
}

/* ---------- Content wrapper ---------- */
.core-services-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

/* ---------- Section title ---------- */
.core-services-header {
  text-align: center;
  margin-bottom: 70px;
}

.core-services-header h2 {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 12px;
}

.core-services-header p {
  font-size: 16px;
  color: #fc5604;
  max-width: 620px;
  margin: auto;
  line-height: 1.7;
}

/* ---------- Services grid ---------- */
.core-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ---------- Individual service card ---------- */
.core-service-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 40px 28px;
  border-radius: 16px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Accent line (orange-inspired but soft) */
.core-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff9f43, #ff784f);
  border-radius: 16px 16px 0 0;
}

/* Card content */
.core-service-card h3 {
  font-size: 20px;
  color: #111;
  margin-bottom: 12px;
}

.core-service-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Hover effect */
.core-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .core-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .core-services-header h2 {
    font-size: 30px;
  }

  .core-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CORE SERVICES SECTION ENDS HERE ================= */

/* ================= TESTIMONIALS SECTION START ================= */
#customer-praise-section {
  background: linear-gradient(135deg, #ff7f50, #ffb347);
  padding: 20px 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Arial', sans-serif;
}

.cp-container {
  max-width: 2100px;
  margin: 0 auto;
  text-align: center;
}

.cp-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.cp-google-prompt a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

.cp-google-prompt {
  margin-bottom: 40px;
  color: #fff;
  font-size: 1.1rem;
}

.cp-carousel {
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cp-review-card {
  background: rgba(255,255,255,0.9);
  border-radius: 15px;
  padding: 20px;
  margin: 0 10px;
  max-width: 400px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
  flex-shrink: 0;
}

.cp-review-card.active {
  opacity: 1;
  transform: translateX(0);
}

.cp-review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.cp-reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.cp-reviewer-name {
  font-size: 1.2rem;
  margin: 0;
  color: #333;
}

.cp-review-date {
  font-size: 0.85rem;
  color: #777;
  margin: 2px 0;
}

.cp-review-stars {
  color: #f5c518;
  font-size: 1rem;
}

.cp-review-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cp-review-card {
    max-width: 300px;
    padding: 15px;
  }

  .cp-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .cp-review-card {
    max-width: 100%;
  }
}
/* ================= TESTIMONIALS SECTION END ================= */

/*=====================CONTACT FORM SECTION STARTS HERE===========================*/
/* ===== CTA SECTION ===== */
.opti-cta-section {
  background: #000;
  padding: 80px 20px;
  color: #fff;
}

.opti-cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.opti-cta-text {
  flex: 1;
}

.opti-cta-text h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.opti-contact-info {
  list-style: none;
  padding: 0;
}

.opti-contact-info li {
  font-size: 16px;
  margin-bottom: 12px;
  opacity: 0.9;
}

/* FORM CARD */
.opti-form-wrapper {
  flex: 1;
}

.opti-contact-form {
  border: 2px solid #ff6a00;
  padding: 30px;
  border-radius: 10px;
}

.opti-form-row {
  display: flex;
  gap: 15px;
}

.opti-contact-form input,
.opti-contact-form select,
.opti-contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  background: #000;
  border: 1px solid #555;
  color: #fff;
  border-radius: 6px;
}

.opti-contact-form textarea {
  min-height: 120px;
  resize: none;
}

.opti-contact-form button {
  width: 100%;
  background: #ff6a00;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .opti-cta-container {
    flex-direction: column;
  }

  .opti-cta-text h2 {
    font-size: 36px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .opti-cta-text h2 {
    font-size: 28px;
  }

  .opti-form-row {
    flex-direction: column;
  }

  .opti-cta-section {
    padding: 50px 15px;
  }
}
/*================== RIGHT SIDE ENDS HERE=====================*/
/*======================= CONTACT FORM SECTION ENDS HERE======================*/
/*======================= FOOTER SECTION STARTS HERE======================*/
/* ===== FOOTER AREA ===== */
.opti-footer-area {
  background: #000;
  color: #fff;
  padding: 70px 20px 30px;
}

.opti-footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 40px;
}

/* BRAND */
.opti-footer-brand h3 {
  color: #ff6a00;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.opti-footer-brand p {
  margin: 15px 0;
  opacity: 0.85;
}

.opti-footer-socials {
  display: flex;
  gap: 12px;
}

.opti-footer-socials a {
  text-decoration: none;
  color: #fff;
  border: 1px solid #444;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
}

/* LINKS */
.opti-footer-links h4,
.opti-footer-badge h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

.opti-footer-links ul {
  list-style: none;
  padding: 0;
}

.opti-footer-links li {
  margin-bottom: 10px;
}

.opti-footer-links a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
}

.opti-footer-links a:hover {
  color: #ff6a00;
}

/* BADGE */
.opti-footer-badge img {
  max-width: 160px;
  margin-top: 10px;
  border: 2px solid #ff6a00;
  padding: 6px;
  border-radius: 6px;
}

/* BOTTOM BAR */
.opti-footer-bottom {
  border-top: 1px solid #222;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .opti-footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .opti-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .opti-footer-socials {
    justify-content: center;
  }

  .opti-footer-badge img {
    margin: 15px auto 0;
  }
}

/*======================= FOOTER SECTION ENDS HERE======================*/

/*=================ABOUT US STYLES STARTS HERE=========================*/
/* ===== WHO WE ARE HERO ===== */
#om-who-we-are {
  position: relative;
  min-height: 90vh;
  background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d')
              center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.om-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.om-hero-content {
  position: relative;
  max-width: 900px;
  padding: 20px;
  z-index: 2;
}

.om-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.om-hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.om-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.om-btn {
  background: #ff6a00;
  color: #000;
  padding: 14px 22px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.om-btn:hover {
  background: #ff8c2b;
}

/* ===== ICON STRIP ===== */
#om-icon-strip {
  background: #000;
  color: #ff6a00;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  padding: 30px 20px;
  text-align: center;
}

.om-icon-item span {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.om-icon-item p {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

/* ===== OUR STORY ===== */
#om-our-story {
  padding: 70px 20px;
  text-align: center;
}

#om-our-story h2 {
  color: #ff6a00;
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 800;
}

#om-our-story p {
  max-width: 900px;
  margin: auto;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
  .om-hero-content h1 {
    font-size: 34px;
  }

  .om-btn {
    width: 100%;
    text-align: center;
  }
}

/*VISION STARTS HERE*/
/* ===== VISION & MISSION ===== */
#omx-vision-mission {
  background: #000;
  color: #fff;
  padding: 80px 20px;
}

.omx-vm-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.omx-vm-content h2 {
  color: #ff6a00;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.omx-vm-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.omx-vm-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* ===== SPLIT CTA ===== */
#omx-split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.omx-cta-left {
  background: #d6541c;
  padding: 90px 60px;
}

.omx-cta-right {
  background: #ffffff;
  padding: 90px 60px;
}

#omx-split-cta h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

.omx-cta-link {
  font-weight: 700;
  text-decoration: none;
  color: #000;
  letter-spacing: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .omx-vm-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .omx-vm-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  #omx-split-cta {
    grid-template-columns: 1fr;
  }

  .omx-cta-left,
  .omx-cta-right {
    padding: 60px 30px;
    text-align: center;
  }

  #omx-split-cta h3 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .omx-vm-content h2 {
    font-size: 28px;
  }

  .omx-vm-content p {
    font-size: 15px;
  }
}
/*OUR VISION ENDS HERE*/
/*=================ABOUT US STYLES ENDS HERE=========================*/

/*PORTFOLIO SECTION STARTS HERE*/
/* ===== HERO ===== */
#opx-work-hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(to bottom, #3b2a1a, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}

.opx-work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.opx-work-content {
  position: relative;
  max-width: 1000px;
  z-index: 2;
}

.opx-work-tag {
  display: inline-block;
  color: #ff6a00;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.opx-work-content h1 {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.opx-work-content p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
  margin: auto;
  opacity: 0.9;
}

.opx-work-cta {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.opx-work-cta a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.opx-work-cta a:hover {
  color: #ff6a00;
}

/* ===== ICON STRIP ===== */
#opx-work-icons {
  background: #000;
  padding: 35px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  text-align: center;
}

.opx-icon-box {
  color: #ff6a00;
  font-size: 26px;
}

.opx-icon-box span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .opx-work-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .opx-work-content h1 {
    font-size: 34px;
  }

  .opx-work-cta {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .opx-work-content h1 {
    font-size: 28px;
  }

  .opx-work-content p {
    font-size: 15px;
  }
}
/* ===== IMAGE SECTION  STARTS HERE===== */
#opm-portfolio-area {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

/* TITLE */
.opm-portfolio-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 35px;
  color: #000;
}

/* FILTER BAR */
.opm-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.opm-filter-btn {
  padding: 10px 24px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.opm-filter-btn.active {
  background: #ff6a00;
  color: #000;
}

/* GRID */
.opm-portfolio-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.opm-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.opm-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* CATEGORY BADGE */
.opm-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff6a00;
  color: #000;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 800;
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.9);
  transition: 0.3s;
}

/* SHOW BADGE ON CLICK */
.opm-card.show-category .opm-category-badge {
  opacity: 1;
  transform: scale(1);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .opm-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .opm-portfolio-title {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .opm-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .opm-portfolio-title {
    font-size: 28px;
  }
}
/*PORTFOLIO SECTION ENDS HERE*/

/* CONTACT FORM START HERE*/
/* ===== HERO ===== */
#ocx-contact-hero {
  background: #5a5a5a;
  padding: 80px 20px;
  text-align: center;
}

#ocx-contact-hero h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
}

/* ===== CONTACT AREA ===== */
#ocx-contact-area {
  padding: 80px 20px;
  background: #f6f6f6;
}

.ocx-contact-box {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* LEFT INFO */
.ocx-contact-info {
  padding: 50px 40px;
  border-right: 1px solid #eee;
}

.ocx-info-block {
  margin-bottom: 35px;
}

.ocx-info-block h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

.ocx-info-block a {
  color: #ff6a00;
  text-decoration: none;
  font-weight: 600;
}

/* RIGHT FORM */
.ocx-contact-form {
  padding: 50px 40px;
}

.ocx-contact-form h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 30px;
}

.ocx-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.ocx-contact-form input,
.ocx-contact-form select,
.ocx-contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.ocx-contact-form textarea {
  min-height: 120px;
  margin-bottom: 20px;
  resize: vertical;
}

.ocx-contact-form button {
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 5px;
}

/* ===== CTA STRIP ===== */
#ocx-contact-cta {
  background: #ff6a00;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ocx-cta-text h3 {
  font-size: 22px;
  font-weight: 800;
}

.ocx-cta-text p {
  font-size: 14px;
}

.ocx-cta-btn {
  background: #000;
  color: #fff;
  padding: 14px 24px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .ocx-contact-box {
    grid-template-columns: 1fr;
  }

  .ocx-contact-info {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
}

@media (max-width: 600px) {
  #ocx-contact-hero h1 {
    font-size: 34px;
  }

  .ocx-form-row {
    grid-template-columns: 1fr;
  }

  #ocx-contact-cta {
    text-align: center;
    gap: 15px;
  }
}

/* CONTACT FORM ENDS HERE*/

/* SEO SECTION STARTS HERE */
/* ===== SEO HERO SECTION ===== */
#seo-hero-zone {
  background: linear-gradient(to bottom, #b36a1c 0%, #000 85%);
  padding: 120px 20px 60px;
  text-align: center;
  color: #fff;
}

/* WRAPPER */
.seo-hero-wrap {
  max-width: 1100px;
  margin: auto;
}

/* TAG */
.seo-hero-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 25px;
}

/* TITLE */
.seo-hero-title {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.seo-hero-title span {
  display: block;
  font-size: 52px;
  margin-top: 10px;
}

/* DESCRIPTION */
.seo-hero-desc {
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto 35px;
  opacity: 0.9;
}

/* CERTIFICATIONS */
.seo-hero-cert {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: 0.85;
}

/* BRANDS */
.seo-hero-brands {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  font-size: 12px;
  opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .seo-hero-title {
    font-size: 48px;
  }

  .seo-hero-title span {
    font-size: 42px;
  }

  .seo-hero-brands {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  #seo-hero-zone {
    padding: 90px 15px 50px;
  }

  .seo-hero-title {
    font-size: 34px;
  }

  .seo-hero-title span {
    font-size: 30px;
  }

  .seo-hero-desc {
    font-size: 14px;
  }

  .seo-hero-brands {
    grid-template-columns: repeat(2, 1fr);
    font-size: 11px;
  }
}


/* ===== SEO SERVICE SECTION ===== */
#seo-service-layout {
  background: #ffffff;
  padding: 80px 20px;
}

/* CONTAINER */
.seo-service-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.seo-service-title {
  font-size: 34px;
  font-weight: 800;
  color: #c4550b;
  margin-bottom: 20px;
}

.seo-service-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.seo-service-subtitle {
  font-size: 20px;
  color: #c4550b;
  margin-bottom: 15px;
}

.seo-service-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* BUTTON */
.seo-service-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

/* FORM BOX */
.seo-service-formbox {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.seo-service-formbox h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.seo-service-formbox p {
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
}

.seo-service-formbox input,
.seo-service-formbox textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.seo-service-formbox textarea {
  resize: none;
  height: 110px;
}

.seo-service-formbox button {
  width: 100%;
  background: #ff5a00;
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */

/* TABLET */
@media (max-width: 1024px) {
  .seo-service-container {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  #seo-service-layout {
    padding: 60px 15px;
  }

  .seo-service-title {
    font-size: 26px;
  }

  .seo-service-content p {
    font-size: 14px;
  }

  .seo-service-formbox {
    padding: 22px;
  }
}


/* ===== SEO SERVICE GRID ===== */
#seo-service-grid-zone {
  background: #000;
  padding: 90px 20px;
}

.seo-service-grid-wrap {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.seo-service-grid-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #c4550b;
  margin-bottom: 6px;
}

.seo-service-grid-header p {
  color: #aaa;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* GRID */
.seo-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.seo-service-card {
  background: #fff;
  color: #000;
  padding: 28px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.seo-service-card span {
  font-size: 20px;
}

/* HOVER */
.seo-service-card:hover {
  background: #ff5a00;
  color: #fff;
  transform: translateY(-4px);
}

/* ===== RESPONSIVE ===== */

/* TABLET */
@media (max-width: 1024px) {
  .seo-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  #seo-service-grid-zone {
    padding: 70px 15px;
  }

  .seo-service-grid {
    grid-template-columns: 1fr;
  }

  .seo-service-card {
    font-size: 15px;
    padding: 22px;
  }

  .seo-service-grid-header h2 {
    font-size: 28px;
  }
}


/* ===== SEO OFFERINGS SECTION ===== */
#seo-offerings-section {
  background: #ffffff;
  padding: 80px 20px;
}

.seo-offerings-wrapper {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.seo-offerings-title {
  text-align: center;
  color: #ff4f00;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 50px;
}

/* LIST */
.seo-offerings-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.seo-offer-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.seo-offer-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* BOTTOM SECTION */
.seo-offerings-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 70px;
  border-top: 1px solid #eee;
  padding-top: 40px;
}

.seo-bottom-box h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.seo-bottom-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ===== RESPONSIVE ===== */

/* TABLET */
@media (max-width: 900px) {
  .seo-offerings-bottom {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  #seo-offerings-section {
    padding: 60px 15px;
  }

  .seo-offerings-title {
    font-size: 26px;
  }

  .seo-offer-item h3 {
    font-size: 16px;
  }

  .seo-offer-item p,
  .seo-bottom-box p {
    font-size: 14px;
  }
}

/* ===== SEO GROWTH SECTION ===== */
.growth-seo-section {
  width: 100%;
  padding: 70px 20px;
  background: #090909;
}

.growth-seo-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.growth-seo-header {
  text-align: center;
  margin-bottom: 50px;
}

.growth-seo-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ff7c02;
  margin-bottom: 15px;
}

.growth-seo-header p {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  color: #ffffff;
  line-height: 1.7;
}

/* GRID */
.growth-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.growth-seo-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.growth-seo-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.growth-seo-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.growth-seo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(255, 98, 0, 0.12);
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .growth-seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .growth-seo-header h2 {
    font-size: 30px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .growth-seo-section {
    padding: 50px 15px;
  }

  .growth-seo-grid {
    grid-template-columns: 1fr;
  }

  .growth-seo-header h2 {
    font-size: 26px;
  }

  .growth-seo-card {
    padding: 25px 20px;
  }
}
/*GROWTH SEO ENDS HERE  */
/*SEO AI STARTS HERE*/
/* ===== AI SEO PROCESS SECTION ===== */
.ai-seo-process-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f66301, #101113);
  color: #ffffff;
}

.ai-seo-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADING */
.ai-seo-heading {
  text-align: center;
  margin-bottom: 50px;
}

.ai-seo-heading h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.ai-seo-heading p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}

/* GRID */
.ai-seo-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */
.ai-seo-step-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px 22px;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.ai-seo-step-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.ai-step-number {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background: #ffffff;
  color: #0b5fa5;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 12px;
}

.ai-seo-step-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.ai-seo-step-card p {
  font-size: 14.5px;
  line-height: 1.6;
  opacity: 0.95;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .ai-seo-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-seo-heading h2 {
    font-size: 30px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .ai-seo-process-section {
    padding: 60px 15px;
  }

  .ai-seo-steps-grid {
    grid-template-columns: 1fr;
  }

  .ai-seo-heading h2 {
    font-size: 26px;
  }

  .ai-seo-step-card {
    padding: 26px 20px;
  }
}
/* AI SEO PROCESS SECTION ENDS HERE */
/*TREND REPORT SECTION STARTS HERE*/
/* ===== SEARCH TREND REPORT SECTION ===== */
.trend-report-section {
  padding: 80px 20px;
  background: #ffffff;
}

.trend-report-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.trend-report-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

/* GRID */
.trend-report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.trend-report-card {
  background: #fff;
  border: 1px solid #e6eef5;
  border-radius: 14px;
  padding: 18px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trend-report-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.trend-report-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

.trend-category {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  background: #eaf4ff;
  color: #0b5fa5;
  border-radius: 20px;
  margin-bottom: 10px;
}

.trend-report-card h3 {
  font-size: 16px;
  margin-bottom: 14px;
  color: #111;
}

.trend-download-btn {
  display: inline-block;
  font-size: 14px;
  color: #0b5fa5;
  font-weight: 600;
  text-decoration: none;
}

/* VIEW ALL */
.trend-view-all {
  margin-top: 40px;
}

.trend-view-btn {
  background: #ff5a00;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .trend-report-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trend-report-grid {
    grid-template-columns: 1fr;
  }

  .trend-report-title {
    font-size: 26px;
  }
}
/* TREND REPORT SECTION ENDS HERE */
/* SEO COMMITIMENT STARTS HERE*/
/* ===== SEO COMMITMENT SECTION ===== */
.seo-commitment-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ff8d02, #000000);
  color: #ffffff;
}

.seo-commitment-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  border-radius: 22px;
}

.seo-commitment-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.seo-commitment-content p {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 15px;
  opacity: 0.95;
}

.seo-commitment-image img {
  width: 100%;
  max-width: 360px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .seo-commitment-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .seo-commitment-image img {
    margin: auto;
  }
}

@media (max-width: 600px) {
  .seo-commitment-content h2 {
    font-size: 24px;
  }
}

/* SEO COMMITMENT SECTION ENDS HERE */
/* ===== FAQ SECTION ===== */
.optivaro-faq-section {
  padding: 90px 20px;
  background: #ffffff;
}

.optivaro-faq-container {
  max-width: 1200px;
  margin: auto;
}

.optivaro-faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 60px;
  line-height: 1.2;
}

/* GRID */
.optivaro-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* ITEM */
.optivaro-faq-item {
  border: 1px solid #ececec;
  border-radius: 6px;
  margin-bottom: 18px;
  overflow: hidden;
}

.optivaro-faq-question {
  width: 100%;
  padding: 18px 20px;
  background: #fff;
  border: none;
  font-size: 15.5px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.optivaro-faq-icon {
  font-size: 20px;
  color: #ff5a00;
  transition: transform 0.3s ease;
}

/* ANSWER */
.optivaro-faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  transition: max-height 0.35s ease;
}

.optivaro-faq-answer p {
  padding: 18px 20px;
  font-size: 14.5px;
  color: #555;
}

/* ACTIVE */
.optivaro-faq-item.active .optivaro-faq-answer {
  max-height: 200px;
}

.optivaro-faq-item.active .optivaro-faq-icon {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .optivaro-faq-grid {
    grid-template-columns: 1fr;
  }

  .optivaro-faq-title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .optivaro-faq-question {
    font-size: 14.5px;
  }
}
/* FAQ SECTION ENDS HERE */


/*--- social media starts here---*/
/* --- CSS Reset and Variables --- */


/* --- Hero Section starts here--- */

.socialmedia-hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: rgb(0, 0, 0);

}
.socialmedia-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(249, 167, 112, 0.412); /* Dark overlay */
    z-index: 1;
}
.socialmedia-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.socialmedia-hero-content h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 60px;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1;
}
.socialmedia-hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(0, 0, 0, 0.9);
}
.socialmedia-section .quote {
    font-style: italic;
    color: #765858;
    margin-bottom: 25px;
    font-size: 1.2em;
}
.socialmedia-actions {
    display: flex;
    justify-content: center;
    gap: 10px;

}

.socialmedia-btn-power {
    display: inline-block;
    padding: 15px 30px;
    background-color: black;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}
.socialmedia-btn-power:hover {
    background-color: #ce4f22;
}
/* --- Hero Section ends here--- */
/* ===============================
   OPTIVARO SMM PROCESS  STARTS SECTION
================================ */
/* ===== Optivaromedia SMM Workflow ===== */

#optiva-smm-workflow {
  background: #f9f9f9;
  padding: 30px 20px;
}

.optiva-smm-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.optiva-smm-content {
  max-width: 560px;
}

.optiva-smm-heading {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

.optiva-smm-text {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.optiva-smm-list li {
  font-size: 17px;
  color: #222;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.optiva-smm-image img {
  max-width: 460px;
  width: 100%;
  border-radius: 14px;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .optiva-smm-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .optiva-smm-heading {
    font-size: 28px;
  }

  .optiva-smm-text,
  .optiva-smm-list li {
    font-size: 16px;
  }

  .optiva-smm-list {
    padding-left: 0;
    list-style-position: inside;
  }
}

/* ===============================
   OPTIVARO SMM PROCESS  END SECTION
================================ */

/* ===== Optivaromedia Social Ads Section ===== */

#optiva-social-ads {
  padding: 35px 20px;
  background: #000000;
}

.optiva-ads-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

.optiva-ads-visual img {
  width: 100%;
  max-width: 460px;
}

.optiva-ads-content {
  max-width: 560px;
}

.optiva-ads-content h2 {
  font-size: 36px;
  margin-bottom: 14px;
  color: #fefbfb;
}

.optiva-ads-content h3 {
  font-size: 22px;
  margin-top: 18px;
  margin-bottom: 6px;
  color: #ff6a00; /* Optivaromedia accent */
}

.optiva-ads-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #ffffff;
}

/* ===== Mobile Optimization ===== */

@media (max-width: 768px) {
  .optiva-ads-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .optiva-ads-content h2 {
    font-size: 28px;
  }

  .optiva-ads-content h3 {
    font-size: 20px;
  }

  .optiva-ads-content p {
    font-size: 16px;
  }
}

/* ===== Optivaromedia Workflow  Starts Steps ===== */

#ovm-workflow-steps {
  padding: 30px 20px;
  background: linear-gradient(135deg, #010101, #000000);

}

.ovm-workflow-wrap {
  max-width: 1200px;
  margin: auto;
}

.ovm-workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}

/* Step Card */
.ovm-step-box {
  text-align: center;
  padding: 10px;
}

/* Number Badge */
.ovm-step-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

/* Gradient Variations */
.ovm-step-one { background: linear-gradient(135deg,#222,#ff7a7a); }
.ovm-step-two { background: linear-gradient(135deg,#ff8585,#ff5858); }
.ovm-step-three { background: linear-gradient(135deg,#4d94ff,#004de6); }
.ovm-step-four { background: linear-gradient(135deg,#ff7ab8,#ff4f95); }
.ovm-step-five { background: linear-gradient(135deg,#9c7bff,#6a38ff); }
.ovm-step-six { background: linear-gradient(135deg,#8cf7ff,#3db2c4); }

/* Text */
.ovm-step-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ff4d00;
}

.ovm-step-text {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  max-width: 320px;
  margin: auto;
}

/* ===== Tablet ===== */
@media (max-width: 992px) {
  .ovm-workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Mobile ===== */
@media (max-width: 576px) {
  #ovm-workflow-steps {
    padding: 70px 16px;
  }

  .ovm-workflow-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ovm-step-heading {
    font-size: 18px;
  }

  .ovm-step-text {
    font-size: 14px;
  }
}

/* ===== Optivaromedia Workflow  Ends Steps ===== */
/* ===== Optivaromedia Key Metrics ===== */

#ovm-key-metrics {
  background: linear-gradient(135deg, #ff6a00, #ff914d);
  padding: 80px 20px;
  color: #ffffff;
}

.ovm-metrics-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.ovm-metrics-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
}

/* Grid */
.ovm-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.ovm-metric-card {
  padding: 20px;
}

.ovm-metric-value {
  display: block;
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 8px;
}

.ovm-metric-label {
  font-size: 17px;
  opacity: 0.95;
}

/* ===== Tablet ===== */
@media (max-width: 992px) {
  .ovm-metrics-title {
    font-size: 30px;
  }

  .ovm-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Mobile ===== */
@media (max-width: 576px) {
  #ovm-key-metrics {
    padding: 60px 16px;
  }

  .ovm-metrics-title {
    font-size: 24px;
  }

  .ovm-metric-value {
    font-size: 42px;
  }

  .ovm-metrics-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
/* === Optivaro FAQ Styles === */
#opti-faq-wrap {
  padding: 70px 0;
  background-color: #ffffff;
}

.opti-faq-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.opti-faq-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 50px;
}

/* FAQ Grid */
.opti-faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* FAQ Item */
.opti-faq-box {
  text-align: left;
}

.opti-faq-box input {
  display: none;
}

.opti-faq-box label {
  display: block;
  padding: 16px 20px;
  background: #f9f9f9;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  color: #222;
  position: relative;
  transition: background 0.3s;
}

.opti-faq-box label::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  color: #ff4000;
}

.opti-faq-box input:checked + label::after {
  content: "−";
}

.opti-faq-box input:checked + label {
  background: #f1f1f1;
}

/* FAQ Content */
.opti-faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #ffffff;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555;
  line-height: 1.6;
}

.opti-faq-box input:checked ~ .optifaq-content,
.opti-faq-box input:checked ~ .opti-faq-content {
  max-height: 140px;
  padding: 15px 20px;
}

/* ===== Tablet ===== */
@media (min-width: 768px) {
  .opti-faq-layout {
    grid-template-columns: 1fr 1fr;
    gap: 25px 40px;
  }

  .opti-faq-heading {
    font-size: 36px;
  }
}

/* ===== Desktop ===== */
@media (min-width: 1024px) {
  .opti-faq-heading {
    font-size: 40px;
  }
}
/* ===== PPC Hero Section (Unique Styles) ===== */

#ppc-hero-wrapper {
  width: 100%;
  background: linear-gradient(135deg, #ff440b, #000000);
  padding: 30px 20px;
}

/* Main Layout */
.ppc-hero-layout {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Content */
.ppc-hero-content {
  max-width: 560px;
}

.ppc-hero-content p:first-child {
  letter-spacing: 1.2px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
}

.ppc-hero-heading {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin: 12px 0 18px;
  color: #111;
}

.ppc-hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 30px;
}

/* CTA Buttons */
.ppc-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ppc-btn-primary {
  padding: 14px 28px;
  background: #0c0703;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.ppc-btn-primary:hover {
  background: #e85c00;
}

/* Image */
.ppc-hero-visual img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ===== Laptop ===== */
@media (max-width: 1200px) {
  .ppc-hero-heading {
    font-size: 36px;
  }
}

/* ===== Tablet ===== */
@media (max-width: 992px) {
  .ppc-hero-layout {
    flex-direction: column;
    text-align: center;
  }

  .ppc-hero-content {
    max-width: 100%;
  }

  .ppc-hero-actions {
    justify-content: center;
  }
}

/* ===== Mobile ===== */
@media (max-width: 576px) {
  #ppc-hero-wrapper {
    padding: 60px 16px;
  }

  .ppc-hero-heading {
    font-size: 28px;
  }

  .ppc-hero-description {
    font-size: 16px;
  }

  .ppc-btn-primary {
    width: 100%;
    text-align: center;
  }
}
/* ===== Optivaromedia Industries Section ===== */

#ovm-industries-section {
  background: #f9fafc;
  padding: 30px 20px;
}

.ovm-industries-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.ovm-industries-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #111;
}

.ovm-industries-subtext {
  max-width: 760px;
  margin: 0 auto 50px;
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

/* Grid */
.ovm-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.ovm-industry-card {
  background: #ffffff;
  padding: 32px 26px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 12px 28px rgb(255, 103, 52);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ovm-industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.ovm-industry-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.ovm-industry-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.ovm-industry-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #555;
}

/* ===== Laptop ===== */
@media (max-width: 1200px) {
  .ovm-industries-grid {
    gap: 26px;
  }
}

/* ===== Tablet ===== */
@media (max-width: 992px) {
  .ovm-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ovm-industries-title {
    font-size: 32px;
  }
}

/* ===== Mobile ===== */
@media (max-width: 576px) {
  #ovm-industries-section {
    padding: 70px 16px;
  }

  .ovm-industries-grid {
    grid-template-columns: 1fr;
  }

  .ovm-industries-title {
    font-size: 26px;
  }

  .ovm-industry-card {
    padding: 26px 22px;
  }
}

/*--------ROI Efficiently Starts here----------*/
/* ===== Section Wrapper ===== */
  section#ppcSection {
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
  }

  /* ===== Left Content ===== */
  .section-left {
    flex: 1 1 650px;
    background: #000000;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

  .section-left h1 {
    font-size: 30px;
    margin-bottom: 22px;
    line-height: 1.4;
    color: #ff4800;
  }

  .section-left ul {
    list-style: none;
    margin-bottom: 22px;
  }

  .section-left ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 16px;
    color: white;
  }

  .section-left ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #ff2f00;
    font-weight: bold;
  }

  .section-left p {
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 15px;
    color: white;
  }

  /* ===== Right Form ===== */
  .section-right {
    flex: 1 1 380px;
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

  .section-right h2 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #ff4d00;
  }

  .section-right input,
  .section-right select,
  .section-right textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
  }

  .section-right button {
    width: 100%;
    padding: 13px;
    background-color: #ff5411;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }

  .section-right button:hover {
    background-color: #ff4400;
  }

  .section-right label {
    font-size: 13px;
    display: block;
    margin-bottom: 6px;
  }

  .checkboxWrap {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }

  .checkboxWrap input {
    width: auto;
    margin-right: 10px;
  }

  /* ===== Responsive ===== */
  @media (max-width: 1024px) {
    section#ppcSection {
      flex-direction: column;
    }

    .section-left, .section-right {
      flex: 1 1 100%;
    }
  }

  @media (max-width: 768px) {
    .section-left h1 {
      font-size: 26px;
    }

    .section-right h2 {
      font-size: 20px;
    }
  }

  @media (max-width: 480px) {
    .section-left {
      padding: 20px;
    }

    .section-right {
      padding: 20px;
    }

    .section-left h1 {
      font-size: 20px;
    }

    .section-right button {
      font-size: 14px;
    }
  }
  /*------ROI Ends Here------*/

  /*===========================================*/
  /*guest post1 starts here*/ 
/* --- Content Styling --- */
.guest-section {
    /* Set a background color for the entire section */
    background-color: #ff6127;
    /* Use Flexbox to align content and form horizontally */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align items to the top */
    padding: 20px 20px;
    gap: 40px; /* Space between content and form */
    color: white;
}

.guest-content {
    /* Content takes up a little more space than the form */
    flex: 3;
    max-width: 600px;
}

.guest-form-container {
    /* Form container */
    flex: 2;
    max-width: 400px;
}
.guest-content h1 {
    font-size: 2.5em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.guest-content h1 strong {
    color: #833420; /* The orange/red color for emphasis */
}

.key-features ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.key-features li {
    padding: 8px 0;
    /* You could add a custom checkmark icon here */
    position: relative;
    padding-left: 25px;
}

.key-features li::before {
    content: '✔️'; /* Simple checkmark for the list */
    position: absolute;
    left: 0;
}

/* --- Form Styling --- */
.guest-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.guest-form h2 {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 25px;
}

.guest-form h2 strong {
    color: #e6522c; 
}

.guest-form form input[type="text"],
.guest-form form input[type="email"],
.guest-form form input[type="url"],
.guest-form form input[type="tel"],
.guest-form form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding and border are inside the element's total width */
}

.guest-form form textarea {
    resize: vertical;
    min-height: 80px;
}

.ctas-button {
    background-color: #e6522c;
    color: white;
    border: none;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: block; /* Make the button full width */
    width: 100%;
    font-size: 1em;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ctas-button:hover {
    background-color: #cc4925;
}

/* Basic responsiveness for smaller screens */
@media (max-width: 900px) {
    .guest-section {
        flex-direction: column; /* Stack content and form vertically */
        align-items: center;
        padding: 40px 15px;
    }

    .guest-content, .guest-form-container {
        max-width: 100%;
        width: 100%;
    }
}

/*guest post2 ends here*/  
 /* --- Pricing Section --- */
.pricing-section {
    padding: 20px ;
    text-align: center;
    background-color: var(--background-color); /* Dark blue background */
    color: rgb(0, 0, 0);
}

.pricing-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Black Friday Banner Style */
.black-friday-banner {
    color: white;
    background-image: linear-gradient(rgba(140, 56, 14, 0.8), rgba(2, 2, 2, 0.8)), url('https://via.placeholder.com/1600x600?text=Dubai+City+Background');
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 50px;
    font-size: 1.5em;
    font-weight: 600;
    display: inline-block;
}

.black-friday-banner .offer-tag {
    background-color: black;
    color:  white;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 0.7em;
    margin-right: 10px;
    vertical-align: middle;
}

.pricing-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: flex-start; /* Align the benefits list to the top */
}

/* Key Benefits List Style */
.key-benefits {
    list-style: none;
    text-align: left;
    margin-top: 20px;
    flex: 0 0 300px; /* Fixed width for the benefits list */
}

.key-benefits li {
    padding: 8px 0;
    font-size: 1em;
    position: relative;
    padding-left: 25px;
    opacity: 0.9;
}

.key-benefits li::before {
    content: '•'; /* Simple bullet point */
    color: #9a4b1e; 
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


/* Pricing Cards Grid */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex-grow: 1;
    max-width: 700px;
}

.card {
    background-color: #ffffff; /* A dark color for the cards */
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.card:hover {
    border-color: var(--primary-color);
}

.card-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-traffic {
    font-size: 0.9em;
    opacity: 0.7;
    margin-bottom: 15px;
    min-height: 1.2em; /* Ensure consistent height */
}

.card-price {
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 10px;
}

.card-price span {
    display: block;
    font-size: 2em;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
}

/* Premium Card (DA/DR 50+) */
.card.premium {
    background-color: #ffffff;
}

.card.premium .card-price.sale span {
    color: #4CAF50; /* A different color for sale price */
}

.old-price {
    font-size: 0.9em;
    opacity: 0.6;
    height: 1em; /* Space for the deleted price */
}

/* Custom Package Card */
.card.custom {
    grid-column: span 1; 
    background-color: #ffffff;
}

.card.custom .card-price.starting span {
    color: var(--secondary-color);
}

.card-cta {
    background-color: #d94b1a;
    color: var(--secondary-color);
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.card-cta.get-started {
    background-color: #d94b1a; /* A different color for the Get Started button */
}

.card-cta:hover {
    background-color: #d94b1a;
}

/* Responsiveness for Pricing Section */
@media (max-width: 1200px) {
    .pricing-details {
        flex-direction: column;
        align-items: center;
    }
    .key-benefits {
        margin-bottom: 40px;
        flex: 1 1 auto;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
    }
}

@media (max-width: 500px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    .pricing-section h2 {
        font-size: 1.5em;
    }
}

/* --- Smart Reasons Section --- */
.reasons-section {
    padding: 20px 5%;
    background-color: black; /* White background */
    color: white; /* Dark text for contrast */
    text-align: center;
}

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

.reasons-title {
    font-size: 2.2em;
    font-weight: 700;
    color: rgb(139, 45, 10); /* Orange for the main title */
    margin-bottom: 20px;
}

.reasons-intro-text {
    font-size: 1em;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    margin-bottom: 50px;
}

.reason-card {
    text-align: center;
}

.reason-icon {
    margin-bottom: 15px;
    /* Styles for the circular icon background */
}

.icon-placeholder {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white; /* Light gray circle background */
    font-size: 1.8em;
}

.reason-card h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.reason-card p {
    font-size: 0.95em;
    line-height: 1.5;
    color: #ffffff;
}

.cta-bottom {
    background-color: rgb(255, 255, 255);
    color: black;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-bottom:hover {
    background-color: #d94b1a; 
}
/* Responsiveness */
@media (max-width: 992px) {
    .reason-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reason-grid {
        grid-template-columns: 1fr;
    }
    .reasons-title {
        font-size: 1.8em;
    }
}
