*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cookie', cursive;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #E9CAD6;
}

nav {
  background-color: white;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  padding: 20px 50px;
  position: fixed;
  top: 0;
  /* position the navbar at the top of the screen */
  width: 100%;
  transition: var(--transition-1);
  position: fixed;
  z-index: 2;

}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

ul {
  list-style: none;
  display: flex;
}

li {
  margin: 0 20px;
}

a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 16px;
}

a:hover {
  color: #58CBB8;
}

#home {
  background-image: url('./assests/poster.png');
  background-size: cover;
  background-position: center;
  transition: height 0.5s ease-in-out;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

section {
  padding: 50px;
}

.home-smaller {
  height: 50vh;
}

.container {
  max-width: 960px;
  padding: 0 15px;
}

.col-md-6 {
  width: 50%;
  padding: 0 15px;
}

img {
  max-width: 100%;
  height: auto;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-right: 20px;
}

nav ul li a {
  transition: all 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  color: #F7829B;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
  color: #58CBB8;
}

#home {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.home {
  /* height: 100vh; */
  background-image: url("./assests/bg.jpg");

}

.home-content {
  text-align: center;
  color: white;
  font-family: "Poppins", sans-serif;
}

.home h1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.home p {
  font-size: 24px;
  margin-bottom: 40px;
}

.home button {
  padding: 10px 30px;
  border: none;
  border-radius: 20px;
  background-color: #00bfff;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home button:hover {
  background-color: #0099cc;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 50px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}


.bullet-list {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.bullet-list i {
  margin-right: 10px;
  color: #00bfff;
}

.bullet-list p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: black;
  margin-bottom: 0;
  line-height: 1.5;
}

.font-awesome-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

/* description section */
/* .description {
  background-color: #f5f5f5;
  padding: 50px;
  box-sizing: border-box;
  overflow: hidden;

} */


.description-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #E9CAD6;
}

.description-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 0 20px;
  box-sizing: border-box;
}

.description-left img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.description-left p {
  text-align: justify;
  font-size: 1.2rem;
  color: #444;
}

.description-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 0 20px;
  box-sizing: border-box;
}

.description-right img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

.description-right p {
  text-align: justify;
  font-size: 1.2rem;
  color: #444;
}




/* case section */
/* #case {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  margin-top: 100px;
} */

/* .card {
  width: 400px;
  height: 500px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  flex-basis: calc(50% - 20px);
} */

/* .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
} */
#case {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #E9CAD6;
  margin-top: 100px;
  height: 100vh;
  margin-top: 100px;
}

.card {
  flex: 1 0 400px;
  max-width: 100%;
  width: 300px;
  height: 400px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  flex-basis: calc(50% - 20px);
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.row {
  flex-wrap: wrap;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}

.card h3 {
  margin: 20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.card button {
  margin-bottom: 20px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #f7829b;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.card button:hover {
  background-color: #58CBB8;
}

/* modal */
.modal-dialog {
  max-width: 1200px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.modal-title {
  font-size: 24px;
  font-weight: bold;
}

.modal-body p {
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;

}

.modal-body {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 20px;
  margin-right: -20px;
}

.modal-body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.modal-body::-webkit-scrollbar-thumb {
  background-color: #F7829B;
  border-radius: 4px;
}

.modal-body::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 5px;
  border: 1px solid #fff;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}




.modal-body p {
  margin-bottom: 0%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-footer button {
  display: block;
  margin: 0 auto;
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 30px;
  border: 1px solid #888;
  /* width: 100%; */
  border-radius: 10px;
  overflow-y: auto;
  width: 1500px;
  max-height: 100%;
}


.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

/* modal 2 */
#card2-modal p {
  margin-bottom: 2%;
}

table {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  font-size: small;
}

th,
td {
  text-align: left;
  padding: 8px;
  /* border-bottom: 1px solid #ddd; */
    border: 2px solid #F7829B;
}

th {
  background-color: #346b62;
  color: white;
}

img {
  max-width: 100%;
  height: auto;
}
table img {
  width: 300px;
  height: 200px;
}

/* modal 3 */
#card3-modal p {
  margin-bottom: 2%;
}

.close {
  color: #F7829B;
  float: right;
  font-size: 20px;
  font-weight: bold;
  border: none;
  outline: none;
  line-height: 1;
  height: 40px;
  width: 40px;
  margin: -10px -10px 0 0;
  text-align: center;
  background-color: transparent;
}

.close:hover,
.close:focus {
  color: #58CBB8;
  text-decoration: none;
  cursor: pointer;
}

/* modal close button */
.btn-secondary {
  background-color: #f7829b;
  border-color: transparent;
  color: #fff;
  font-weight: 600;
  text-shadow: none;
  box-shadow: none;
  border-radius: 25px;
  font-size: 15px;
  height: 25px;
  width: 100px;
  margin: -10px -10px 0;
  text-align: center;

}

.btn-secondary:hover {
  background-color: #58CBB8;
  border-color: transparent;
  color: #fff;
  text-decoration: none;
}

.btn-secondary:focus {
  box-shadow: none;
  outline: none;
}

.statistics {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#stats-card {
  width: 700%;
  height: 300px;
  background-color: #F7829B;
  display: flex;
  align-items: center;
  justify-content: center;
}

#stats-card1 {
  width: 700%;
  height: 300px;
  background-color: #F7829B;
  display: flex;
  align-items: center;
  justify-content: center;
}

.statistics .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./assests/blur-bg.png");
  background-size: cover;
  filter: blur(10px);
  z-index: -1;
}

.statistics .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 5%;
  height: 100%;
}



.statistics .card {
  width: 20%;
  height: 20%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.stats-content img {
  width: 30%;
  height: auto;
  margin-right: 20px;
}

.statistics .card h2 {
  margin-bottom: 10px;
}

/* .stats-content {
  display: flex;
  flex-direction: column;
  align-items: center;
} */

@media screen and (max-width: 992px) {
  .statistics .container {
    flex-wrap: wrap;
  }

  .statistics .card {
    width: 45%;
    margin-bottom: 30px;
  }
}



/* comments */
#comments {
  background-color: #f8f8f8;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#comments h2 {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 700;
  color: #1d1d1d;
}

.com-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

.com-card {
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}

.com-card .com-content {
  margin-bottom: 10px;
}

.com-card .com-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 14px;
  color: #6c757d;
}

.com-card .com-info .com-author {
  font-weight: 600;
  color: #000000;
}

.com-card .com-info .com-date {
  font-weight: 400;
}

.form-group {
  width: 100%;
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  height: 50px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #ffffff;
  font-size: 18px;
}

input:focus {
  outline: 2px solid #58CBB8;
}

textarea:focus {
  outline: 2px solid #58CBB8;
}

#submit-btn {
  display: block;
  margin: 0 auto;
  width: 150px;
  height: 50px;
  border: none;
  border-radius: 25px;
  background-color: #f15b6c;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

#submit-btn:hover {
  background-color: #58CBB8;
}

label {
  color: #58CBB8;
  font-weight: bold;
}

/* contact */
#contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
}

.contact-card {
  width: 90%;
  max-width: 600px;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.contact-card h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.contact-card p {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;
}

.contact-card .contact-info {
  display: block;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 30px;
}

.contact-card .contact-info i {
  font-size: 24px;
  margin-right: 10px;
}


.contact-card form {
  display: flex;
  flex-direction: column;
}

.contact-card label {
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-card input,
.contact-card textarea {
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  box-shadow: 0 0 5px #f15b6c;
}

.contact-card input[type="submit"] {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #f15b6c;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-card input[type="submit"]:hover {
  background-color: #d63a4a;
}

#references {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
}

.ref-card {
  width: 90%;
  max-width: 600px;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}