@import url('https://fonts.googleapis.com/css2?family=Acme&family=Fjalla+One&family=Jost&family=Kalam:wght@300;400;700&family=Libre+Baskerville:wght@700&family=Manrope&family=Merriweather+Sans&family=Merriweather:wght@300&family=Montserrat:wght@200&family=Open+Sans:wght@300&family=Oswald:wght@200&family=PT+Sans&family=Playfair+Display&family=Rajdhani:wght@500&family=Roboto+Condensed:wght@300&family=Roboto:wght@100;400&family=Teko&family=Ubuntu:wght@300&display=swap');

html {}

body {
  margin: 0;
  padding: 0;
  height: 155vh;
  background: linear-gradient(to top, #cf7c49, #dfba79, #ab6235);
  background-repeat: no-repeat;
  background-size: contain;
  font-family: Arial, "Open Sans", sans-serif;
}

.navbar {
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  background-color: transparent;
  border-radius: 5px;
  position: fixed;
}


.title h1 {
  color: #6e3511;
  margin-right: 100px;
}

.company-logo {
  width: 10%;
  padding: 10px;
  margin-left: 10px;
}

.buttons {
  margin-top: 15px;
}

.buttons button {
  padding: 10px 15px;
  border-radius: 5px;
  background-color: white;
  cursor: pointer;
  border: none;

}

.buttons button:hover {
  background-color: whitesmoke;
}

/* hlhhkh */
.header-container {
  text-align: center;
}

.header-container .image {
  width: 20%;
  animation: spin 12s linear infinite;
  margin-top: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.header-container h1 {
  color: #6e3511;
  margin-top: -10px;
}

.header-container p {
  color: white;
  font-size: 22px;
  font-weight: bold;
}

.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* margin-top: 30px; */
  border-radius: 5px;
  width: 40%;
  margin: 0 auto;
}

.search-container h1 {
  color: white;
}

.search-input {
  padding: 15px;
  outline: none;
  border: none;
  flex: 1;
  border-radius: 5px 0 0 5px;
  background-color: rgba(255, 255, 255, 0.716);
  font-size: 15px;
}

.search-input::placeholder {
  color: black;
  font-family: "Open Sans", sans-serif;
  padding: 10px;
}

.search-button {
  height: 47.5px;
  width: 30px;
  background-color: rgba(255, 255, 255, 0.716);
  color: black;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.search-button :focus {
  outline: none;
}

/* loader styles */
#loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}


/* Style for the loader icon */
#loader::after {
  content: "";
  border-radius: 50%;
  aspect-ratio: 1;
  border: 4px solid;
  border-color: #000 #0000;
  width: 16px;
  height: 16px;
  position: absolute;
  margin-top: -8px;
  /* Half of the loader height */
  margin-left: -8px;
  /* Half of the loader width */
  animation: l1 1s infinite;
}

@keyframes l1 {
  to {
    transform: rotate(0.5turn);
  }
}

/* sample data */
.sample-data {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

/* Style for each sample item */
.sample-item {
  display: flex;
  background-color: rgba(255, 255, 255, 0.278);
  padding: 5px 10px;
  cursor: pointer;
  width: max-content;
  border-radius: 5px;
  margin-bottom: 10px;
  color: black;
  font-weight: bold;
}

.sample-item:hover {
  background-color: #dfba79;
}

/* Style for the second line of sample items */
.sample-line {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.card-container {
  display: flex;
  /* display: none; */
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
  margin-top: 30px;
}

.card {
  flex-basis: calc(30% - 40px);
  background-color: #ab623588;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  text-align: center;
  overflow-y: auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  position: relative;
  height: 280px;
}

.card #card1::before {
  content: "";
  background-image: url("../static/assets/cross\ \(2\).png");
  /* Replace with your image path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: -1;
  /* Place the background behind the card content */
}

#card2::before {
  content: "";
  background-image: url("../static/assets/om.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: -1;
  /* Place the background behind the card content */
}

#card3::before {
  content: "";
  background-image: url("../static/assets/ramadan.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: -1;
  /* Place the background behind the card content */
}

.content {
  border-right: 0.15em solid black;
  animation: blink 1s linear;
}

@keyframes blink {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-content p {
  overflow: hidden;
  /* border-right: 0.15em solid black;   */
  white-space: pre-line;
  margin: 0;
  margin-top: -50px;
  text-align: left;
  line-height: 2em;
  animation: typing 2.5s steps(40, end), blink-caret 0.75s step-end infinite;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: black;
  }
}

/* .card:hover {
  transform: scale(1.1);
  z-index: 1;
} */

.card-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Fjalla One', sans-serif;
  border: 1px solid black;
  border-radius: 5px;
  padding: 10px;
}

.card-heading svg {
  width: 30px;
  height: auto;
  margin-left: 10px;
  fill: black;
}

::-webkit-scrollbar {
  width: 5px;
  border-radius: 12px;
}

::-webkit-scrollbar-track {
  background: #dfba79;
  border-radius: 12px;
}

::-webkit-scrollbar-thumb {
  background: #bb9c67;
}

::-webkit-scrollbar-thumb:hover {
  background: #ba7e71;
}

@media (max-width: 480px) {
  .header-container img {
    width: 40%;
  }

  .search-container {
    margin-left: 100px;
    width: 200px;
  }

  .card {
    flex-basis: calc(44% - 40px);
    height: 200px;
  }
}

/* popup form styles */
/* Popup container styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  overflow-y: auto;
}

/* Popup content styles */
.popup-content {
  background-color: #fff;
  margin: 2% auto;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 850px;
}

.close {
  position: relative;
  top: -10px;
  left: 820px;
  font-size: 20px;
  cursor: pointer;
  color: #999;
  font-size: 30px;
}

.close:hover {
  color: #000;
}

/* Form styles (you can customize these further) */
#contactForm {
  display: grid;
  gap: 15px;
  margin-left: 50px;
  margin-top: 20px;
}

.flex {
  display: flex;
  width: 93%;
  gap: 30px;
}

#input-text,
input[type="email"] {
  width: 90%;
  padding: 8px;
  border: none;
  border-bottom: 1px solid #ccc;
}

#input-text,
input[type="email"]:focus {
  outline: none;
}

input::placeholder {
  /* color: #04AA6D;  */
}

label {
  font-size: 12px;
}

select {
  height: 40px;
}

option {
  border-radius: 0px;
}

textarea {
  resize: none;
  height: 100px;
  overflow-y: auto;
  width: 91%;
  padding: 5px;
  border-radius: 5px;
}

textarea:focus {
  outline: none;
}

.submit-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 11px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  width: 90%;
}

.submit-btn:hover {
  background-color: rgb(37, 36, 36);
}

.container {
  display: block;
  position: relative;
  padding-left: 28px;
  padding-right: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container a {
  text-decoration: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

.container:hover input~.checkmark {
  background-color: #ccc;
}

.container input:checked~.checkmark {
  background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked~.checkmark:after {
  display: block;
}

.container .checkmark:after {
  left: 7px;
  top: 2px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.scribble {
  margin-top: -12px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: black;
  bottom: 0px;
  margin: 0rem 2.5rem;
  margin-top: 8%;
  font-size: 13px;
  padding: 5px 5px;
  letter-spacing: 0.5px;
}

footer a {
  text-decoration: none;
  color: rgb(4, 79, 253);
}

footer .copyright {
  font-weight: 600;
  text-align: end;
}

footer .policy {
  text-align: justify;
  width: 70%;
  line-height: 1.4rem;
  font-weight: bold;
}