/* ================= Toast msg ================= */
.toast {
    position: fixed;
    right: -300px;
    bottom: 30px;   /* 👈 TOP se BOTTOM change */
    
    background: #111;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;

    transition: all 0.4s ease;
    z-index: 9999;

    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    min-width: 220px;
}

.toast.show {
    right: 20px;   /* slide in */
}

.toast.success {
    background: #22c55e;
}

.toast.error {
    background: #ef4444;
}


/* ================= FOOTER BASE ================= */
.footer{
  background:#f2f3f5;
  color:#e2e8f0;
  padding: 30px 70px 80px;
}

.footer-grid{
  position: relative;
  top: 1px;
}

.footer-grid i{
  margin-right: 10px;
  color: #111;   /* black icon */
}

.footer-grid p{
  line-height: 2;
  margin-bottom: 12px;
}

.footer-grid > div:first-child h3{
  margin-bottom: 25px;
}

.footer-grid > div:first-child p{
  margin: 0;
  padding: 6px 0;
}

.footer-grid > div:first-child p{
  margin-bottom: 8px;   /* 👈 yahi gap create karega */
}

.footer-grid > div:nth-child(2){
  margin-left: 50px;
}

.footer-line,
.copyright{
  position: relative;
  top: 55px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
  max-width:1200px;
  margin:auto;
  text-align:left;
}

/* ================= BRAND ================= */
.footer-grid h3{
  font-size:20px;
  margin-bottom:10px;
  color:#222;
}

.footer-grid p{
  font-size:14px;
  color:#222;
  line-height:1.6;
}

/* ================= HEADINGS ================= */
.footer-grid h4{
  font-size:16px;
  margin-bottom:12px;
  color:#222;
}

/* ================= LINKS ================= */
.footer-grid a{
  display:block;
  color:#222;
  text-decoration:none;
  font-size:14px;
  margin-bottom:8px;
  transition:0.3s;
}

.footer-grid a:hover{
  color:#0094D9;
  transform:translateX(4px);
}

/* ============ PREMIUM NEWSLETTER (ULTRA COMPACT) ============ */
.premium-newsletter{
  width:100%;
  font-family:inherit;
}

/* TEXT */
.newsletter-head{
  margin-bottom:8px;
}

.newsletter-head span{
  display:block;
  font-size:8px;
  font-weight:700;
  letter-spacing:1.2px;
  color:#64748b;
  margin-bottom:4px;
}

.newsletter-head h4{
  font-size:14px;
  line-height:1.2;
  color:#111827;
  font-weight:700;
  margin-bottom:4px;
}

.newsletter-head p{
  font-size:11px;
  line-height:1.4;
  color:#6b7280;
}

/* MAIN BOX */
.newsletter-wrap{
  display:flex;
  align-items:center;
  width:100%;
  height:42px;
  border:1.5px solid #007FB8;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
}

/* INPUT */
.newsletter-wrap input{
  flex:1;
  height:100%;
  border:none;
  outline:none;
  padding:0 12px;
  font-size:13px;
  font-weight:500;
  color:#444;
}

/* BUTTON */
.newsletter-wrap button{
  width:100px;
  height:100%;
  border:none;
  background:#0094D9;
  color:#fff;
  font-size:11px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}

/* HOVER */
.newsletter-wrap button:hover{
  background:#007FB8;
}

/* MOBILE */
@media(max-width:768px){
  .newsletter-wrap{
    height:38px;
  }

  .newsletter-wrap button{
    width:80px;
    font-size:10px;
  }

  .newsletter-head h4{
    font-size:13px;
  }

  .newsletter-head p{
    font-size:10px;
  }
}

/* ================= COPYRIGHT ================= */
.copyright{
  text-align:center;
  margin-top:40px;
  padding-top:15px;
  border-top:1px solid #1e293b;
  font-size:13px;
  color:#111;
}

.social-title{
  font-size:15px;
  font-weight:600;
  color:#111;
  margin-top:32px;
  margin-bottom:18px;
}

.footer-social{
  display:flex;
  align-items:center;
  gap:22px;
  margin-top:20px;   /* 👈 aur neeche */
}

.footer-social a{
  color:#111;
  font-size:20px;    /* 👈 thore bade icons */
  text-decoration:none;
  transition:all .25s ease;
}

.footer-social a:hover{
  color:#007FB8;
  transform:translateY(-2px);
}

/* WHY CHOOSE US LINE STYLE */
.why-lines{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;

  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  color:#111827;
  margin-bottom:15px;
}

/* LEFT RIGHT LINES */
.why-lines span{
  width:120px;
  height:1.5px;
  background:#d1d5db;
  display:block;
}

.premium-trusted{
  margin-bottom: 50px;
}

/* ================= MOBILE FOOTER LEFT ALIGN ================= */
@media (max-width:768px){

  .footer{
    padding:35px 20px;
  }

  .footer-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:28px;
    text-align:left;
  }

  .footer-grid > div{
    width:100%;
    text-align:left;
  }

  .footer-grid > div:nth-child(2){
    margin-left:0;
  }

  .footer-grid,
  .footer-line,
  .copyright{
    top:0;
  }

  .footer-grid h3{
    font-size:22px;
    margin-bottom:15px;
  }

  .footer-grid h4{
    font-size:17px;
    margin-bottom:14px;
  }

  .footer-grid p{
    font-size:14px;
    line-height:1.6;
    margin:0;
    padding:4px 0;
    text-align:left;
  }

  .footer-grid a{
    font-size:14px;
    margin-bottom:10px;
    text-align:left;
  }

  .newsletter-head,
  .newsletter-head p,
  .newsletter-head h4{
    text-align:left;
  }

  .newsletter-wrap{
    width:100%;
    height:46px;
  }

  .newsletter-wrap button{
    width:95px;
  }

  .social-title{
    text-align:left;
    margin-top:20px;
  }

  .footer-social{
    justify-content:flex-start;
    gap:18px;
    margin-top:10px;
  }

  .footer-social a{
    font-size:20px;
  }

  .copyright{
    text-align:center;
    margin-top:20px;
    padding-top:15px;
  }

}

@media (max-width:768px){

  .newsletter-wrap{
    width:100%;
    max-width:270px; /* 320 se chhota */
    height:40px;
  }

  .newsletter-wrap input{
    font-size:12px;
    padding:0 8px;
    min-width:0;
  }

  .newsletter-wrap button{
    width:75px;
    font-size:10px;
  }

}

@media (max-width:768px){

  .toast {
    left: -300px !important;
    right: auto !important;
  }

  .toast.show {
    left: 20px !important;
    right: auto !important;
  }

}