*{
    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;
}

.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:#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 #ff6b5a;
  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 ======================= */
.rcs-usecases-section {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.rcs-usecases-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0b1f33;
}

.rcs-usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.usecase-card {
  background: #FEEBE7;
  padding: 30px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.usecase-card:hover {
  transform: translateY(-6px);
}

.usecase-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0b1f33;
}

.usecase-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.usecase-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
}

.usecase-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text-color);
  font-weight: bold;
}

/* Center Education Card */
.center-card {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .rcs-usecases-grid {
    grid-template-columns: 1fr;
  }

  .center-card {
    max-width: 100%;
  }

  .rcs-usecases-title {
    font-size: 28px;
  }
}

/* ==========================se-3 ==================== */
.rcs-pricing-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #F87C63, #F87C63);
  font-family: "Segoe UI", sans-serif;
  color: #fff;
}

.rcs-pricing-wrapper {
  max-width: 1200px;
  margin: auto;
}

.rcs-pricing-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 700;
}

.rcs-table-container {
  overflow-x: auto;
}

.rcs-pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(180deg, #F54927, #F4320B);
  border-radius: 12px;
  overflow: hidden;
}

.rcs-pricing-table thead {
  background: #FAA18F;
  color: #000;
}

.rcs-pricing-table th,
.rcs-pricing-table td {
  padding: 16px;
  text-align: center;
  font-size: 15px;
}

.rcs-pricing-table th {
  font-weight: 700;
}

.rcs-pricing-table tbody tr {
  border-top: 1px solid rgba(255,255,255,0.15);
}

.rcs-pricing-table tbody tr:hover {
  background: rgba(255,255,255,0.08);
}

.contact-cell {
  font-weight: 700;
  color: #fff;
}

.rcs-pricing-footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.rcs-pricing-footer p {
  font-size: 16px;
}

.rcs-call-btn {
  background: #ffffff;
  color: var(--text-color);
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.rcs-call-btn:hover {
  background: #FEEBE7;
}

/* Responsive */
@media (max-width: 768px) {
  .rcs-pricing-title {
    font-size: 28px;
  }

  .rcs-pricing-footer {
    flex-direction: column;
    text-align: center;
  }
}
/* ======================sec-4 ======================= */
.rcs-benefits-section {
  padding: 70px 20px;
  background: #ffffff;
  text-align: center;
}

.rcs-benefits-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b2b46;
  margin-bottom: 40px;
}

.rcs-table-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
}

.rcs-compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
}

.rcs-compare-table thead th {
  background: #FEEBE7;
  color: #0b2b46;
  font-size: 18px;
  padding: 18px;
  border: 1px solid #F54927;
}

.rcs-compare-table tbody td {
  padding: 16px;
  font-size: 16px;
  border: 1px solid #F54927;
}

.rcs-compare-table tbody tr:nth-child(odd) td {
  background: #FCC6BB;
}

.rcs-compare-table tbody tr:nth-child(even) td {
  background: #ffffff;
}

.rcs-compare-table tbody td:first-child {
  font-weight: 600;
  color: #0b2b46;
}

.rcs-compare-table tbody td:nth-child(2),
.rcs-compare-table tbody td:nth-child(3) {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .rcs-benefits-title {
    font-size: 28px;
  }

  .rcs-compare-table thead th,
  .rcs-compare-table tbody td {
    font-size: 14px;
    padding: 12px;
  }
}
/* ============================sec-5 ================== */


.how-title{
  text-align: center;
}
.howitworks {
  padding: 60px 20px;
  background: var(--bg-main);
}

.how-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.steps-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FEEBE7;
  border: 1px solid #ddd;
  margin: 20px 150px;
}

.step-card {
  flex: 1;
  padding: 40px 25px;
  text-align: center;
  border-right: 1px solid #F54927;
}

.step-card:last-child {
  border-right: none;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #F54927;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.arrow {
  width: 45px;
  height: 45px;
  background: #F87C63;
  border-radius: 50%;
  color: #000;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -22px;
  z-index: 1;
}
/* =========================sec-6 ======================= */
.benefit-section {
  padding: 70px 20px;
  background: #ffffff;
}

.benefit-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 60px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  max-width: 1200px;
  margin: auto;
}

.benefit-card {
  text-align: center;
  padding: 10px;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: #F54927;
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.benefit-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-text {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  max-width: 280px;
  margin: auto;
}
/* ========================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;
  }
}
