/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Times New Roman", Times, serif;
  /* font-weight: 400; */
}

.navbar {
  background-color: #077a6f;
  color: white;
  font-weight: bold;
}
.navbar a {
  color: whitesmoke;
}

.icon-bar {
  background-color: white;
}

/* first section */
.first-section {
  margin-top: 80px;
}
.verify-heading {
  color: #f44336;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
}
.verify-p {
  color: #918787;
  font-size: 17px;
  font-weight: 400;
}

.btn-check-now {
  padding: 5px;
  margin-top: 60px;
  /* border: 1px solid; */
  padding: 10px;
  box-shadow: 5px 10px 18px #c2bdbd;
  font-size: 20px;
  position: absolute;
  font-weight: 900;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.first-img {
  width: 70%;
  /* height: 50%; */
  animation: zoom 5s ease-in-out infinite;
  animation-delay: 30s;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .first-section {
    margin-top: 20px;
  }
  .verify-heading {
    font-size: 26px;
    font-weight: bolder;
  }

  .verify-p {
    font-size: 12px;
    text-align: justify;
    font-weight: bold;
  }
  .first-img {
    margin-top: 120px;
    width: 80%;
  }
}

.hero {
  background: url("hero-image.jpg") no-repeat center center/cover;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero h2 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
}

/* card */
.content {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.content .card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  margin: 0 10px;
  text-align: center;
}

.content .card img {
  max-width: 100%;
  border-radius: 10px;
}
.content .card p {
  font-size: 1.5em;
  margin-top: 10px;
}
.card-1 {
  color: #28a69b;
}
.card-2 {
  color: #ff6c6c;
}

.card-3 {
  color: #a6cfca;
}
.content .card a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #4caf50;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.content .card a:hover {
  background: #45a049;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }

  .content .card {
    margin-bottom: 20px;
  }

  nav {
    flex-direction: column;
  }

  nav a {
    padding: 10px;
  }
}

/* popup modal */

.modal1 {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  border-radius: 20px;
}

.modal-content1 {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
  text-align: center;
}

.close1 {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close1:hover,
.close1:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal1 h2 {
  margin-bottom: 15px;
}

.modal1 p {
  margin-bottom: 20px;
}

.modal1 button {
  padding: 10px 20px;
  background-color: #4caf50;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-left: 240px;
}

.modal1 button:hover {
  background-color: #45a049;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .modal1 button {
    margin-left: 140px;
  }
}

footer {
  background: #f44336;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
}
footer img {
  width: 5%;
  background-color: white;
}
footer p {
  font-size: 0.9em;
}
