*{
    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:#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;
  }
}
/* end from */
/* ============================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;
  list-style: none;
}

.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 ======================= */
.seo-benefit-section {
  padding: 60px 20px;
  background: #fffaf7;
  font-family: "Segoe UI", sans-serif;
}

.seo-container {
  max-width: 1200px;
  margin: auto;
}

.seo-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.seo-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #FCC6BB;
  padding: 25px;
  border-radius: 14px;
  transition: 0.3s ease;
}

.seo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.seo-icon {
  font-size: 36px;
  color: #ff6f2c;
  min-width: 50px;
}

.seo-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #000;
}

.seo-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .seo-title {
    font-size: 28px;
  }
}
/* ========================sec-4 =================== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
           background-color: #f8fafc;

        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h1 {
            font-size: 2.8rem;
            color: #1e293b;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h1:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: linear-gradient(to right, #3b82f6, #8b5cf6);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 700px;
            margin: 20px auto 0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .benefit-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            padding: 35px 30px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px (#FCC6BB);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 28px;
            color: white;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        }

        .benefit-card:nth-child(2) .benefit-icon {
            background: linear-gradient(135deg, #10b981, #06b6d4);
        }

        .benefit-card:nth-child(3) .benefit-icon {
            background: linear-gradient(135deg, #f59e0b, #ef4444);
        }

        .benefit-card:nth-child(4) .benefit-icon {
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
        }

        .benefit-card:nth-child(5) .benefit-icon {
            background: linear-gradient(135deg, #06b6d4, #10b981);
        }

        .benefit-card:nth-child(6) .benefit-icon {
            background: linear-gradient(135deg, #ef4444, #f59e0b);
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            color: #1e293b;
            margin-bottom: 15px;
        }

        .benefit-card p {
            color: #64748b;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .benefit-stats {
            display: flex;
            align-items: center;
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid #f1f5f9;
            color: #ff8b5c;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .stat-icon {
            margin-right: 8px;
            color: #ff6b5a;
        }

        .ctaa-container {
            text-align: center;
            margin-top: 70px;
            padding: 40px;
            background: linear-gradient(135deg, #ff6b5a, #ff8b5c);
            border-radius: 16px;
            color: white;
        }

        .ctaa-container h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .ctaa-container p {
            font-size: 1.1rem;
            color: #cbd5e1;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .ctaa-button {
            display: inline-block;
            background: linear-gradient(to right, #3b82f6, #8b5cf6);
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
        }

        .ctaa-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
        }

        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 2.2rem;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .ctaa-container {
                padding: 30px 20px;
            }
            
            .ctaa-container h2 {
                font-size: 1.8rem;
            }
        }
/* ===================== sec-5 ========================= */
.seo-pricing-section {
  padding: 70px 20px;
  background: #fffaf7;
  font-family: "Segoe UI", sans-serif;
}

.seo-pricing-container {
  max-width: 1200px;
  margin: auto;
}

.seo-pricing-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.seo-pricing-table-wrap {
  overflow-x: auto;
}

.seo-pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
}

.seo-pricing-table th,
.seo-pricing-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.seo-pricing-table th {
  background: #ff8b5c;
  color: #fff;
  font-size: 16px;
}

.seo-pricing-table th span {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.9;
}

.seo-pricing-table th.highlight {
  background: #ff6f2c;
}

.seo-pricing-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #333;
}

.seo-pricing-table tbody tr:hover {
  background: #fff2ec;
  transition: 0.3s;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .seo-pricing-title {
    font-size: 28px;
  }

  .seo-pricing-table th,
  .seo-pricing-table td {
    font-size: 14px;
    padding: 12px;
  }
}

/* ========================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;
  }
}
