:root {
  --background-color: #fff;
  --text-color: #333;
  --button-background-color: #005014;
  --button-text-color: #fff;

}



body {

  font-family: Arial, sans-serif;
  padding: 20px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 20px;
  margin: 15px;

  background-color: rgba(31, 129, 31, 0.575);
  border-radius: 30px;

}

.title {
  flex: 1;
  margin-right: 20px;
}

.buy-now-button {
  padding: 10px 20px;
  background-color: var(--button-background-color);
  color: var(--button-text-color);
  text-decoration: none;
  font-size: larger;
  border-radius: 10px;
  border-color: yellowgreen;
  position: relative;
 /* top: 20px;  */
 /* Adjust as needed */
  /* right: 5%;
  transform: translateX(-50%);
  z-index: 998; */
}
.buy-now-button2 {
  padding: 20px 40px; /* Increase padding for larger button */
  background-color: var(--button-background-color);
  color: var(--button-text-color);
  text-decoration: none;
  font-size: 24px; /* Change font size according to your preference */
  border-radius: 10px;
  border-color: yellowgreen;
  display: block; /* Make it a block element to center it */
  margin: 0 auto; /* Center the button horizontally */
}
.closebutton {
  padding: 10px 20px;
  background-color: var(--button-background-color);
  color: var(--button-text-color);
  text-decoration: none;
  font-size: larger;
  border-radius: 10px;
  border-color: yellowgreen;
 
}



.languagechange {
  padding: 10px 20px;
  background-color: rgb(226, 207, 207);
  color: var(--button-text-color);
  text-decoration: none;
  border-radius: 5px;
  margin: 10px;
}

.specification {
  border: 1px solid #ccc;
  border-radius: 12px;
  margin: 10px;
  padding: 20px;
  background-color: #94dfbd62;

}

.specification h2 {
  margin-top: 0;
}

.specification p {
  margin-bottom: 10px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 10px;
}

.image-grid img {
  width: 100%;
  height: auto;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Apply blur effect */
  background-color: rgba(255, 255, 255, 0.4);
  /* Adjust opacity for frosted effect */
  z-index: 999;
  border-radius: 20px;
}

.popup-content {

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 95%;
  background-color: rgba(255, 255, 255, 0.4);
  /* Adjust opacity for frosted effect */
  z-index: 999;

}

.popup-content button {
  position: absolute;
  top: 10px;
  right: 10px;
}

.popup iframe {
  width: 100%;
  height: 100%;
}









.openpopup {
  border-radius: 10px;
  border: none;
  background-color: rgba(18, 31, 0, 0.877);
  color: rgb(253, 253, 253);
  font-size: medium;
  margin: 5px;
}






/* popup text */
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

.fullscreenPopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Apply blur effect */
  background-color: rgba(219, 213, 213, 0.979);
  /* Adjust opacity for frosted effect */
  z-index: 999;
}


.popupContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.closePopup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 40px;
  cursor: pointer;
  color: rgb(31, 3, 3);
}











table {

  width: 100%;
}

th,
td {
  border: 1px solid black;
  border-radius: 10px;
  padding: 10px;
  text-align: center;

  /* Apply blur effect */
  background-color: rgba(162, 165, 162, 0.425);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 10);
  /* This line adds the box shadow */
}




#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #035322e8;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 5%;
}














.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}



.image-item {
  overflow: hidden;
  position: relative;
  border: 2px solid #ccc;
  /* Add border style */
  border-radius: 10px;
  /* Optional: add border radius for rounded corners */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  /* Add shadow effect */
  align-items: center;
  justify-content: center;
  display: flex;
}

.image-item img {

  /* Adjust initial size here */
  height: 80%;
  transition: transform 0.3s ease;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.image-item:nth-child(1) img {
  animation: zoom 3s infinite;
  /* Adjust animation duration here */
}

.image-item:nth-child(2) img {
  animation: zoom 3s infinite 0.5s;
  /* Delay the animation for 0.5s */
}

.image-item:nth-child(3) img {
  animation: zoom 3s infinite 1s;
  /* Delay the animation for 1s */
}

.image-item:nth-child(4) img {
  animation: zoom 3s infinite 1.5s;
  /* Delay the animation for 1.5s */
}

.image-item:nth-child(5) img {
  animation: zoom 3s infinite 2s;
  /* Delay the animation for 2s */
}

.image-item:nth-child(6) img {
  animation: zoom 3s infinite 2.5s;
  /* Delay the animation for 2.5s */
}











.footer {
  background-color: #04580fa9;
  color: #fff;

  display: block;
  margin: 0px;

  a {
    color: #ccc;
  }

  p {
    text-align: center;
  }
padding: 20px;
}

h4 {
  display: block;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  margin: 5px;
}







/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Footer styling */
footer {
  background-color: rgba(4, 41, 4, 0.993);
  color: #fff;
  padding: 20px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.footer-logo img {
  width: 100px;
}

.footer-links ul {
  list-style: none;
  display: flex;
}

.footer-links li {
  margin-right: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-social ul {
  list-style: none;
  display: flex;
}

.footer-social li {
  margin-right: 10px;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
}

.footer-info {
  text-align: center;
  margin-top: 20px;
}

.footer-info a {
  color: #fff;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}


#typing {min-height: 20%;
  font-size: xx-large;
  font-family: 'SolaimanLipi';
  
}

























