*{
    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;
}
/* ===================sec-1========================== */

/* HERO SECTION */
.hero-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:20px 20px;
  position:relative;
  overflow:hidden;
  /* Light gradient */
  background:
    linear-gradient(135deg, #FEEBE7 0%, #ffffff 60%);
}

/* GRID PATTERN */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size:40px 40px;
  opacity:0.3;
  z-index:0;
}

/* CONTENT ABOVE GRID */
.hero-container{
  position:relative;
  z-index:1;
}
/* LEFT CONTENT */
.hero-tag{
  color:var(--text-color);
  font-size:14px;
  font-weight:600;
}

.hero-content h1{
  font-size:42px;
  line-height:1.2;
  margin:15px 0;
  color:#000;
}

.hero-content h1 span{
  color:var(--bg-main);
}

.hero-content p{
  color:#555;
  font-size:16px;
  margin-bottom:20px;
  max-width:520px;
}

.feature-list{
  list-style:none;
  margin-bottom:25px;
}

.feature-list li{
  margin-bottom:10px;
  padding-left:28px;
  position:relative;
  color:#333;
}

.feature-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:var(--text-color);
}

/* BUTTONS */
.hero-buttons{
  margin-top:30px;
  display:flex;
  gap:20px;
  align-items:center;
}
.btn-link{
  font-weight:600;
  color:#0b2b40;
  text-decoration:underline;
}

/* RIGHT IMAGE MODEL */
.hero-visual{
  position:relative;
  height:520px;
}

.phone-img{
  width:260px;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
}

.promo-img{
  width:220px;
  position:absolute;
  right:0;
  top:60px;
  z-index:1;
}

.people-img{
  width:300px;
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
}

/* RESPONSIVE */
@media (max-width:992px){
  .hero-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-visual{
    height:420px;
  }
}

@media (max-width:576px){
  .hero-content h1{
    font-size:30px;
  }

  .phone-img{
    width:200px;
  }

  .promo-img{
    width:170px;
  }

  .people-img{
    width:240px;
  }
}

/* ===== 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============================= */
.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,1fr);
  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;
  }
}
/* ======================== 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:0px;
}

.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 SECTION ===== */
.tx-pricing-section{
  padding:80px 20px;
  background:linear-gradient(180deg,#ff9472,#ff9472);
  color:#fff;
  text-align:center;
}

/* TITLE */
.tx-pricing-title{
  font-size:42px;
  margin-bottom:40px;
}

/* TABLE WRAPPER */
.tx-table-wrap{
  overflow-x:auto;
}

/* MAIN TABLE */
.tx-pricing-table{
  width:100%;
  max-width:1100px;
  margin:0 auto 30px;
  border-collapse:collapse;
}

.tx-pricing-table th{
  background:#ff6b5a;
  color:var(--light-text);
  padding:15px;
  font-weight:700;
}

.tx-pricing-table td{
  padding:18px;
  border:1px solid rgba(255,255,255,0.25);
}

.tx-pricing-table tbody tr{
  background:linear-gradient(180deg,#ff6b5a,#ff6b5a);
}

.tx-pricing-table tbody tr:hover{
  background:#ff9472;
}

/* EXTRA COST BOX */
.tx-extra-cost{
  max-width:1100px;
  margin:0 auto 50px;
  border:1px solid rgba(255,255,255,0.3);
}

.tx-cost-row{
  display:flex;
  justify-content:space-between;
  padding:18px 25px;
  border-bottom:1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.tx-cost-row:hover{
  background: var(--text-color);
}

.tx-cost-row:last-child{
  border-bottom:none;
  font-weight:700;
}

/* WHY SECTION */
.tx-why h3{
  font-size:32px;
  margin-bottom:15px;
}

.tx-why p{
  max-width:900px;
  margin:0 auto;
  font-size:16px;
  line-height:1.6;
  opacity:0.95;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .tx-pricing-title{
    font-size:30px;
  }

  .tx-why h3{
    font-size:24px;
  }

  .tx-cost-row{
    flex-direction:column;
    gap:8px;
    text-align:center;
  }
}

/* 2 */
.tx-accordion-section{
  /* background:linear-gradient(180deg,#004a9f,#006bbf); */
  padding:80px 20px;
}

.tx-accordion{
  max-width:1000px;
  margin:auto;
  background:#f9f9f9;
  border-radius:18px;
  overflow:hidden;
}

/* ITEM */
.tx-acc-item{
  border-bottom:1px solid #e5e5e5;
}

/* HEADER */
.tx-acc-header{
  width:100%;
  background:#f9f9f9;
  border:none;
  padding:22px 26px;
  font-size:18px;
  font-weight:600;
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

/* ICON */
.tx-acc-icon{
  width:32px;
  height:32px;
  border-radius:50%;
  background:var(--text-color);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

/* CONTENT */
.tx-acc-content{
  max-height:0;
  overflow:hidden;
  padding:0 26px;
  transition:all 0.4s ease;
}

.tx-acc-content p,
.tx-acc-content li{
  color:#333;
  margin:12px 0;
  font-size:15px;
}

/* ACTIVE STATE */
.tx-acc-item.active .tx-acc-content{
  max-height:300px;
  padding-bottom:20px;
}

.tx-acc-item.active .tx-acc-icon{
  background:var(--bg-main);
}
/* =========================== sec-5===================== */
.ts-integrations{
  padding:90px 20px;
  background:#ffffff;
}

.ts-intro{
  text-align:center;
  max-width:900px;
  margin:0 auto 60px;
}

.ts-intro h2{
  font-size:40px;
  margin-bottom:10px;
}

.ts-intro h4{
  color:var(--text-color);
  font-weight:600;
  margin-bottom:15px;
}

.ts-intro p{
  color:#555;
  line-height:1.7;
}

/* GRID */
.ts-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* CARD */
.ts-card{
  background:#FEEBE7;
  border-radius:18px;
  padding:30px;
  transition:0.35s ease;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.ts-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);

}

.ts-icon{
  font-size:42px;
  margin-bottom:15px;
  transition: var(--transition);
}
.ts-card:hover .ts-icon{
  transform:scale(1.1);

}
.ts-card h3{
  font-size:20px;
  margin-bottom:15px;
  color:#0b2545;
}

.ts-card ul{
  list-style:none;
}

.ts-card li{
  font-size:15px;
  color:#333;
  margin-bottom:10px;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:768px){
  .ts-intro h2{
    font-size:30px;
  }
}
/* =================== sec-6======================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.stats {
    display: flex;
    justify-content: space-between;
    background-color: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(7, 94, 84, 0.08);
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid #e0f2f1;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 180px;
    padding: 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FCC6BB 0%, #FEEBE7 100%);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(7, 94, 84, 0.12);
}

.stat-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--bg-main);
    margin-bottom: 8px;
    font-family: 'Roboto', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-label {
    font-size: 15px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
    padding: 20px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.category-btn {
    padding: 12px 28px;
    background-color: #FCC6BB;
    border: 2px solid #F87C63;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn:hover {
    background-color: var(--text-color);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.15);
}

.category-btn.active {
    background: linear-gradient(135deg, #ff6b5a 0%, #F54927 100%);
    color: white;
    border-color: #ff8b5c;
    box-shadow: 0 6px 12px rgba(18, 140, 126,rgb(245 73 39 0.25));
}

.category-btn::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: currentColor;
    opacity: 0.7;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

.faq-item {
    background-color: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    border-left: 6px solid var(--text-color);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #F4320B;
    font-size: 18px;
    background-color: #FEEBE7;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #FCC6BB;
}

.faq-question i {
    transition: transform 0.4s ease;
    color: #F4320B;
    font-size: 20px;
    background-color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, padding 0.6s ease;
    color: #424242;
    line-height: 1.8;
    font-size: 16px;
}

.faq-answer.active {
    padding: 0 30px 30px;
    max-height: 800px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background-color: var(--text-color);
    color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .stats {
        padding: 20px;
        gap: 15px;
    }
    
    .stat-item {
        min-width: 140px;
        padding: 12px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .category-filter {
        padding: 15px;
        gap: 10px;
        justify-content: flex-start;
        overflow-x: auto;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 24px;
    }
    
    .faq-answer.active {
        padding: 0 24px 24px;
    }
}

@media (max-width: 480px) {
    .stat-item {
        min-width: 100%;
    }
    
    .stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .category-filter {
        flex-direction: column;
    }
    
    .category-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================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;
  }
}
