    /* Base */
    :root{
      --accent: #0d6efd;
      --muted: #666;
      --bg: #f7f8fb;
      --max-width: 1200px;
    }
    body {
      font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
      background: var(--bg);
      color: #222;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    .site {
      width: 100%;
      /*max-width: var(--max-width);*/
      margin: 0px auto;
      background: #fff;
      border-radius: 10px;
      /*box-shadow: 0 6px 20px rgba(15,20,30,0.06);*/
      overflow: hidden;
    }
    .text-box{background:#fff; width:98%; padding:1%;}
    .brand { font-weight: 700; font-size: 1.15rem; letter-spacing: .2px; }
    nav { display: flex; gap: 14px; align-items:center; }
    nav a { color: rgba(255,255,255,0.95); text-decoration: none; font-weight: 500; font-size: .95rem; }
    .cta { background: #fff; color: #0d6efd; padding: 8px 12px; border-radius: 6px; font-weight:600; text-decoration:none; }

    /* Main grid: left (2) and right (1) */
    main.grid {
      display: grid;
      grid-template-columns: 2fr 1fr; /* <-- 2:1 ratio */
      gap: 24px;
      padding: 26px;
    }

    /* Left column (primary) */
    .primary {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .heroo {
      background: linear-gradient(180deg, rgba(13,110,253,0.08), rgba(0,0,0,0.01));
      padding: 18px;
      border-radius: 8px;
    }
    .heroo h2 { font-size: 1.6rem; margin-bottom: 8px; color: #0b3b7a; }
    .heroo p { color: var(--muted); }
    .white {color:#fff;}
    .article {
      background: #fff;
      padding: 16px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(12,20,40,0.03);
    }
    .article h2 { margin-bottom: 8px; color: #0d3b78; }
    .article p { color: #444; }

    /* Right column (sidebar) */
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .card {
      background: linear-gradient(180deg,#ffffff,#fbfdff);
      padding: 0px;
      border-radius: 8px;
      border: 1px solid rgba(12,20,50,0.04);
    }
    .card h3 { margin-bottom: 8px; color: #0d3b78; font-size: 1rem; }
    .small { color: var(--muted); font-size: .95rem; }

    .cta-box { display:flex; flex-direction:column; gap:8px; }
    .btn { display:inline-block; padding:10px 12px; background:var(--accent); color:#fff; border-radius:8px; text-decoration:none; font-weight:600; text-align:center; }
     /* bLOG archive */
     .archive {Display:flex; flex-direction:column; justify-content: space-between; text-align:left;}
     .archive ul {margin-left: 0; padding-left: 0; list-style-position: inside; /* bullets ko andar laane ke liye */
         Display:flex; flex-direction:column; justify-content: space-between; margin: 4px 0; list-style:none;}
     .archive ul li {margin-left:0px; display:block; }
     .archive ul li a {text-decoration:none; font-size:14px; padding:0; line-height:25px; color:#3C467B; margin:0;}
     .archive ul li a:hover{color:#6F00FF;}
     .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.responsive-table {
  width:100%;
  border-collapse: collapse;
  min-width: 600px; /* optional: ensures scrollbar appears on very small screens */
}
.responsive-table th,
.responsive-table td {
  padding: 12px 10px;
   border-bottom: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  font-size: 1px;
}
.responsive-table thead th {
  background:#f7f7f7;
  font-weight:700;
}
@media (prefers-color-scheme: dark) {
  .responsive-table th { background:#1f2937; color:#f3f4f6; }
  .responsive-table, .responsive-table td, .responsive-table th { border-color:#374151; }
}
    /* Responsive image utility */
    img.resp { max-width:100%; height:auto; border-radius:6px; display:block; }

    /* Testimonials strip */
    .testimonials {
      display:flex;
      gap:12px;
      overflow-x:auto;
      padding: 10px 0;
    }
    .testimonial {
      min-width: 220px;
      background: #f6f9ff;
      padding: 12px;
      border-radius: 8px;
      border:1px solid rgba(13,110,253,0.06);
      font-size: .95rem;
    }

    /* Footer */
    footer {
      padding: 16px 22px;
      background: #fafafa;
      color: var(--muted);
      font-size: .95rem;
      text-align: center;
    }
/*blog items images */
.image-container {
   display:flex;
   position: relative;
   width: 100%;
   height:0;
   padding-top: 58.3%;
   background:#000;
   margin:0.7rem auto;
   box-sizing:border-box;
}

.image-container img {
   position:absolute;
   width:100%;
   top: 0;
   left: 0;
   bottom: 0;
   right: 0;
}

.overlay-text {ें
  display:flex;
  flex-direction:column;
  width:96%;
  color: black;
  text-align: left;
  background: #F9F6F3; /* थोड़ा dark background */
  padding: 2%;
  border-radius: 8px;
}

.overlay-text h2 {
  margin: 0;
  font-size: 1.5rem;
}

.overlay-text p {
    color:#000;
  font-size: 1rem;
  margin: 5px 0 0;
}
.read-more-btn {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, #4CAF50, #2E7D32); /* Gradient background */
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  width:150px;
}

.read-more-btn:hover {
  background: linear-gradient(135deg, #66BB6A, #388E3C);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.read-more-btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
/*blog card list */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.blog-card {
  max-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 20px;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content {
  padding: 16px;
}

.blog-title {
text-align:justify;
  font-size: 1.1rem;
  margin: 5px 0 10px;
  color: #222;
}

.blog-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}
.short-description {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* दिखाने वाली lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*.read-more-btn {*/
/*  display: inline-block;*/
/*  padding: 10px 18px;*/
/*  background: linear-gradient(135deg, #4CAF50, #2E7D32);*/
/*  color: #fff;*/
/*  font-size: 15px;*/
/*  font-weight: 600;*/
/*  text-decoration: none;*/
/*  border-radius: 30px;*/
/*  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.read-more-btn:hover {*/
/*  background: linear-gradient(135deg, #66BB6A, #388E3C);*/
/*  transform: translateY(-3px) scale(1.05);*/
/*  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);*/
/*}*/

/* --- Heading color theme (customizable) --- */
:root{
  --h1-color: #0077b6;   /* H1 - blue */
  --h2-color: #67C090;   /* H2 - red */
  --h3-color: #10b981;   /* H3 - green */
  --h4-color: #f59e0b;   /* H4 - amber/orange */

  --heading-shadow: 0 2px 0 rgba(0,0,0,0.03);
  --heading-transition: 240ms ease;
}

/* Basic reset for headings */
h1,h2,h3,h4{
  margin: 0 0 0.6em 0;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
  transition: transform var(--heading-transition), color var(--heading-transition);
  text-shadow: var(--heading-shadow);
}

/* Individual colors */
h1{ color: var(--h1-color); font-size: clamp(1.4rem, 1.6vw + 0.5rem, 1.9rem); }
h2{ color: var(--h2-color); font-size: clamp(1.3rem, 1.4vw + 0.4rem, 1.8rem); }
h3{ color: var(--h3-color); font-size: clamp(1.2rem, 1.3vw + 0.3rem, 1.6rem); }
h4{ color: var(--h4-color); font-size: clamp(1rem, 1.2vw + 0.35rem, 1.25rem); }

/* Small hover/focus effect (accessible & subtle) */
h1:hover, h2:hover, h3:hover, h4:hover,
h1:focus, h2:focus, h3:focus, h4:focus{
  transform: translateY(-3px);
  filter: brightness(1.03);
  outline: none;
}

/* Optional: alternative dark theme (add class .dark on body) */
body.dark{
  --h1-color: #93c5fd;
  --h2-color: #fecaca;
  --h3-color: #bbf7d0;
  --h4-color: #fde68a;
  background: #0b1020;
  color: #e6eef8;
}

/* Mobile spacing tweak */
@media (max-width:600px){
  h1{ margin-bottom:0.45em; }
  h2{ margin-bottom:0.4em; }
}
    /* Tablet adjustments */
    @media (max-width: 992px) {
      .site { margin: 18px auto; }
      main.grid { gap: 18px; padding: 20px; }
      header { padding: 14px 16px; }
    }

    /* Mobile: stack columns */
    @media (max-width: 720px) {
      nav { display: none; } /* simple: hide desktop nav on small */
      header { padding: 12px; }
      main.grid { grid-template-columns: 1fr; padding: 14px; gap: 12px; }
      .hero h1 { font-size: 1.25rem; }
      .testimonial { min-width: 180px; }
    }

    /* Small improvements */
    .meta { font-size: .9rem; color: var(--muted); }
    .muted { color: var(--muted); }
    
    
    /* Navbar */
    header { background: #0077b6; color: white; padding: 1rem; }
    .container { width: 90%; max-width: 1200px; margin: auto; }
    nav { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
    .logo { font-size: 1.5rem; font-weight: bold; }
    .menu-icon { display: none; font-size: 2rem; cursor: pointer; }
    ul#menu {display: flex; flex-direction:row;justify-content: space-between; align-items: center; list-style: none;}
    ul#menu li { margin: 0 10px; }
    ul#menu li a { text-decoration: none; color: white; font-weight: 500; }

    /* Hero */
    .hero {
      /*background: url("https://picsum.photos/1200/500") no-repeat center center/cover;*/
      height: 400px; display: flex; justify-content: center; align-items: center; text-align: center; color: white;
    }
    .hero h1 { font-size: 2.5rem; background: rgba(0,0,0,0.5); padding: 10px; border-radius: 10px; }

    /* Cards */
    .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
    .card { background: #f9f9f9; padding: 20px; border-radius: 10px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); text-align: left; }
    .card h2 { margin-bottom: 10px; color: #0077b6; }

    /* Testimonials */
    .testimonials { background: #f1f1f1; padding: 40px 20px; text-align: center; }
    .testimonial { max-width: 700px; margin: 20px auto; font-style: italic; }

    /* Articles */
    .articles { margin: 40px 0; }
    .article { background: #f4f4f4; padding: 15px; border-radius: 8px; margin-bottom: 20px; }
    .article h3 { margin-bottom: 10px; color: #0077b6; }

    /* Contact */
    .contact { background: #f9f9f9; padding: 40px 20px; }
    .contact h2 { text-align: center; margin-bottom: 20px; }
    form { max-width: 600px; margin: auto; display: flex; flex-direction: column; }
    form input, form textarea {
      padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-radius: 5px;
    }
    form button {
      background: #0077b6; color: white; border: none; padding: 12px; border-radius: 5px; cursor: pointer; font-size: 1rem;
    }
    form button:hover { background: #005f87; }

    /* Footer */
    footer { background: #0077b6; color: white; text-align: center; padding: 1rem; margin-top: 20px; }

    /* Responsive */
    @media (max-width: 768px) {
      .cards { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .menu-icon { display: block; }
      ul { display: none; flex-direction: column; width: 100%; background: #333; }
      ul li { margin: 10px 0; text-align: center; }
      ul.active { display: flex; }
      .cards { grid-template-columns: 1fr; }
      .hero h1 { font-size: 1.5rem; }
    }