/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#f8fafc;
  color:#111827;
}

/* HEADER */
.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#0f172a;
  padding:12px 16px;
  position:sticky;
  top:0;
  z-index:1000;
}

.logo{height:42px;}

.menu-icon{
  font-size:22px;
  color:#fff;
  cursor:pointer;
}

/* SIDE MENU */
.side-menu{
  position:fixed;
  top:0;
  left:-260px;
  width:260px;
  height:100%;
  background:#020617;
  padding-top:20px;
  transition:.3s;
  z-index:2000;
}

.side-menu a{
  display:block;
  padding:12px 20px;
  color:#e5e7eb;
  text-decoration:none;
  font-size:15px;
  border-bottom:1px solid #1f2937;
}

.side-menu a:hover{background:#0f172a;}

.close-btn{
  color:#fff;
  font-size:26px;
  padding:0 20px 10px;
  cursor:pointer;
  text-align:right;
}

/* BANNER */
.main-banner{position:relative;width:100%;overflow:hidden;}
.main-banner img{width:100%;height:320px;object-fit:cover;}

.banner-content{
  position:absolute;
  inset:0;
  background:rgba(2,6,23,.55);
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.banner-btn{
  background:#38bdf8;
  color:#020617;
  padding:8px 18px;
  border-radius:20px;
  text-decoration:none;
}

/* SERVICES */
.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
  padding:30px 15px;
}

.service-box{
  background:#fff;
  border-radius:12px;
  padding:20px;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}

.service-box ul{list-style:none;}
.service-box ul li{padding:6px 0;border-bottom:1px dashed #e5e7eb;}

/* QUICK ACCESS */
.quick-access{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
  padding:20px 15px;
}

.qa-box{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:18px;
  border-radius:12px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.services-btn{background:linear-gradient(45deg,#38bdf8,#0f172a);}
.news-btn{background:linear-gradient(45deg,#f59e0b,#b45309);}
.loan-btn{background:linear-gradient(45deg,#10b981,#065f46);}

/* CONTACT */
#contact{text-align:center;padding:30px 15px;}

.social-icons a{
  display:inline-flex;
  width:38px;
  height:38px;
  border-radius:50%;
  background:#0f172a;
  color:#fff;
  align-items:center;
  justify-content:center;
  margin:4px;
}

/* FOOTER */
.site-footer{
  background:#020617;
  color:#e5e7eb;
  text-align:center;
  padding:20px;
}

/* FLOATING BUTTONS MIDDLE RIGHT */
.floating-buttons{
  position: fixed !important;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99999;
}

/* FLOATING BUTTONS */
.floating-buttons{
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-buttons a{
  text-decoration: none;
  color: #fff;
  padding: 12px 16px;
  border-radius: 30px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.whatsapp{ background:#25D366; }
.telegram{ background:#0088cc; }
.jobs{ background:#f97316; }


/* WHATSAPP CHAT ROUND BUTTON */
.whatsapp-chat{
  position: fixed;
  bottom: 20px;
  right: 15px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  z-index: 9999;
}
/* ===========================
   TRIPLE LINKS SECTION
   =========================== */

.triple-links{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
  margin:25px 15px;
}

.link-col{
  background:#fff;
  border:1px solid #ddd;
}

.link-col h3{
  background:#0f172a;
  color:#fff;
  padding:10px;
  text-align:center;
}

.link-col ul{list-style:none;}

.link-col ul li{
  border-bottom:1px solid #eee;
}

.link-col ul li a{
  display:block;
  padding:8px 12px;
  text-decoration:none;
  color:#0000cc;
}

.link-col ul li a:hover{
  background:#f1f5f9;
  color:#d60000;
}

@media(max-width:900px){
  .triple-links{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:600px){
  .triple-links{grid-template-columns:1fr;}
}

/* ===========================
   UPDATES SECTION
   =========================== */

.updates-container{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.updates-box{
  flex:1;
  min-width:300px;
  border:2px solid #ddd;
  background:#fff;
}

.updates-title{
  background:#c40000;
  color:#fff;
  padding:10px;
  text-align:center;
}

.updates-box ul{
  padding:15px;
  list-style:none;
}

.updates-box li{
  margin-bottom:10px;
}

.updates-box a{
  text-decoration:none;
  color:#0033cc;
}

.view-btn{
  margin:10px;
  padding:8px 15px;
  background:#007bff;
  color:#fff;
  border:none;
  border-radius:20px;
  cursor:pointer;
}
/* ===== MOBILE FIX ===== */
@media (max-width:768px){

  .floating-buttons{
    right: 5px;                /* Screen se chipka */
    gap: 8px;
  }

  .floating-buttons a{
    padding: 8px 10px;         /* Size chhota */
    font-size: 12px;
    border-radius: 20px;
  }

  .floating-buttons a i{
    font-size: 14px;
  }

  /* Text short karne ke liye width auto */
  .floating-buttons a span{
    display:none;
  }

  /* WhatsApp Chat Button bhi chhota */
  .whatsapp-chat{
    width: 45px;
    height: 45px;
    font-size: 20px;
    bottom: 15px;
    right: 5px;
  }
}
/* CONTACT SOCIAL ICONS STYLE */
.social-icons{
  margin-top:10px;
}

.social-icons a{
  width:40px;
  height:40px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:5px;
  color:#fff;
  text-decoration:none;
  transition:0.3s;
  font-size:16px;
}

/* Brand Colors */
.social-icons a:nth-child(1){ background:#1877F2; } /* Facebook */
.social-icons a:nth-child(2){ background:#E4405F; } /* Instagram */
.social-icons a:nth-child(3){ background:#000000; } /* X */
.social-icons a:nth-child(4){ background:#0088cc; } /* Telegram */
.social-icons a:nth-child(5){ background:#EA4335; } /* Email */
.social-icons a:nth-child(6){ background:#FF0000; } /* YouTube */

/* Hover Effect */
.social-icons a:hover{
  transform:translateY(-4px);
  box-shadow:0 4px 10px rgba(0,0,0,0.3);
}