*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#f7fbff;
  /* color:#0b2b40; */
}
/* =======================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-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;
  }
}
