* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
  list-style: none;
  text-decoration: none;
}
body {
  font-family: "Poppins", sans-serif;
  background-image: linear-gradient(60deg, #64b3f4 0%, #c2e59c 100%);
  min-height: 100vh;
}
.main {
  max-width: 1800px;
  display: block;
  margin: 0 auto;
  width: 100%;
}
@font-face {
  font-family: Poppins;
  src: url(../fonts/poppins-v21-latin/poppins-v21-latin-500.woff2);
}
/* --------------cover-title------------ */
@font-face {
  font-family: "Yatra One";
  src: url(../fonts/Yatra_One/YatraOne-Regular.ttf);
}
body {
  min-height: 100vh;
}
header {
  position: relative;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #e0e8d0;
  padding: 0px 10%;
  transition: all 0.5s ease;
  overflow-x: clip;
}
.navbar {
  display: flex;
}
.navbar a {
  color: #4a5632;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 5px 0;
  margin: 0px 30px;
  transition: all 0.05s ease;
}
.navbar a:hover {
  color: #2e2e2e;
}
.navbar a:hover a.active {
  color: none;
}

.logo img {
  width: 120px;
}
.buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.btn2,
.btn3 {
  height: 45px;
  font-size: 18px;
  padding: 1px 15px;
  color: white;
  background-color: #6b8e23;
  border: none;
  transition: all 0.3s ease;
}
.btn2 {
  width: 180px;
}
.btn2 .fa-solid {
  color: #fdff00;
  font-size: 22px;
}
.buttons button:hover {
  background-color: #2e2e2e;
}
#menu-icon {
  color: #8e9134;
  cursor: pointer;
  z-index: 10001;
  display: none;
}

/* ------for smallscreen--------------  */
@media (max-width: 1280px) {
  header {
    padding: 0 2%;
    transition: 0.2s;
  }
  .navbar a {
    padding: 5px 0;
    margin: 0px 20px;
  }
}
@media (max-width: 1090px) {
  #menu-icon {
    display: block;
  }
  .fa-bars {
    font-size: 40px;
  }
  .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    right: -100%;
    width: 150px;
    height: 29vh;
    background-image: radial-gradient(
      circle farthest-corner at 10% 20%,
      rgba(234, 251, 86, 0.88) 0%,
      rgba(165, 225, 27, 1) 90%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 0 0 0 10px;
    transition: all 0.5s ease;
  }
  .navbar a {
    display: block;
    margin: 15px 0;
    padding: 0px 25px;
    transition: all 0.5s ease;
    color: #1a1a1a;
  }
  .navbar a:hover {
    transform: translateY(5px);
  }

  .navbar.open {
    right: 0;
  }
  .btn2,
  .btn3 {
    height: 40px;
  }
}
@media (max-width: 1000px) {
  .logo img {
    width: 100px;
  }
}
@media (max-width: 800px) {
  .logo img {
    width: 90px;
  }
  .navbar {
    height: 18vh;
  }
  .navbar a {
    margin: 5px 0;
  }
}
@media (max-width: 600px) {
  .logo img {
    width: 80px;
  }
  .navbar {
    height: 14vh;
    width: 120px;
  }
  .navbar li {
    margin-left: 10px;
  }
  .navbar a {
    margin: 3px 0;
    font-size: 0.8rem;
  }
}
@media (max-width: 550px) {
  .navbar {
    width: 100px;
  }
  .navbar li {
    margin-left: 5px;
  }
  .navbar a {
    font-size: 0.8rem;
  }
  .buttons {
    gap: 10px;
  }
  .btn2,
  .btn3 {
    height: 35px;
    font-size: 15px;
    padding: 1px 15px;
  }
  .btn2 {
    width: 160px;
  }
}
@media (max-width: 430px) {
  .logo img {
    width: 70px;
  }
  .navbar {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn2 .fa-solid {
    display: none;
  }
  .buttons {
    gap: 8px;
  }
  .btn1,
  .btn2,
  .btn3 {
    height: 30px;
    font-size: 13px;
    padding: 1px 9px;
  }
  .btn2 {
    width: 120px;
  }
}
.fa-bars {
  font-size: 30px;
}

@media (max-width: 320px) {
  .buttons {
    gap: 7px;
  }
  .btn2,
  .btn3 {
    font-size: 13px;
    padding: 1px 6px;
  }
  .btn2 {
    width: 120px;
  }
  .logo img {
    width: 70px;
  }
}
/* ================Article_View============== */
.container {
  margin: 50px 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.title-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.title {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-right: 40px;
}

.idn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}

.idn img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #667eea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
}

.idn img:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.idn h2 {
  color: #333;
  font-weight: 600;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2c3e50;
  text-align: left;
  position: relative;
}

.title h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 2px;
}

.cover-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cover {
  width: 350px;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 15px;
}

.cover:hover {
  transform: scale(1.05);
}

.content {
  min-height: 60vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.content-placeholder {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  padding: 60px 20px;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .container {
    margin: 40px 80px;
  }

  .cover {
    width: 300px;
    height: 220px;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    margin: 30px 60px;
  }

  .title-section {
    padding: 30px;
  }

  .title h1 {
    font-size: 2rem;
  }

  .cover {
    width: 280px;
    height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .container {
    margin: 20px 30px;
    gap: 20px;
  }

  .title-section {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .title {
    margin-right: 0;
    margin-bottom: 20px;
    align-items: center;
  }

  .title h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .title h1::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .idn h2 {
    font-size: 1.2rem;
  }

  .cover {
    width: 100%;
    max-width: 400px;
    height: 250px;
  }

  .content {
    padding: 30px 25px;
  }
}

@media screen and (max-width: 480px) {
  .container {
    margin: 15px 20px;
  }

  .title-section {
    padding: 20px;
  }

  .title h1 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .idn {
    gap: 12px;
  }

  .idn img {
    width: 60px;
    height: 60px;
    border-width: 3px;
  }

  .idn h2 {
    font-size: 1.1rem;
  }

  .cover {
    height: 200px;
  }

  .content {
    padding: 25px 20px;
    min-height: 50vh;
  }

  .content-placeholder {
    font-size: 1rem;
    padding: 40px 15px;
  }
}

@media screen and (max-width: 360px) {
  .container {
    margin: 10px 15px;
  }

  .title-section {
    padding: 15px;
  }

  .title {
    gap: 20px;
  }

  .title h1 {
    font-size: 1.3rem;
  }

  .idn img {
    width: 55px;
    height: 55px;
  }

  .idn h2 {
    font-size: 1rem;
  }

  .cover {
    height: 180px;
  }

  .content {
    padding: 20px 15px;
  }
}

@media screen and (max-width: 320px) {
  .container {
    margin: 8px 12px;
  }

  .title-section {
    padding: 12px;
  }

  .title {
    gap: 15px;
  }

  .title h1 {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .title h1::after {
    width: 60px;
    height: 3px;
  }

  .idn {
    gap: 10px;
  }

  .idn img {
    width: 50px;
    height: 50px;
    border-width: 2px;
  }

  .idn h2 {
    font-size: 0.9rem;
  }

  .cover {
    height: 160px;
  }

  .content {
    padding: 15px 12px;
    min-height: 40vh;
  }

  .content-placeholder {
    font-size: 0.9rem;
    padding: 30px 10px;
  }
}

/* Additional animations */
.title-section,
.content {
  opacity: 0;
  animation: slideInFade 1s ease-out forwards;
}

.content {
  animation-delay: 0.3s;
}

@keyframes slideInFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==================FOOTER==================== */

      
.footer {
  background-image: url(../images/footer3.jpg);
  font-family: "Libertinus Sans", sans-serif;
}
.container2 {
  padding: 0 125px;
  color: white;
}
.row-ar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.row-ar h3 {
  color: #d4b483;
}
.face {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.face img {
  width: 150px;
}
.face p {
  margin: 0;
  font-size: 16px;
}
ul li {
  margin-left: 20px;
}
.footer ul li {
  color: white;
}
.footer2 ul {
  list-style: none;
}
.footer2 ul li:hover {
  color: #8e9134;
  cursor: pointer;
}
.footer3 ul a{
  list-style: none;
  color: white;
}
.footer3 ul i {
  color: #7dae92;
  font-size: 17px;
}
.fa-square-facebook:focus {
  outline: none;
}
.footer3 ul a:hover,
.footer3 ul i:hover {
  color: #8e9134;
  cursor: pointer;
}
.footer4 ul {
  list-style: none;
  position: relative;
}
.ads {
  text-align: justify;
}
.footer4 .ads::before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  font-size: 1.1em;
  color: #7dae92;
  position: absolute;
  left: 3px;
}
.footer4 .number::before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
  font-size: 1em;
  color: #7dae92;
  position: absolute;
  left: 0px;
  top: 100px;
}
.footer4 .mail::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  font-size: 1em;
  color: #7dae92;
  position: absolute;
  left: 0px;
  top: 125px;
}

.footer5 img {
  height: 150px;
}
.footer1,
.footer2,
.footer3,
.footer4,
.footer5 {
  padding-top: 50px;
}
.copyright {
  padding: 10px 0;
  text-align: center;
}
@media (max-width: 1462px) {
  .footer4 .number::before {
    top: 124px;
  }
  .footer4 .mail::before {
    top: 148px;
  }
}
@media (max-width: 1294px) {
  .footer4 .number::before {
    top: 148px;
  }
  .footer4 .mail::before {
    top: 172px;
  }
}
@media (max-width: 1103px) {
  .footer4 .number::before {
    top: 172px;
  }
  .footer4 .mail::before {
    top: 196px;
  }
}
@media (max-width: 1073px) {
  .footer4 .number::before {
    top: 196px;
  }
  .footer4 .mail::before {
    top: 220px;
  }
}
@media (max-width: 1060px) {
  .row-ar {
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
    justify-content: center;
  }
  .footer2 {
    grid-row: 2;
  }
  .footer4 {
    grid-row: 1;
    grid-column: 2;
    margin-top: 50px;
  }
  .footer4 .number::before {
    top: 76px;
  }
  .footer4 .mail::before {
    top: 100px;
  }
}
@media (max-width: 1037px) {
  .footer4 .number::before {
    top: 100px;
  }
  .footer4 .mail::before {
    top: 124px;
  }
}
@media (max-width: 850px) {
  .footer4 .number::before {
    top: 124px;
  }
  .footer4 .mail::before {
    top: 148px;
  }
}
@media (max-width: 768px) {
  .footer4 .number::before {
    top: 148px;
  }
  .footer4 .mail::before {
    top: 172px;
  }
}
@media (max-width: 671px) {
  .footer4 .number::before {
    top: 172px;
  }
  .footer4 .mail::before {
    top: 196px;
  }
}
@media (max-width: 616px) {
  .footer4 .number::before {
    top: 196px;
  }
  .footer4 .mail::before {
    top: 220px;
  }
}
@media (max-width: 600px) {
  .container2 {
    width: 80%;
    padding: 0;
    margin: 0 auto;
  }
  .row-ar {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer4 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .footer4 .number::before {
    top: 80px;
  }
  .footer4 .mail::before {
    top: 100px;
  }
  .footer1,
  .footer2,
  .footer3,
  .footer4,
  .footer5 {
    padding-top: 0px;
  }
  .face {
    align-items: center;
  }
}
@media (max-width: 485px) {
  .footer4 .number::before {
    top: 100px;
  }
  .footer4 .mail::before {
    top: 124px;
  }
}
@media (max-width: 369px) {
  .footer4 .number::before {
    top: 124px;
  }
  .footer4 .mail::before {
    top: 148px;
  }
}
.buttons a span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  width: 45px;
  background: #6b8e23;
  font-size: 18px;
  font-weight: bold;
  color: white;
}
.buttons a span:hover {
  border-radius: 50%;
}
.buttons button:hover {
  background-color: #2e2e2e;
}