/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #222;
    overflow-x: hidden;   /* Horizontal scroll bar ko hide karega */
    overflow-y: auto; 
  }
  
  









          
          

.banking-banner {
  position: relative;
  width: 100%;
  height: 50vh;
  background: url('./css styles/assets/made.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

div.banner-text h1 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: rgb(255, 91, 9);
}

.banner-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}
/* Large tablets / small laptops (max 1024px) */
@media (max-width: 1024px) {
  .banking-banner {
    height: 50vh;
  }
  .banner-text h1 {
    font-size: 2.5rem;
  }
  .banner-text p {
    font-size: 1rem;
  }
}

/* Tablets (max 768px) */
@media (max-width: 768px) {
  .banking-banner {
    height: 45vh;
    padding: 10px;
  }
  .banner-text h1 {
    font-size: 2rem;
  }
  .banner-text p {
    font-size: 0.95rem;
  }
  .btn-banner {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Mobile phones (max 480px) */
@media (max-width: 480px) {
  .banking-banner {
    height: 35vh;
  }
  .banner-text h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .banner-text p {
    font-size: 0.85rem;
  }
  .btn-banner {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
              /* Layout container */
              .main-container {
                width: 100%;
                padding: 10px;
              }
              div.nataoli{
                width: 100%;
                padding: 10px;
                text-align: center;
                justify-content: center;
                background-color: #222;
                border-radius: 0.8rem;
              }

              /*content left page*/
              .main-container .content-area {
                flex: 3;
                padding: 20px;
                background: none;
                border-radius: 8px;
                min-height: auto;
                gap: 0.6rem;
              }
              .container{width: 100%; margin:30px auto;padding:28px; display: flex;}
              header.banner{ gap: 2rem; width: 70%; flex-direction: column; align-items:center;background:linear-gradient(90deg,rgba(11,118,239,.06),rgba(11,118,239,.02));padding:28px;border-radius:14px}
              .banner-img{width:100%;height:auto;border-radius:8px;object-fit:cover;flex-shrink:0;box-shadow:0 6px 20px rgba(2,6,23,.08)}
              .banner-content h1{font-size:1rem;margin:0 0 8px}
              .banner-content p{margin:0;color:var(--muted)}

               .main-container .content-area .container .nashta{
                margin: 1rem;
                padding: 10px;
                height: auto;
                background-color: rgb(61, 61, 61);
                width: 30%;
                border-radius: 0.9rem;
                justify-content: center;
                align-items: center;
              }


              @media (max-width: 800px){
                header.banner{ width: 100%;}
                .container{padding:10px;flex-direction: column;}
               .main-container .content-area .container .nashta{
                display: block;
                flex-direction: row;
                width: 100%;
              }
              
              }


























              /* Dropdown Styles */
          .dropdown-container {margin: 20px 0;width: 100%;max-width: 500px;border: 1px solid #ddd;border-radius: 8px;overflow: hidden;}
          .dropdown-container .dropdown-button .noni {
            display: flex;
            justify-content: space-between;
            background: #0073e6;
            color: white;
            padding: 5px 12px;
            font-size: 18px;
            cursor: default; /* cursor pointer hataya since no toggle */
            transition: background 0.3s ease;
          }
          
          .dropdown-container .dropdown-button .noni h2,
          .dropdown-container .dropdown-button .noni h3 {
            color: white;
            font-size: 1.2rem;
          }
          
          /* Always visible list */
          .dropdown-list {
            list-style: none;
            margin: 0;
            padding: 0;
            max-height: none;   /* no collapse */
            overflow: visible;  /* always show */
            background: #f9f9f9;
          }
          
          .dropdown-list li {
            border-top: 1px solid #eee;
          }
          
          .dropdown-list li a {
            display: block;
            padding: 10px 16px;
            text-decoration: none;
            color: #333;
            transition: background 0.3s ease;
          }
          
          .dropdown-list li a:hover {
            background: #eaeaea;
          }
          
              :root{--accent:#0b76ef;--muted:#6b7280;--bg:#f8fafc;--card:#ffffff}
              *{box-sizing:border-box}
              body{font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;line-height:1.6;color:#0f172a;background:var(--bg);margin:0}
        
              nav.toc{margin-top:20px;background:var(--card);padding:16px;border-radius:10px;box-shadow:0 4px 20px rgba(2,6,23,.04)}
              nav.toc h2{font-size:18px;margin:0 0 12px}
              nav.toc ul{list-style:none;display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:8px;padding:0;margin:0}
              nav.toc a{display:block;padding:8px;border-radius:8px;color:var(--accent);text-decoration:none;border:1px solid rgba(11,118,239,.08)}
              article{margin-top:22px}
              section.card{background:var(--card);padding:20px;border-radius:10px;margin-bottom:18px;box-shadow:0 6px 20px rgba(2,6,23,.03)}
              h2{color:#145dee;margin:0 0 12px}
              h3{font-size: 1rem; margin:8px 0;color:#3cff00}
              p{margin:10px 0;color:#0f172a}
              ul{margin:10px 0 10px 20px}
              pre{background:#0b1220;color:#fff;padding:12px;border-radius:8px;overflow:auto}
              .badge{display:inline-block;background:rgba(11,118,239,.08);color:var(--accent);padding:6px 10px;border-radius:999px;font-weight:600}
              /* responsive */
              @media(max-width:768px){.banner{flex-direction:column;align-items:flex-start}.banner-img{width:100%;height:220px}}
          
          /* Global blog images */
          .content-area img {
            display: block;
            max-width:70%;
            height: auto;
            border-radius: 10px;
            margin: 15px auto;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
          }
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
          
              /*sidebar data*/
              .sidebar {
                flex: 1;
                padding: 15px;
                max-height: auto;
                overflow-y: auto;
                transition: transform 0.3s ease-in-out;
              }
          
          
          
          
              .sidebar h3 {
                font-size: 1rem;
                margin-bottom: 15px;
                border-bottom: 2px solid rgb(136, 136, 136);
                padding-bottom: 8px;
                color: rgb(34, 128, 0);
                position: relative;
                top: 0;
                background: #fff;
                z-index: 5;
                display: flex;
                justify-content: space-between;
                align-items: center;
              }
          
              .close-btn {
                font-size: 1.2rem;
                font-weight: bold;
                cursor: pointer;
                color: red;
                display: none;
              }

          /* Close button hide by default */

                    
          .category {
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
          }
          .category:last-child {
            border-bottom: none;
          }
          .category-header {
            font-weight: bold;
            font-size: 1rem;
            margin-bottom: 6px;
            color: #333;
          }
          .category-links a {
            display: block;
            text-decoration: none;
            color: rgb(9, 21, 255);
            font-size: 0.8rem;
            padding: 3px 0;
            transition: 0.3s;
          }
          .category-links a:hover {
            color: rgb(0, 205, 205);
          }
      
          /* Toggle Button */
          .toggle-btn {
            display: none;
            background: teal;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin: 10px;
          }
          /* Mobile me dikhana */
          @media (max-width: 768px) {
            .close-btn {
              display: block;
            }
            .sidebar {
              background-color: white;
            }
          }
          
              /* Responsive */
              @media (max-width: 768px) {
                .main-container {
                  flex-direction: column;
                }
                .sidebar {
                  position: fixed;
                  top: 0;
                  right: 0;
                  height: 100vh;
                  width: 250px;
                  max-height: none;
                  border-left: 3px solid teal;
                  border-radius: 0;
                  transform: translateX(100%);
                  z-index: 1000;
                  background-color: white;
                }
                .sidebar.active {
                  transform: translateX(0);
                }
                .toggle-btn {
                  display: block;
                }
              }



























              

      .bank-container {
        display: flex;
        gap: 20px;
        padding: 20px;
      }
      .card {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .image-box {
        position: relative;
        overflow: hidden;
      }
 .bank-container .card .row-images{
        display: grid;
      }
      .image-box img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        filter: brightness(50%) blur(2px); /* Blur + dark effect */
        transition: 0.3s ease;
      }
      .image-box:hover img {
        filter: brightness(70%) blur(1px);
      }

      .bank-container .card .image-box .nato-img{
        height: 65vh;
      }
      .image-box h3 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        text-align: center;
      }
      /* Left card row images */
      .row-images {
        display: flex;
        gap: 20px;
      }
      .row-images .image-box {
        flex: 1;
      }




/* Tablet screens (max-width: 992px) */
@media (max-width: 992px) {
  .bank-container {
    flex-direction: column;
    padding: 15px;
  }

  .card {
    width: 100%;
  }

  .row-images {
    flex-direction: column;
  }

  .row-images .image-box {
    width: 100%;
  }

  .image-box img {
    height: 250px; /* thoda bada so images look clear on tablet */
  }
}

/* Mobile screens (max-width: 600px) */
@media (max-width: 600px) {
  .bank-container {
    gap: 15px;
    padding: 10px;
  }

  .image-box img {
    height: 200px; /* fixed height for clean look */
    border-radius: 8px;
  }

  .image-box h3 {
    font-size: 16px;
    padding: 0 5px;
  }

  .row-images {
    gap: 10px;
  }
}

/* Very small devices (max-width: 400px) */
@media (max-width: 400px) {
  .image-box img {
    height: 180px;
  }

  .image-box h3 {
    font-size: 14px;
  }
}






          
          
          
          
          
          
          
          

/*main container*/
.tato-containers{
width: 100%;
padding: 10px;
}

/*combine cards*/
.tato-containers .two-comibines{
  display: flex;
  padding: 5px;
  gap: 1rem;
  margin-top: 2rem;
}
/*left img card*/
.tato-containers .two-comibines .unity{
  width: 50%;
}
.tato-containers .two-comibines .unity img{
  width: 100%;
  height: auto;
}
.tato-containers .two-comibines .unity .ninato-btn{
  margin-top: 1.2rem;
}
/*right content with button content*/
.tato-containers .headed{
  padding: 5px;
}
.tato-containers .two-comibines .unity .ninato-btn,
.tato-containers .headed .ninato-btn,
.tato-containers .chicha-list .ninato-btn{
  background-color: none;
  border: none;
}
.tato-containers .two-comibines .unity .ninato-btn a,
.tato-containers .headed .ninato-btn a,
.tato-containers .chicha-list .ninato-btn a{
  font-size: 0.8rem;
  background-color: blue;
  padding: 12px 15px;
  color: white;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.tato-containers .two-comibines .unity .ninato-btn a:hover,
.tato-containers .headed .ninato-btn a:hover,
.tato-containers .chicha-list .ninato-btn a:hover{
  background-color: rgb(136, 136, 248);
}
.tato-containers .headed .finadi{
  width: 70%;
  background-color: rgba(39, 255, 10, 0.081);
  padding: 10px;
  border-radius: 0.6rem;
}
/*bottom big summay card*/
.tato-containers .chicha-list{
  padding: 6px;
}
.tato-containers .chicha-list h3,
.tato-containers .headed h3{
  color: rgba(255, 0, 0, 0.958);
  font-size: 1.1rem;
  text-decoration: underline;
}
/* Responsive Design */

/* For tablets (max-width: 992px) */
@media (max-width: 992px) {
  .tato-containers .two-comibines {
    flex-direction: column;
    align-items: center;
  }
  .tato-containers .two-comibines .unity {
    width: 100%;
  }
  .tato-containers .headed {
    width: 100%;
    margin-top: 1rem;
  }
  .tato-containers .headed .finadi {
    width: 100%;
  }
}

/* For mobile devices (max-width: 600px) */
@media (max-width: 600px) {
  .tato-containers {
    padding: 5px;
  }
  .tato-containers .two-comibines {
    gap: 0.5rem;
  }
  .tato-containers .two-comibines .unity img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
  }
  .tato-containers .headed {
    padding: 5px;
  }
  .tato-containers .headed h3 {
    font-size: 1rem;
  }
  .tato-containers .two-comibines .unity .ninato-btn a,
  .tato-containers .headed .ninato-btn a {
    font-size: 0.75rem;
    padding: 10px 12px;
  }
  .tato-containers .headed .finadi {
    padding: 8px;
  }
}

/* For very small devices (max-width: 400px) */
@media (max-width: 400px) {
  .tato-containers .headed h3 {
    font-size: 0.9rem;
  }
  .tato-containers .two-comibines .unity .ninato-btn a,
  .tato-containers .headed .ninato-btn a {
    font-size: 0.7rem;
    padding: 8px 10px;
  }
  .tato-containers .headed .finadi {
    font-size: 0.85rem;
  }
}



























    /* 🔹 Banner Section */
.containder{
  display: flex;
}



    .weegli-banner {

      position: relative;
      height: 50vh;
      width: 100%;
      background: url('./css styles/assets/summary.webp') no-repeat center center/cover;
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-align: center;
      overflow: hidden;
    }

    /* 🔹 Blurry Color Overlay */
    .weegli-banner::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 54, 36, 0.2);
      backdrop-filter: blur(10px);
      z-index: 1;
    }

    /* 🔹 Content */
    .weegli-content {
      position: relative;
      z-index: 2;
      padding: 20px;
    }

    .weegli-content h1 {
      font-size: 4rem;
      margin-bottom: 1rem;
      font-weight: bold;
      color: rgb(255, 157, 0);
      text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    }

    .weegli-content p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto 2rem;
      color: rgb(255, 255, 255);
      text-shadow: 1px 1px 8px rgba(0,0,0,0.2);
    }

    /* 🔹 Looping Icon Animation */
    .moving-icon {
      display: inline-block;
      font-size: 2rem;
      animation: slideIcon 2.5s linear infinite;
      color: white;
    }
.loan-btn{
  background: none;
  border: none;
  height: none;
  width: none;
}
    .loan-btn a{
      background-color: rgb(62, 190, 3);
      border: none;
      color: white;
      padding: 0.6rem 0.9rem;
      text-decoration: none;
    }
    
    .loan-btn a:hover{
      background-color: rgba(61, 194, 0, 0.636);
    }
    @keyframes slideIcon {
      0% { transform: translateX(-50px); opacity: 0; }
      50% { opacity: 1; }
      100% { transform: translateX(50px); opacity: 0; }
    }

    /* 🔹 Media Queries: Responsive */

    @media (max-width: 480px) {
      .weegli-banner {
        height: 30vh;
      }
      .weegli-content h1 {
        font-size: 1.2rem;
      }
      .weegli-content p {
        font-size: 0.95rem;
        padding: 0 10px;
      }
      .moving-icon {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 500px) {
      .weegli-banner {
        height: 40vh;
      }
      .weegli-content h1 {
        font-size: 1.6rem;
      }
      .weegli-content p {
        font-size: 0.95rem;
        padding: 0 10px;
      }
      .moving-icon {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 768px) {
      .weegli-banner {
        height: 70vh;
      }
      .weegli-content h1 {
        font-size: 2.2rem;
      }
      .weegli-content p {
        font-size: 1rem;
      }
      .containder{
        flex-direction: column;
      }
    }
    @media (max-width: 600px) {
      .weegli-banner {
        height: 60vh;
      }
      .weegli-content h1 {
        font-size: 2.2rem;
      }
      .weegli-content p {
        font-size: 1rem;
      }
    }



    














    
          /* Shared search bar style */
          .search-bar {
            width: 100%;
          }
          .search-bar input {
            width: 100%;
            padding: 6px 10px;
            border: 1px solid rgb(136, 136, 136);
            border-radius: 6px;
            font-size: 0.9rem;
            outline: none;
          }
          .search-bar input:focus {
            border-color: rgb(0, 128, 28);
            box-shadow: 0 0 4px rgba(255, 0, 0, 0.4);
          }
          
          /* Desktop → only show sidebar search */
          .desktop-search { display: block; }
          .mobile-search { display: none; }