@import url("https://fonts.googleapis.com/css2?family=Lora:wght@300;400;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #f1f1f1;
  height: 100vh;
}

/* Logo*/
.navbar-brand h1 {
  margin-left: 10px;
  margin-bottom: 0;
  font-size: 1.5rem;
  color: black;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: black;
}

.navbar-nav .nav-link:hover {
  color: #747679;
}

/* Welcome Section */
.welcome-section {
  background-color: #c6d5d4;
  padding: 50px 0;
  text-align: center;
}

.company-logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.welcome-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin: 20px 0;
}

.welcome-text p {
  font-size: 1.5rem;
  margin-top: 10px;
}

/* About Us Section */
.about {
  padding: 60px 0;
  background-color: #ffffff;
}

.about h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
}

.about h4 {
  font-size: 1.5rem;
  color: #666;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.3;
}

.about .mission {
  padding: 60px 0;
}
.about .mission .mission-content {
  background-color: #c6d5d4;
  border-radius: 30px;
  padding: 20px 10px;
  max-width: 300px;
  margin: 0 auto;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  margin-right: 30px;
}

.navbar .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.help-container {
  text-align: center;
  background-color: #ffffff;
  padding: 40px 0;
}

.help-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}

.card {
  position: relative;
  margin: 10px;
  overflow: hidden;
  text-align: center;
  color: #070707;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  border-color: #b1abab;
}

.card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  border-color: #070707;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #868080;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.card:hover .card-overlay {
  opacity: 1;
}

.card-text {
  z-index: 1;
}

.director-heading {
  font-size: 2rem;
  font-weight: 600;
  padding: 20px;
}

.flip-card {
  -webkit-perspective: 1000px;
          perspective: 1000px; /* Perspective for the 3D effect */
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 300px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border: 1px solid #ddd;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.flip-card-front {
  background-color: #fff;
}

.flip-card-back {
  background-color: #f8f9fa;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}

.flip-card-back h5, .flip-card-back p {
  margin: 0;
  padding: 5px;
}

/*product*/
.section .product {
  background-color: #ffffff;
}

.image-container img {
  border: 2px solid black;
  cursor: pointer;
}

.image-row {
  margin-bottom: 40px;
}

.product-heading {
  margin-bottom: 40px;
}

.image-caption {
  margin-top: 10px;
}

#client {
  padding: 60px 0;
  background-color: #ffffff;
}

.client h1 {
  font-size: 2rem;
  font-weight: 600;
}

.client-image {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 4px solid #070707;
  cursor: pointer;
  -webkit-transition: border-color 0.2s, -webkit-transform 0.2s;
  transition: border-color 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, border-color 0.2s;
  transition: transform 0.2s, border-color 0.2s, -webkit-transform 0.2s;
}

.client-image:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  border-color: #969191;
}

.modal-content img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.modal-body {
  text-align: center;
}

.section.contact {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.contact-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #0a0a0a;
  border: none;
  border-radius: 5px;
  text-decoration: none;
}

.contact-btn:hover {
  background-color: #abadaf;
}

.contact-details {
  margin-top: 20px;
}

.contact-details p {
  margin: 10px 0;
  font-size: 16px;
  color: #555;
  text-align: center;
}

.btn-primary {
  background-color: #000;
  border-color: #000;
  color: #fff;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
  background-color: #797474;
  color: #000;
  border-color: #000;
}