*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#f7fbff;
}
/* =======================sec-1====================== */
/* HERO BASE */
.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
}

/* BACKGROUND VIDEO (BLOB ANIMATION) */
.hero video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  /* background-size: contain; */
  z-index:-2;
  opacity:1;              /* blob soft look */
  filter: blur(20px) saturate(120%);
}

/* OPTIONAL DARK OVERLAY FOR READABILITY */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  /* background:linear-gradient(
    120deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.25)
  ); */
  z-index:-1;
}

/* CONTENT ABOVE VIDEO */
.hero-container{
  position:relative;
  z-index:2;
  color:#fff;
}
/* ===== HERO ====== */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:20px 50px 50px 20px;
  background:
    linear-gradient(transparent 17%, rgba(0,0,0,0.0) 16%),
    linear-gradient(40deg, transparent 15%, rgba(0,0,0,0.03) 16%); 
  background-size:40px 40px;
    background:
    linear-gradient(135deg, #FEEBE7 0%, #ffffff 60%);

  /* border: 1px solid; */
}

.hero-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:80px;
  align-items:center;
  /* border: 1px solid; */
}

/* ====== LEFT ======== */
.hero h1{
  font-size:48px;
  line-height:1.25;
  margin-bottom:20px;
  background: linear-gradient(to right,#ff6b5a,#ff8b5c);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p{
  font-size:16px;
  line-height:1.7;
  color:#4b677a;
  max-width:560px;
  margin-bottom:14px;
}

.hero strong{
  color:#0b2b40;
}
/* button */
.hero-buttons{
  margin-top:30px;
  display:flex;
  gap:20px;
  align-items:center;
}
.btn-link{
  font-weight:600;
  color:#0b2b40;
  text-decoration:underline;
}

/* ======= RIGHT ======= */
.hero-visual{
  position:relative;
  display:flex;
  justify-content:center;
}

.hero-visual img{
  max-width:100%;
  filter:drop-shadow(0 25px 40px rgba(0,0,0,.15));
}
ul li{
    color: #0b2b40;

}

/* OTP bubble */
.otp-box{
  position:absolute;
  top:40px;
  left:-40px;
  background:#fff;
  padding:14px 16px;
  border-radius:12px;
  box-shadow:0 12px 25px rgba(0,0,0,.15);
  font-size:14px;
  width:260px;
}

/* ====== RESPONSIVE ======= */
@media(max-width:992px){
  .hero{
    padding:60px 30px;
  }
  .hero-container{
    grid-template-columns:1fr;
    text-align:center;
  }
  .hero-buttons{
    justify-content:center;
  }
  .otp-box{
    display:none;
  }
}

/* ===== BUTTON ====== */
.btn-primary{
  padding:14px 30px;
  border-radius:30px;
  border:2px solid #ff6b5a;
  background:#fff;
  color:#ff6b5a;
  font-weight:600;
  cursor:pointer;
}

/* ====== pop frombutton ======*/
.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
}

/* ====== MODAL BOX ====== */
.modal-box{
  background:#fff;
  width:750px;
  border-radius:8px;
  overflow:hidden;
}

/* Header */
.modal-header{
  padding:16px 20px;
  border-bottom:1px solid #e5e7eb;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight:600;
}

.modal-header span{
  cursor:pointer;
  font-size:22px;
}

/* Body */
.modal-body{
  background:#FEEBE7;
  padding:20px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

label{
  font-size:14px;
  margin-bottom:4px;
  display:block;
}

input, textarea{
  width:100%;
  padding:10px;
  border:1px solid #d1d5db;
  border-radius:3px;
}

textarea{
  grid-column:1 / -1;
  height:90px;
  resize:none;
}

/* Footer */
.modal-footer{
  padding:15px;
}

.send-btn{
  width:100%;
  padding:14px;
  background:#ff6b5a;
  color:#fff;
  border:none;
  font-size:16px;
  border-radius:4px;
  cursor:pointer;
}

/*========== RESPONSIVE ======== */
@media(max-width:800px){
  .modal-box{
    width:95%;
  }
  .form-grid{
    grid-template-columns:1fr;
  }
}
/* end from */
/* ================== sec-2 ========================= */

.paidads-section {
  background:#FEEBE7;
  padding: 80px 20px;
}

.paidads-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.paidads-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.paidads-desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.paidads-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.paidads-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: var(--primary-blue);
  color: #F4320B;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.paidads-list h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.paidads-list p {
  margin: 5px 0 0;
  font-size: 14px;
  color: var(--text-muted);
}

.paidads-image img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin: auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .paidads-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .paidads-desc {
    margin: auto auto 30px;
  }

  .paidads-list li {
    justify-content: center;
    text-align: left;
  }
}
/* ===================sec-3 ======================== */
.roi-strategy-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #FAA18F, #FEEBE7);
  color: #fff;
}

.roi-strategy-wrap {
  max-width: 1200px;
  margin: auto;
}

.roi-strategy-head {
  max-width: 700px;
  margin-bottom: 60px;
}

.roi-strategy-head h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.roi-strategy-head h2 span {
  color: #F54927;
}

.roi-strategy-head p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}

/* GRID */
.roi-strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.roi-strategy-card {
  border: 1px solid rgba(255,255,255,0.4);
  padding: 30px;
  position: relative;
  transition: 0.3s ease;
}

.roi-strategy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.3);
    border: 1px solid #F54927 ;


}

.roi-step {
  position: absolute;
  top: -18px;
  right: 20px;
  background: #F54927;
  color: #000;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
}

.roi-strategy-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.roi-strategy-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .roi-strategy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .roi-strategy-head h2 {
    font-size: 28px;
  }

  .roi-strategy-grid {
    grid-template-columns: 1fr;
  }
}
/* ====================== sec-4 =================== */
.benefit-section {
  background: #fffd;
  padding: 90px 20px;
}

.benefit-container {
  max-width: 1200px;
  margin: auto;
}

.benefit-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefit-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.benefit-header p {
  font-size: 16px;
  color: #555;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  text-align: center;
}

.benefit-card {
  padding: 10px 20px;
}

.benefit-icon {
  width: 90px;
  height: 90px;
  background: #ff6b5a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.benefit-icon img {
  width: 40px;
  filter: brightness(0) invert(1);
}

.benefit-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.benefit-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefit-header h2 {
    font-size: 26px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }
}
/* ======================= sec-5 ================= */
.ppc-services-section {
  background: #fff;
  padding: 90px 20px;
}

.ppc-services-container {
  max-width: 1200px;
  margin: auto;
}

.ppc-services-header {
  text-align: center;
  margin-bottom: 60px;
}

.ppc-services-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #111;
}

.ppc-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.ppc-service-card {
  background: #FEEBE7;
  padding: 30px;
  border-radius: 10px;
}

.ppc-service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
}

.ppc-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ppc-service-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.ppc-service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F4320B;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ppc-services-grid {
    grid-template-columns: 1fr;
  }

  .ppc-services-header h2 {
    font-size: 28px;
  }
}
/* ======================= sec-6 ==================== */
.unique-diff-section {
  background: #fff;
  padding: 90px 20px;
}

.unique-diff-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.unique-diff-left h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.unique-diff-sub {
  font-size: 16px;
  margin-bottom: 40px;
  color: #333;
}

.unique-diff-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.unique-diff-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.unique-diff-icon {
  width: 48px;
  height: 48px;
  background: #F4320B;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.unique-diff-item h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.unique-diff-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

/* RIGHT */
.unique-diff-right img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .unique-diff-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .unique-diff-item {
    align-items: center;
    text-align: left;
  }

  .unique-diff-right {
    order: -1;
  }
}

@media (max-width: 600px) {
  .unique-diff-left h2 {
    font-size: 28px;
  }
}
/* ===================== sec-7 ======================= */
.ads-platform-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #F87C63, #FAA18F);
}

.ads-platform-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ads-platform-card {
  border: 1px solid rgba(255,255,255,0.5);
  padding: 40px 25px;
  text-align: center;
  color: #fff;
  transition: 0.3s ease;
}

.ads-platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    border: 1px solid #F4320B;

}

.ads-platform-logo {
  background: #fff;
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.ads-platform-logo img {
  max-width: 60px;
}

.ads-platform-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.ads-platform-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 25px;
}

.ads-platform-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-light {
  background: #F87C63;
  color: #000;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
}
.btn-light:hover{
    border: 1px solid #fff;

}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-outline:hover {
  background: #fff;
  border: 1px solid #F4320B;

  color: #000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ads-platform-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ===================sec-8 ================== */
.ppc-faq-section {
  padding: 90px 20px;
  background: #ffffff;
}

.ppc-faq-container {
  max-width: 1100px;
  margin: auto;
}

.ppc-faq-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}

.ppc-faq-title span {
  color: #0a5fa5;
}

.ppc-faq-box {
  background: linear-gradient(135deg, #f4f8ff, #F87C63);
  padding: 30px;
  border-radius: 20px;
}

.ppc-faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.ppc-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}

.ppc-faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F4320B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.ppc-faq-answer {
  display: none;
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.ppc-faq-item.active .ppc-faq-answer {
  display: block;
}

.ppc-faq-item.active .ppc-faq-icon {
  background: #F4320B;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ppc-faq-title {
    font-size: 28px;
  }

  .ppc-faq-question {
    font-size: 16px;
  }
}
/* ========================sec-9last ====================== */
 /* ================ cts-sms=========== */
 .cta-sms{
  /* background:linear-gradient(135deg,#f4fcff,#e8f7ff); */
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding:80px 20px;
}

.cta-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  align-items:center;
  gap:50px;
}

/* LEFT TEXT */
.cta-content h2{
  font-size:40px;
  font-weight:700;
  color:#000;
  margin-bottom:20px;
}

.cta-content p{
  font-size:16px;
  line-height:1.7;
  color:#444;
  max-width:550px;
}

/* RIGHT CALL BOX */
.cta-call{
  display:flex;
  justify-content:center;
}

.call-bubble{
  background:#0b4ea2;
  color:#fff;
  border-radius:22px;
  padding:25px 30px 25px 70px;
  position:relative;
  box-shadow:0 20px 40px rgba(0,0,0,.2);
}

.call-bubble::after{
  content:"";
  position:absolute;
  bottom:-20px;
  left:50px;
  border-width:20px 18px 0;
  border-style:solid;
  border-color:#0b4ea2 transparent transparent;
}

/* ICON */
.calling-icon{
  position:absolute;
  left:-30px;
  top:50%;
  transform:translateY(-50%);
  width:65px;
  height:65px;
  background:#ff8b5c;
  color:#000;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* TEXT */
.call-text span{
  display:block;
  font-size:22px;
  font-weight:600;
}

.call-text strong{
  display:block;
  margin-top:6px;
  background:#ff6b5a;
  color:#000;
  padding:8px 14px;
  border-radius:10px;
  font-size:18px;
  width:max-content;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .cta-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .cta-content p{
    margin:auto;
  }

  .call-bubble{
    padding:30px 25px 30px 25px;
  }

  .call-icon{
    position:static;
    transform:none;
    margin:0 auto 15px;
  }

  .call-bubble::after{
    display:none;
  }

  .call-text strong{
    margin:auto;
  }
}

@media(max-width:480px){
  .cta-content h2{
    font-size:28px;
  }

  .call-text span{
    font-size:18px;
  }

  .call-text strong{
    font-size:16px;
  }
}
