*{
    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-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 ====================== */
.voicecore-wrap {
  background: #fff;
  padding: 80px 20px;
}

.voicecore-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.voicecore-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.voicecore-desc {
  font-size: 16px;
  color: #444;
  max-width: 900px;
  margin: 0 auto 15px;
  line-height: 1.7;
}

.voicecore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.voicecore-card {
  background: #FEEBE7;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
}

.voicecore-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.voicecore-card-text {
  font-size: 14.5px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.voicecore-list {
  list-style: none;
  padding-left: 0;
}

.voicecore-list li {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.voicecore-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0b4db8;
  font-weight: bold;
}
@media (max-width: 900px) {
  .voicecore-grid {
    grid-template-columns: 1fr;
  }

  .voicecore-title {
    font-size: 32px;
  }
}

/* =========================sec-3 ======================== */
.autoslide-wrap {
  padding: 70px 20px;
  background: #FEEBE7;
  overflow: hidden;
}

.autoslide-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.autoslide-viewport {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.autoslide-track {
  display: flex;
  gap: 30px;
  animation: autoslide-move 18s linear infinite;
}

.autoslide-card {
  min-width: 280px;
  background: #FCC6BB;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
}

.autoslide-card img {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.autoslide-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.autoslide-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

.autoslide-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #F54927;
  background: transparent;
  cursor: pointer;
}

/* Pause on hover */
.autoslide-wrap:hover .autoslide-track {
  animation-play-state: paused;
}

/* Animation */
@keyframes autoslide-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .autoslide-track {
    animation-duration: 25s;
  }

  .autoslide-card {
    min-width: 240px;
  }
}
/* ============================sec-4 =================== */
/* ===== Section 1 : Voice Comparison Table ===== */

.vcmp-wrap {
  padding: 60px 20px;
  background: #ffffff;
}

.vcmp-container {
  max-width: 1200px;
  margin: auto;
}

.vcmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.vcmp-table th {
  background: var(--bg-main);
  color: #000;
  padding: 14px;
  border: 1px solid #F54927;
  text-align: center;
  font-weight: 700;
}

.vcmp-table td {
  padding: 14px;
  border: 1px solid #F54927;
  text-align: center;
}

.vcmp-table tbody tr td:first-child {
  background: #FCC6BB;
  font-weight: 600;
}
/* ======================sec-5 ================= */
/* ===== Section 2 : Voice Features ===== */

.vfeat-wrap {
  background: linear-gradient(135deg, #F87C63, #FAA18F);
  padding: 80px 20px;
  color: #fff;
}

.vfeat-container {
  max-width: 1200px;
  margin: auto;
}

.vfeat-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.vfeat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.vfeat-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.vfeat-card p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.6;
}
/* ===Responsivesec-4/sec-5===== */
@media (max-width: 900px) {
  .vfeat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .vfeat-grid {
    grid-template-columns: 1fr;
  }

  .vcmp-table {
    font-size: 13px;
  }
}
/* =====================sec=6 ==================== */
 .faqzone-wrapper {
  padding: 70px 20px;
  background: #ffffff;
}

.faqzone-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
}

.faqzone-box {
  max-width: 1000px;
  margin: auto;
  background: #fafafa;
  border-radius: 20px;
  padding: 20px;
  border: 6px solid #fff3c2;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 22px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.faq-question:hover {
  background: #f4f8ff;
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
} 
/* =================== sec-7======================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.container h2{
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  padding-bottom: 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;
  }
}
