/* ===============================
   RESET & BASE
================================ */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}
html{scroll-behavior:smooth;}
body{
  background:#fff;
  color:#333;
  line-height:1.6;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* ===============================
   HEADER
================================ */
.main-header{
  position:sticky;
  top:0;
  z-index:999;
  background:#fff;
  box-shadow:0 4px 20px rgba(0,0,0,.08);
}
.header-container{
  max-width:1200px;
  margin:auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo-box img{height:46px}

/* NAV */
.nav-menu{
  display:flex;
  gap:30px;
}
.nav-menu a{
  text-decoration:none;
  font-weight:600;
  color:#111;
  position:relative;
}
.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#930018;
  transition:.3s;
}
.nav-menu a:hover{color:#930018}
.nav-menu a:hover::after{width:100%}

/* CTA */
.header-cta{
  background:#930018;
  color:#fff;
  padding:10px 22px;
  border-radius:25px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}
.header-cta:hover{background:#6f0012}

/* MOBILE MENU */
.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.menu-toggle span{
  width:26px;
  height:3px;
  background:#930018;
  border-radius:3px;
}

/* ===============================
   HERO SLIDER
================================ */
#hero-slider{
  position:relative;
  height:90vh;
  overflow:hidden;
}
.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease;
}
.slide.active{opacity:1}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
  z-index:1;
}

/* HERO FORM */
.hero-form-box{
  position:absolute;
  right:6%;
  top:50%;
  transform:translateY(-50%);
  background:#fff;
  padding:30px;
  width:320px;
  border-radius:14px;
  z-index:5;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}
.hero-form-box h3{
  text-align:center;
  color:#930018;
  margin-bottom:20px;
}
.hero-form-box input,
.hero-form-box select{
  width:100%;
  height:46px;
  margin-bottom:14px;
  padding:0 14px;
  border-radius:8px;
  border:1px solid #ddd;
}
.hero-form-box button{
  width:100%;
  height:48px;
  background:#930018;
  color:#fff;
  border:none;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
}
.hero-form-box button:hover{background:#6f0012}

/* ===============================
   SECTIONS
================================ */
.section{padding:90px 0}
.section h2{
  text-align:center;
  font-size:38px;
  color:#930018;
  margin-bottom:30px;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}
.card{
  background:#f9f9f9;
  padding:30px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
}
.card:hover{transform:translateY(-6px)}

/* ===============================
   TISARI MUMBAI
================================ */
.tm-section{background:#f6f6f6;padding:100px 0}
.tm-inner{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:60px;
}
.tm-tag{
  background:#930018;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  display:inline-block;
  margin-bottom:15px;
}
.tm-left h2{font-size:44px}
.tm-left h2 strong{color:#930018}
.tm-desc{margin:25px 0;color:#444}

.tm-stats{
  display:flex;
  gap:20px;
}
.tm-stats div{
  background:#fff;
  padding:18px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.tm-stats h3{color:#930018}

.tm-right{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}
.tm-box{
  background:#fff;
  padding:26px;
  border-radius:18px;
  box-shadow:0 12px 35px rgba(0,0,0,.1);
}
.tm-box.highlight{
  background:#930018;
  color:#fff;
}

/* ===============================
   CONNECTIVITY
================================ */
.connectivity-section{background:#f6f6f6}
.connectivity-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.connect-card{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,.15);
}
.connect-card img{
  width:100%;
  height:230px;
  object-fit:cover;
}
.connect-label{
  background:#2b0050;
  color:#fff;
  text-align:center;
  padding:14px;
  font-weight:600;
}

/* ===============================
   CONTACT
================================ */
.contact-section{background:#f5f7fa;padding:90px 20px}
.contact-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}
.contact-right{
  background:#fff;
  padding:35px;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,.12);
}
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px;
  margin-bottom:18px;
  border-radius:8px;
  border:1px solid #ddd;
}

/* ===============================
   FOOTER (FINAL SINGLE THEME)
================================ */
.site-footer{
  background:#0f172a;
  color:#cbd5e1;
  font-size:14px;
}
.footer-top{padding:60px 20px}
.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:40px;
}
.site-footer h4,
.footer-title{
  color:#facc15;
  margin-bottom:12px;
}
.footer-bottom{
  background:#020617;
  text-align:center;
  padding:15px;
  font-size:13px;
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width:992px){
  .connectivity-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .menu-toggle{display:flex}
  .nav-menu{display:none}
  .contact-container,
  .tm-inner{grid-template-columns:1fr}
  .hero-form-box{
    position:relative;
    transform:none;
    right:auto;
    margin:20px auto;
    width:90%;
  }
}
@media(max-width:600px){
  .connectivity-grid{grid-template-columns:1fr}
}

/* ===============================
   ANIMATION
================================ */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}

/* ================= POPUP FORM ================= */

#popupOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  z-index:9998;
  display:none;
}


#popupForm{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background:#fff;
  width:360px;
  padding:30px;
  border-radius:14px;
  z-index:9999;
  display:none;
  box-shadow:0 25px 60px rgba(0,0,0,.35);
  animation:popupFade .4s ease;
}

#popupForm h3{
  text-align:center;
  color:#930018;
  margin-bottom:10px;
}

#popupForm p{
  text-align:center;
  font-size:14px;
  color:#555;
  margin-bottom:20px;
}

#popupForm input{
  width:100%;
  height:46px;
  margin-bottom:14px;
  padding:0 14px;
  border-radius:8px;
  border:1px solid #ddd;
  font-size:14px;
}

#popupForm input:focus{
  outline:none;
  border-color:#930018;
}

#popupForm button{
  width:100%;
  height:48px;
  background:#930018;
  color:#fff;
  border:none;
  border-radius:30px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
}

#popupForm button:hover{
  background:#6f0012;
}

.popup-close{
  position:absolute;
  top:12px;
  right:14px;
  font-size:22px;
  cursor:pointer;
  color:#555;
}

/* MOBILE */
@media(max-width:480px){
  #popupForm{
    width:90%;
  }
}

@keyframes popupFade{
  from{opacity:0;transform:translate(-50%,-40%)}
  to{opacity:1;transform:translate(-50%,-50%)}
}
