
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
  font-family:'Inter',sans-serif;
  background:#f7fbff;
}
:root{
/* ===== BRAND COLORS ===== */
--dark-color:#4b677a ; 
--text-color: #ff6b5a; 
--light-text: #e5e7eb;


/* ===== BACKGROUND COLORS ===== */
--bg-main: #ff8b5c;
--bg-gradient-start: #eef5ff;
--bg-gradient-end: #ffffff;
--transition:0.8s ease;
}

.bw-hero{
  padding:80px 6%;
  background:
    linear-gradient(0deg, rgba(255,255,255,.95), rgba(255,255,255,.95)),
    url("images/grid-bg.svg");
  background-size:cover;
    background:
    linear-gradient(135deg, #FEEBE7 0%, #ffffff 60%);
}

.bw-wrap{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}

.bw-text h1{
  font-size:44px;
  line-height:1.25;
  color:#0b2540;
  margin-bottom:20px;
}

.bw-text h1 span{
  color:var(--text-color);
}

.bw-sub{
  font-size:18px;
  margin-bottom:12px;
  color:#111;
}

.bw-text p{
  font-size:16px;
  line-height:1.7;
  color:#444;
  margin-bottom:12px;
}

.bw-points{
  margin:20px 0 30px;
  padding:0;
  list-style:none;
}

.bw-points li{
  padding-left:28px;
  margin-bottom:10px;
  position:relative;
  font-size:15px;
}

.bw-points li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:var(--text-color);
  font-weight:600;
}

.bw-actions{
  display:flex;
  gap:20px;
  align-items:center;
}

/* .bw-btn-primary{
  background:#1e66ff;
  color:#fff;
  border:none;
  padding:14px 28px;
  font-size:15px;
  border-radius:30px;
  cursor:pointer;
  transition:.3s;
}

.bw-btn-primary:hover{
  background:#124ecc;
}

.bw-btn-link{
  color:#000;
  text-decoration:none;
  font-weight:500;
} */

.bw-visual img{
  width:100%;
  max-width:420px;
  display:block;
  margin-left:auto;
}

/* BUTTONS */
.hero-buttons{
  margin-top:30px;
  display:flex;
  gap:20px;
  align-items:center;
}
.btn-link{
  font-weight:600;
  color:#0b2b40;
  text-decoration:underline;
}
/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .bw-wrap{
    grid-template-columns:1fr;
    text-align:center;
  }

  .bw-visual img{
    margin:40px auto 0;
  }

  .bw-actions{
    justify-content:center;
    flex-wrap:wrap;
  }
}

/* ===== 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:#eef4ff;
  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;
  }
}
/* ======================SEC-2 ======================== */
.a2p-info{
  padding:80px 20px;
  background:#ffffff;
  font-family:'Inter',sans-serif;
}

.a2p-wrapper{
  max-width:1200px;
  margin:auto;
}

.a2p-head{
  text-align:center;
  max-width:800px;
  margin:0 auto 50px;
}

.a2p-head h2{
  font-size:36px;
  font-weight:700;
  margin-bottom:12px;
  color:#111;
}

.a2p-head p{
  font-size:16px;
  color:#555;
  line-height:1.6;
}

.a2p-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
}

.a2p-box{
  background:#fff;
  border:1.5px solid #FAA18F;
  border-radius:14px;
  padding:32px 20px;
  text-align:center;
  transition:.3s ease;
}

.a2p-box:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.a2p-icon{
  width:60px;
  height:60px;
  margin:0 auto 18px;
  border-radius:50%;
  background:#FCC6BB;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
}

.a2p-box h4{
  font-size:17px;
  font-weight:600;
  color:#111;
  line-height:1.4;
}
/* =================sec-2============================= */
.why{
  padding:90px 150px;
}

.why h1{
  text-align:center;
  font-size:40px;
  margin-bottom:14px;
}

.subtitle{
  text-align:center;
  max-width:900px;
  margin:0 auto 60px;
  color:#4b677a;
}

/*========= GRID ======== */
.why-grid{
  display:grid;
  grid-template-columns:repeat(2,0.5fr);
  gap:26px;

}

/* ======== CARD ========= */
.card{
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding:28px;
  border-radius:14px;
  opacity:5;
  transform:translateY(50px);
  transition:all .7s ease;
}

/* ACTIVE STATE */
.card.show{
  opacity:1;
  transform:translateY(0);
}

.card:hover{
  /* transform:translateY(-6px); */
}

.card h3{
  font-size:20px;
  margin-bottom:14px;
}

.card ul{
  list-style:none;
}

.card li{
  display:flex;
  gap:10px;
  margin-bottom:10px;
  color:#ff8b5c;
}

.check{
  width:18px;
  height:18px;
  border-radius:50%;
  border:2px solid #ff6b5a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  color:#ff6b5a;
}


/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .why{
    padding:60px 25px;
  }
  .why-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:768px){
  .why{
    padding:40px 20px;
  }
  .why-grid{
    grid-template-columns:1fr;
  }

  /* .why-grid{
  display:grid;
  grid-template-columns:repeat(2,0.4fr);
  gap:26px;
  margin-left:50px;

} */

}
/* ======================== sec-3 =========================*/
/* SECTION */
.es-services{
  padding:0 0 40px;
  text-align:center;
}

.es-heading{
  font-size:36px;
  margin-bottom:40px;
  color:#111;
}

/* SLIDER STRUCTURE */
.es-slider-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
}

.es-nav-btn{
  background:#FEEBE7;
  border:none;
  font-size:26px;
  width:45px;
  height:45px;
  border-radius:8px;
  cursor:pointer;
}

/* VIEWPORT */
.es-viewport{
  overflow:hidden;
  max-width:1100px;
  width:100%;
}

/* TRACK */
.es-track{
  display:flex;
  gap:30px;
  transition:transform 0.5s ease;
}

/* CARD */
.es-card{
  min-width:330px;
  background:#dff4ff;
  padding:40px 10px;
  border-radius:16px;
}

/* PHONE */
.es-phone{
  width:220px;
  height:380px;
  background:#111;
  border-radius:30px;
  margin:0 auto 20px;
  padding:10px;
}

.es-notch{
  width:90px;
  height:12px;
  background:#000;
  border-radius:20px;
  margin:5px auto;
}

.es-screen{
  background:linear-gradient(180deg,#ff6b5a,#ff9472);
  height:100%;
  border-radius:20px;
  padding:20px 10px;
  color:#fff;
}

.es-screen h3{
  font-size:32px;
}

.es-screen span{
  font-size:14px;
  opacity:.9;
}

/* SMS */
.es-sms{
  background:#fff;
  margin-top:25px;
  padding:10px;
  border-radius:10px;
  font-size:13px;
  text-align:left;
  color:#333;
}

/* TEXT */
.es-title{
  font-size:22px;
  margin:15px 0;
}

.es-card p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:15px;
}

/* BUTTON */
.es-btn{
  padding:10px 20px;
  border-radius:25px;
  border:1px solid #ff6b5a;
  background:transparent;
  color:#ff6b5a;
  cursor:pointer;
  transition: 0.8S ease;
}

.es-btn:hover{
  background:#ff6b5a;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:768px){
  .es-viewport{
    max-width:330px;
  }
  .es-track{
    gap:10px;
  }
}
/* =====================sec-4 ========================= */
.pricing-wrapper{
  max-width:1200px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:30px;
}

.pricing-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  /* border-radius:8px; */
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.pricing-table thead{
  background:var(--bg-main);
}

.pricing-table th{
  padding:15px;
  font-size:14px;
  color:#000;
  text-align:center;
  border:1px solid #F87C63;
}

.pricing-table td{
  padding:14px;
  font-size:14px;
  text-align:center;
  border:1px solid #F87C63;
}

.pricing-table tbody tr:hover{
  background:#FEEBE7;
  transition:0.3s;
}

/* Responsive */
@media(max-width:768px){
  .pricing-table{
    display:block;
    overflow-x:auto;
    white-space:nowrap;
  }
}
/* =====================sec-5 =================== */
.usecase-section{
  padding:80px 20px;
  background:#fff;
}

.usecase-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.usecase-title{
  font-size:36px;
  font-weight:700;
  margin-bottom:60px;
}

.usecase-title span{
  font-weight:500;
}

.usecase-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:50px 30px;
}

.usecase-card{
  padding:10px;
}

.usecase-icon{
  width:90px;
  height:90px;
  border-radius:50%;
  background:var(--bg-main);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}

.usecase-icon img{
  width:40px;
  filter:invert(1);
}

.usecase-card h3{
  font-size:18px;
  margin-bottom:8px;
}

.usecase-card p{
  font-size:14px;
  color:#555;
}

/* Responsive */
@media(max-width:768px){
  .usecase-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .usecase-title{
    font-size:28px;
  }
}

/* =======================sec-6 ================== */
.howitworks-section{
  background:linear-gradient(180deg,#F54927,#F87C63);
  padding:80px 20px;
  color:#fff;
}

.howitworks-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.howitworks-title{
  font-size:42px;
  font-weight:700;
  margin-bottom:10px;
}

.howitworks-subtitle{
  font-size:18px;
  opacity:0.9;
  margin-bottom:60px;
}

.steps-wrapper{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.step-card{
  padding:20px;
}

.step-icon{
  width:90px;
  height:90px;
  border-radius:50%;
  border:3px solid #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}

.step-icon img{
  width:40px;
  filter:invert(1);
}

.step-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.step-card p{
  font-size:15px;
  line-height:1.6;
  opacity:0.9;
}

/* Responsive */
@media(max-width:768px){
  .steps-wrapper{
    grid-template-columns:1fr;
    gap:30px;
  }

  .howitworks-title{
    font-size:32px;
  }
}
/* ========================sec-7 ====================== */
 /* ================ 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;
  }
}
