body {
  font-family: 'Noto Sans Devanagari', sans-serif;
  background: #fdf6e3;
  margin: 0;
  padding: 0;
}

header {
  background-color: #c62828;
  color: white;
  padding: 20px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

main {
  padding: 20px;
}

 .articleH {
      display: flex;            /* Horizontal layout */
      justify-content: center;  /* Center all blocks */
      gap: 20px;                /* Space between blocks */
      padding: 30px;
    }

    .blockH {
      width: 300px;
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
.article {
  background: #fff3e0;
  margin-bottom: 20px;
  padding: 15px;
  border-left: 4px solid #ff7043;
}

.article a {
  color: #c62828;
  text-decoration: underline;
}
.col_1 {
	width:190px;
	float:left;
	color: #333333;
}
.col_2 {
	width:413px;
	float:left;
	color: #333333;
}
.col_3 {
	width:230px;
	float:left;
	padding-left:8px;
}

.pad_left1 {
	padding-left:33px;
}
.pad1 {
	padding:0 5px;
}
.pad_bot1 {
	padding-bottom:10px;
}
.pad_bot2 {
	padding-bottom:15px;
}
.marg_bot1 {
	margin-bottom:20px;
}
.list3 li {
    display: flex;
    align-items: center;
    margin-bottom: 8px; /* optional spacing between items */
  }

  .list3 li i, 
  .list3 li img {
    margin-right: 8px; /* space between icon and text */
    font-size: 18px;
  }

  .list3 li a {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
.body8 {
	background:url(../images/bg_bot_repeat.jpg) top repeat-x;
}
.body9 {
	
	height:230px;
}
/* Or target specific elements inside */
.col_1 h3 {
    color: #b71c1c; /* For the heading */
}

.col_1 ul li a {
    color: #1a73e8; /* For the links */
}
#menu li {
	float:left;
	padding-left:2px;
}
#menu li a {
	display:block;
	height:66px;
	width:198px;
	font-size:24px;
	padding-top:90px;
	text-align:center;
	text-decoration:none;
	text-transform:uppercase;
}
#menu li a:hover, #menu #menu_active a {
}
footer {
  text-align: center;
  padding: 10px;
  background-color: #c62828;
  color: white;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
    /* Popup Modal */
    .popup {
      display: none; /* Hidden by default */
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .popup-content {
      background: white;
      padding: 30px;
      border-radius: 8px;
      max-width: 500px;
      width: 90%;
      text-align: left;
      position: relative;
    }

    .popup-content h2 {
      margin-top: 0;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 20px;
      cursor: pointer;
      color: #999;
    }

    .close-btn:hover {
      color: #333;
    }