/* ===============================
   RESET & BASE
================================ */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}
html{scroll-behavior:smooth;}
body{
  background:#ffffff;
  color:#333;
  line-height:1.6;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* ===============================
   PREMIUM HEADER
================================ */
.main-header{
  position:sticky;
  top:0;
  z-index:999;
  background:#ffffff;
  box-shadow:0 4px 20px rgba(0,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:32px;
}

.nav-menu a{
  text-decoration:none;
  font-size:16px;
  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:0.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-size:15px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}
.header-cta:hover{
  background:#6f0012;
  transform:translateY(-1px);
}

/* ===============================
   HERO SECTION
================================ */
#hero{
  height:80vh;
  background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../images/hero.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

.hero-text{
  max-width:650px;
  animation:fadeUp 1s ease;
}

.hero-text h1{
  font-size:48px;
  margin-bottom:15px;
}

.hero-text p{
  font-size:18px;
  margin-bottom:25px;
}

.btn{
  display:inline-block;
  background:#930018;
  color:#fff;
  padding:14px 32px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}
.btn:hover{background:#6f0012}

/* ===============================
   GENERAL SECTIONS
================================ */
.section{
  padding:90px 0;
}

.section h2{
  font-size:38px;
  color:#930018;
  margin-bottom:30px;
  text-align:center;
}

/* ===============================
   CARD GRID
================================ */
.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,0.08);
  transition:0.3s;
}
.card:hover{transform:translateY(-8px)}
.card img{
  width:100%;
  border-radius:12px;
  margin-bottom:15px;
}

/* ===============================
   TISARI MUMBAI SECTION
================================ */
.tm-section{
  padding:100px 0;
  background:#f6f6f6;
}

.tm-inner{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:60px;
  align-items:center;
}

.tm-tag{
  display:inline-block;
  background:#930018;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:15px;
}

.tm-left h2{
  font-size:44px;
  margin-bottom:20px;
}
.tm-left h2 strong{color:#930018}

.tm-desc{
  font-size:17px;
  color:#444;
  margin-bottom:35px;
}

.tm-stats{
  display:flex;
  gap:25px;
}

.tm-stats div{
  background:#fff;
  padding:18px 22px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.tm-stats h3{
  font-size:28px;
  color:#930018;
}
.tm-stats span{
  font-size:13px;
  color:#666;
}

.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,0.1);
  transition:0.3s;
}
.tm-box:hover{transform:translateY(-8px)}
.tm-box h4{
  margin-bottom:10px;
  font-size:18px;
}
.tm-box p{
  font-size:14.5px;
  color:#444;
}

.tm-box.highlight{
  background:#930018;
  color:#fff;
}
.tm-box.highlight h4,
.tm-box.highlight p{
  color:#fff;
}

/* ===============================
   CONTACT SECTION
================================ */
.contact-section{
  background:#f5f7fa;
  padding:90px 20px;
}

.contact-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.contact-left h2{
  font-size:36px;
  margin-bottom:15px;
}

.contact-left p{
  font-size:16px;
  color:#555;
}

.contact-right{
  background:#fff;
  padding:35px;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px;
  margin-bottom:18px;
  border-radius:8px;
  border:1px solid #ddd;
  font-size:15px;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#930018;
  outline:none;
}

.contact-form button{
  width:100%;
  padding:14px;
  background:#930018;
  color:#fff;
  border:none;
  border-radius:30px;
  font-size:16px;
  cursor:pointer;
}
.contact-form button:hover{background:#6f0012}

/* ===============================
   FOOTER
================================ */
footer{
  background:#111;
  color:#aaa;
  text-align:center;
  padding:20px;
  font-size:14px;
}

.footer-legal{
  font-size:13px;
  opacity:0.9;
}

.footer-legal a{
  color:#ccc;
  text-decoration:none;
  margin:0 4px;
}

.footer-legal a:hover{
  color:#fff;
  text-decoration:underline;
}

@media(max-width:768px){
  .footer-legal{
    margin-top:8px;
    text-align:center;
    display:block;
  }
}

/* ===============================
   ANIMATION
================================ */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}

/* ===============================
   MOBILE
================================ */
@media(max-width:900px){
  .tm-inner{grid-template-columns:1fr}
  .tm-right{grid-template-columns:1fr}
  .tm-stats{flex-direction:column}
}

@media(max-width:768px){
  .nav-menu{display:none}
  .header-cta{display:none}
  .hero-text h1{font-size:36px}
  .contact-container{grid-template-columns:1fr}
}

/* ===============================
   TISARI MUMBAI CONNECTIVITY (FINAL)
================================ */

/* ================= CONNECTIVITY SLIDER FIX ================= */

.connectivity-section{
  background:#fff;
}

.connectivity-slider{
  display:flex;
  gap:24px;
  overflow-x:auto;
  padding:20px 10px 30px;
  scroll-behavior:smooth;
}

.connectivity-slider::-webkit-scrollbar{
  height:6px;
}

.connectivity-slider::-webkit-scrollbar-thumb{
  background:#930018;
  border-radius:10px;
}

/* IMPORTANT FIX */
.connect-slide{
  flex:0 0 320px;   /* 🔥 THIS IS THE KEY */
  max-width:320px;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
  transition:transform .35s ease;
}

.connect-slide:hover{
  transform:translateY(-6px);
}

.connect-slide img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}

.connect-slide span{
  display:block;
  background:#2c004a;
  color:#fff;
  font-weight:600;
  text-align:center;
  padding:14px;
}

/* Hover */
.connect-card:hover img{
  transform:scale(1.05);
  transition:0.4s ease;
}

/* Tablet */
@media(max-width:992px){
  .connectivity-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

/* Mobile */
@media(max-width:600px){
  .connectivity-grid{
    grid-template-columns:1fr;
  }
  .connect-label{
    font-size:14px;
  }
}

/* ===============================
   ABOUT PAGE SPLIT LAYOUT
================================ */

.about-split{
  padding:100px 0;
}

.light-bg{
  background:#f6f6f6;
}

.about-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:60px;
  align-items:center;
}

.about-grid.reverse{
  grid-template-columns:0.8fr 1.2fr;
}

.about-text h2{
  font-size:36px;
  color:#930018;
  margin-bottom:20px;
}

.about-text p{
  font-size:16px;
  color:#444;
  line-height:1.7;
  margin-bottom:18px;
}

.about-cards{
  margin-top:30px;
}

.about-image{
  text-align:center;
}

.about-image img{
  max-width:100%;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

/* Mobile */
@media(max-width:900px){
  .about-grid,
  .about-grid.reverse{
    grid-template-columns:1fr;
  }
}

/* ===== CTA BUTTONS ===== */

.cta-buttons{
  margin-top:30px;
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn-primary{
  background:#930018;
  color:#fff;
  padding:14px 30px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  box-shadow:0 10px 25px rgba(147,0,24,0.35);
  transition:all .3s ease;
}

.btn-primary:hover{
  background:#6f0012;
  transform:translateY(-3px);
}

.btn-outline{
  border:2px solid #930018;
  color:#930018;
  padding:14px 30px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  transition:all .3s ease;
}

.btn-outline:hover{
  background:#930018;
  color:#fff;
  transform:translateY(-3px);
}

/* Mobile */
@media(max-width:768px){
  .cta-buttons{
    justify-content:center;
  }
}
/* ================= FOOTER ================= */
/* ================= FOOTER ================= */

.site-footer{
  background:#0a3041;
  color:#e6eef4;
  font-size:14px;
}

.footer-top{
  padding:70px 20px;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:40px;
}

.footer-logo{
  height:42px;
  margin-bottom:15px;
}

.footer-title{
  font-size:20px;
  font-weight:700;
  margin-bottom:15px;
  color:#ffffff;
}

.footer-address{
  line-height:1.7;
  margin-bottom:15px;
}

.footer-contact a{
  color:#e6eef4;
  text-decoration:none;
}

.footer-social{
  margin-top:15px;
  display:flex;
  gap:12px;
}

.footer-social a{
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(255,255,255,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  font-size:13px;
  transition:.3s;
}

.footer-social a:hover{
  background:#ffb703;
  color:#0a3041;
}

.footer-col h4{
  font-size:16px;
  margin-bottom:15px;
  color:#ffffff;
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col a{
  color:#e6eef4;
  text-decoration:none;
}

.footer-col a:hover{
  color:#ffffff;
}

.footer-about{
  line-height:1.7;
}

/* BOTTOM */
.footer-bottom{
  background:#082838;
  border-top:1px solid rgba(255,255,255,.15);
  padding:18px 20px;
}

.bottom-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

.footer-bottom a{
  color:#ffffff;
  text-decoration:none;
}

/* ===== FOOTER HEADING LINE ===== */

.footer-col h4{
  position:relative;
  padding-bottom:10px;
}

.footer-col h4::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:36px;              /* line length */
  height:2px;
  background:#ffb703;      /* premium accent color */
  border-radius:2px;
}

/* MOBILE */
@media(max-width:768px){
  .bottom-flex{
    flex-direction:column;
    text-align:center;
  }
}

/* ===============================
   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;
}

/* MOBILE VIEW */
@media(max-width:768px){

  .menu-toggle{
    display:flex;
  }

  .nav-menu{
    position:absolute;
    top:70px;
    right:20px;
    background:#ffffff;
    width:220px;
    flex-direction:column;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    border-radius:12px;
    padding:15px 0;
    display:none;
    z-index:999;
  }

  .nav-menu a{
    padding:12px 20px;
    margin:0;
    font-size:15px;
  }

  .nav-menu.show{
    display:flex;
  }

  .header-cta{
    display:none;
  }
}

/* ================= HERO SLIDER ================= */

#hero-slider{
  position:relative;
  height:85vh;
  overflow:hidden;
}

#hero-slider .slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease-in-out;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

#hero-slider .slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

#hero-slider .slide.active{
  opacity:1;
  z-index:1;
}

#hero-slider .hero-text{
  position:relative;
  max-width:700px;
  padding:0 20px;
  animation:fadeUp 1s ease;
}

#hero-slider h1{
  font-size:48px;
  margin-bottom:15px;
}

#hero-slider p{
  font-size:18px;
  margin-bottom:25px;
}

@media(max-width:768px){
  #hero-slider h1{font-size:34px;}
}

/* ================= 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}

/* Dark overlay */
.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.25);
  z-index:1;
}

/* FORM BOX */
.hero-form-box{
  position:absolute;
  right:6%;
  top:50%;
  transform:translateY(-50%);
  background:#fff;
  padding:30px;
  width:320px;
  border-radius:14px;
  z-index:5; /* 🔥 VERY IMPORTANT */
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.hero-form-box h3{
  margin-bottom:20px;
  text-align:center;
  color:#930018;
}

.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;
  font-size:14px;
}

.hero-form-box input:focus,
.hero-form-box select:focus{
  outline:none;
  border-color:#930018;
}

.hero-form-box button{
  width:100%;
  height:48px;
  background:#930018;
  color:#fff;
  border:none;
  border-radius:30px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
}

.hero-form-box button:hover{
  background:#6f0012;
}

/* MOBILE */
@media(max-width:768px){
  .hero-form-box{
    position:relative;
    top:auto;
    right:auto;
    transform:none;
    margin:20px auto;
    width:90%;
  }
}

/* ================= POPUP ================= */

#popupOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9998;
  display: none;
}

/* POPUP BOX */
#popupForm{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  max-width: 92%;
  background: #fff;
  padding: 30px 24px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
  z-index: 9999;
  display: none;
}

/* HEADING */
#popupForm h2{
  text-align: center;
  margin-bottom: 22px;
  color: #930018;
  font-size: 22px;
}

/* INPUT FIELDS */
#popupForm input{
  width: 100%;
  height: 48px;
  margin-bottom: 15px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
}

#popupForm input:focus{
  border-color: #930018;
}

/* SUBMIT BUTTON – ONLY FORM BUTTON */
#popupForm form button{
  width: 100%;
  height: 48px;
  border: none;
  background: #930018;
  color: #fff;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: background .3s ease;
}

#popupForm form button:hover{
  background: #6f0012;
}

/* CLOSE BUTTON (X) */
.close-btn{
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #930018;
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: bold;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
}

.close-btn:hover{
  background: #6f0012;
}



.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  z-index:1000; /* popup पेक्षा कमी */
}


/* ================= CONNECTIVITY SLIDER ================= */

.connectivity-slider{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:10px;
}

.connectivity-slider::-webkit-scrollbar{
  display:none;
}

.connect-slide{
  min-width:300px;
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
  scroll-snap-align:start;
}

.connect-slide img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}

.connect-slide span{
  display:block;
  background:#2b004f;
  color:#fff;
  text-align:center;
  padding:12px;
  font-weight:600;
}

/* Desktop view */
@media(min-width:992px){
  .connectivity-slider{
    overflow:hidden;
  }
}

/* ================= DEVELOPMENT AUTHORITIES ================= */

.authority-section{
  background:#ffffff;
  padding:90px 20px;
}

.authority-container{
  max-width:1200px;
  margin:auto;
}

.authority-title{
  text-align:center;
  font-size:34px;
  color:#005b8f;
  margin-bottom:60px;
  font-weight:700;
}

.authority-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

.authority-card{
  text-align:center;
  padding:30px 20px;
  border-radius:18px;
  background:#f9fafc;
  transition:.35s ease;
}

.authority-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.authority-card img{
  max-height:70px;
  margin-bottom:22px;
}

.authority-card h4{
  font-size:18px;
  color:#111;
  margin-bottom:10px;
}

.authority-card p{
  font-size:15px;
  color:#555;
  line-height:1.6;
}

/* MOBILE */
@media(max-width:992px){
  .authority-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .authority-grid{
    grid-template-columns:1fr;
  }
  .authority-title{
    font-size:26px;
  }
}

