/* General Styles */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #22255a;
  color: white;
  text-align: center;
}

/* Navbar - Header */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 50px;
  background-color: #2d336b;
  position: sticky; /* Make the navbar sticky */
  top: 0; /* Stick to the top of the viewport */
  z-index: 1000; /* Ensure it stays above other content */
}

#header-copy {
  user-select: none; /* Prevent text selection */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
}

.logo {
  display: flex;
  align-items: center;
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.logo img {
  width: 80px;
  margin-right: 10px;
  display: block;
  margin: 0 auto;
}

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

.nav-links li {
  display: inline;
}

.nav-links a {
  text-decoration: none;
  padding: 8px 25px;
  border-radius: 25px;
  color: white;
  border: 1px solid white;
  transition: 0.3s;
}

.nav-links a:hover {
  background-color: white;
  color: #22255a;
}

/* HAMBURGER MENU */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger-menu .bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0;
}
.hamburger-menu:active div {
  background-color: #f1d100;
}

@media (max-width: 768px) {
  .navbar {
    padding: 20px 10px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    background-color: #2d336b;
    top: 55%;
    right: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    padding: 20px 0;
    z-index: 6;
  }
  .nav-links a {
    border: none;
  }

  .nav-links.active {
    display: flex;
  }
  .nav-links:active {
    color: #ffd700;
  }

  .hamburger-menu {
    display: flex;
    margin-right: 20px;
  }
}

/* Hero Section */
.hero-section {
  background: url("../img/banner.png") no-repeat center center/cover;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-section .overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  width: 100%;
}

.hero-section h1 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
}

.hero-section p {
  font-size: 18px;
}

/* About Section */
.about-section {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  margin: 40px auto;
  width: 80%;
}

.about-section h2 {
  color: #22255a;
  font-size: 24px;
  font-weight: bold;
}

.about-section p {
  font-size: 16px;
  line-height: 1.5;
  color: white;
}

.about-content {
  background-color: #38408a;
  color: #22255a;
  padding: 15px;
  border-radius: 10px;
}

.about-content p {
  font-size: 1em;
  line-height: 1.5;
}

.about-content .btn {
  background-color: #4d82b7;
  color: white;
  border: none;
  display: inline-block;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}

.about-content .btn:hover {
  background-color: #22255a;
}

@media (max-width: 768px) {
  .about-section {
    margin: 20px auto;
  }
  .about-section p {
    font-size: 12px;
  }
  .team-overlay p {
    font-size: 12px;
    padding: 0 10px;
  }
  .team-image {
    height: 400px;
  }
}

/* Team Section */
.team-section {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  margin: 20px auto;
  width: 80%;
}

.team-section h2 {
  color: black;
  font-size: 24px;
  font-weight: bold;
}

.team-image {
  position: relative;
  width: 100%;
  height: auto;
}

.team-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 98.4%;
  height: 94.5%;
  background: rgba(0, 0, 0, 0.63);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  font-size: 24px;
  border-radius: 10px;
}
.team-content p {
  line-height: 2;
  padding: 0 50px;
}
@media (max-width: 768px) {
  .team-overlay p {
    font-size: 12px;
    padding: 0 10px;
  }
  .team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 94%;
    height: 92%;
  }
  .team-image img {
    position: relative;
    width: 100%;
    height: 300px;
  }
}

.services-section {
  background-color: white;
  padding: 20px;
  margin: 20px auto;
  width: 85%;
}

.services-section-img {
  background-color: white;
  padding: 20px;
  margin: 20px auto;
  border-radius: 25px;
  width: 90%;
}

.services-section h2,
h3 {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.services-overlay {
  top: 0;
  left: 0;
  width: 98.4%;
  height: 94.5%;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  font-size: 24px;
  border-radius: 10px;
  font-weight: bold;
}

.services-image {
  position: relative;
  width: 100%;
  height: auto;
}

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

.services-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  margin: 0 auto;
}

/* Service Box */
.service {
  background-color: #22255a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

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

.service img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-content {
  background-color: #22255a;
  color: white;
  padding: 15px;
  min-height: 150px;
  margin-top: -6px;
}

.service-content h3 {
  font-size: 18px;
  margin: 0 0 10px 0;
}

.service-content p {
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .services-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    transition: none;
    padding: 0;
    margin: 0;
  }
  .service {
    transition: none;
  }
  .service:hover {
    transform: translateY(0);
  }
  .service img {
    height: 150px;
  }
  .service-content h3 {
    font-size: 14px;
    margin: 0 0 10px 0;
  }

  .service-content p {
    font-size: 12px;
  }
}

/* about us */

.aboutus-container {
  background-color: white;
  border-radius: 50px;
  padding-bottom: 150px;
  height: 90vh;
}

#aboutus-h1 {
  font-size: 34px;
  padding-top: 25px;
  padding-bottom: 7px;
  color: black;
}

.aboutus-img {
  background: url("../img/aboutbanner1.png") no-repeat center center/cover;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  object-fit: cover;
}

.aboutus-img-overlay {
  text-align: left;
  color: black;
  position: absolute; /* Ensure the overlay is positioned absolutely */
  left: 0; /* Align to the left */
  padding: 35px; /* Add padding to avoid touching the edge */
}

#aboutus-h2 {
  width: 40%;
  font-size: 34px;
  line-height: 1.5;
  font-weight: 200;
}

@media (max-width: 768px) {
  #aboutus-h2 {
    width: 100%;
    height: 354px;
    padding: 40px 20px;
    font-size: 17px;
    text-align: center;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5);
    line-height: 1.2;
  }
  .aboutus-img {
    height: 354px;
  }
  .aboutus-img-overlay {
    padding: 0;
  }
  .aboutus-container {
    margin: 40px 0;
    width: 100%;
    height: 53vh;
    padding-bottom: 35px;
    border-radius: 25px;
  }
  #aboutus-h1 {
    margin: 0;
  }
}

/* why us */
.whyus-container {
  background-color: white;
  border-radius: 50px;
  padding-bottom: 50px;
  height: 650px;
  width: 95%;
  margin: 0 auto;
}

.whyus-container h2 {
  color: black;
  font-size: 35px;
  padding: 50px 0;
}

#whyus-h1 {
  font-size: 34px;
  padding-top: 25px;
  padding-bottom: 7px;
  color: black;
  font-weight: normal;
}

/* Features Container */
.features-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: auto;
}

/* Feature Box */
.feature {
  text-align: center;
  width: 18%; /* Adjust width to fit 5 features */
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  min-height: 250px; /* Ensure consistent height */
}

.feature img {
  width: 140px; /* Adjust icon size */
  height: 140px; /* Set a fixed height for the image */
  margin-bottom: 15px;
  flex-shrink: 0; /* Prevent image from shrinking */
}

.feature h3 {
  font-size: 24px;
  margin-top: 40px;
  font-weight: bold;
  margin-bottom: 10px;
  color: black;
}

#CtE {
  font-size: 23px;
}

.feature p {
  font-size: 24px;
  line-height: 1.5;
  color: black;
  text-align: center; /* Ensure text is centered */
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .whyus-container {
    width: 90%;
    height: 45%;
    padding: 0;
  }

  .whyus-container h2 {
    color: black;
    margin: 0;
    padding: 15px 0 30px;
  }

  #whyus-h1 {
    font-size: 24px;
    padding-top: 5px;
    padding-bottom: 7px;
  }

  .features-container {
    justify-content: start;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    gap: 10px;
    padding: 15px;
  }
  .feature {
    width: 48%;
  }

  .feature img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }

  .feature h3 {
    font-size: 16px;
    margin: 0;
  }

  #CtE {
    font-size: 18px;
  }

  .feature p {
    font-size: 15px;
    font-weight: 100;
  }
  .features-5 {
    position: absolute;
    left: 50%;
    padding-left: 50%;
  }
}

/* Client Testimony */
/* .client-container {
  background-color: white;
  padding: 20px;
  border-radius: 25px;
  margin: 20px auto;
  width: 70%;
  color: black;
} */

.client-container h3 {
  color: black;
  font-size: 36px;
  text-align: center;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  padding-left: 50px;
  padding-top: 10px;
}

.testimonials {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 19px;
  flex-wrap: wrap;
}

.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 380px;
  background: white;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Bottom section with author name #12283a */
.author {
  background: #1a3950;
  color: white;
  font-weight: bold;
  padding: 10px;
  margin-top: 10px;
  text-align: center;
}

/* Hover effect */
.testimonial:hover {
  transform: scale(1.05);
}

.testimonials:hover .testimonial:not(:hover) {
  filter: grayscale(100%);
}

@media (max-width: 768px) {
  .client-container {
    width: 90%;
  }

  .client-container h3 {
    font-size: 25px;
    text-align: center;
    padding: 0;
  }
  .testimonials {
    gap: 20px;
  }
  .testimonial {
    padding: 10px 20px;
    height: 280px;
  }

  .testimonial p {
    font-size: 13px;
  }
}

/* Who we are content */
.who-we-are-container {
  background-color: white;
  border-radius: 50px;
  padding: 40px 0;
  height: 650px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.who-we-are {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}
#whoweimg2 {
  display: none;
}

.who-we-are-image img {
  width: 500px;
  height: auto;
  display: block;
  border-radius: 10px;
}

.who-we-are-content {
  max-width: 500px;
}

.who-we-are-content h2 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  color: black;
  border-bottom: 2px solid #000; /* Thin underline */
  padding-bottom: 20px;
  text-align: left;
  font-weight: lighter;
}

.who-we-are-content p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: black;
  text-align: left;
}

@media (max-width: 768px) {
  .who-we-are {
    padding: 0;
    height: 100%;
    margin: 50px 0;
  }
  .who-we-are-container {
    flex-direction: column;
    padding: 0 10px;
    width: 90%;
  }

  .who-we-are-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .who-we-are-content h2 {
    font-size: 20px;
  }

  #whoweimg1 {
    display: none;
  }
  #whoweimg2 {
    display: block;
    width: 100%;
    height: 30%;
    object-fit: cover;
    aspect-ratio: 1/1;
  }
  .who-we-are-content p {
    font-size: 15px;
  }
}

/* About - Services */
/* 5 pictures */
.servicees-info {
  padding: 50px 20px;
  background-color: white;
  border-radius: 25px;
  margin: 20px auto;
  width: 95%;
  color: black;
}

.servicees-info h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 40px;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 15px;
  line-height: 1.4;
  max-width: 80%;
}

.servicees-info-container {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
  margin: auto;
  gap: 40px 70px;
}

.servicee-info-item {
  text-align: center;
  margin-top: auto;
}

.servicee-info-item img {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 15px; /* Center image and add space below */
}

.servicee-info-item p {
  font-size: 1.1rem;
  font-weight: 600;
  max-width: 180px;
  margin-top: 50px;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 768px) {
  .servicees-info h2 {
    font-size: 20px;
    margin: 10px 0;
  }

  .servicees-info-container {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    gap: 0;
  }

  .servicee-info-item {
    width: 48%;
    gap: 20px 10px;
  }

  .servicee-info-item img {
    width: 60px;
    padding: 0;
  }
  .servicees-info {
    padding: 10px;
  }
}

/* Success Stories Section */
.success-stories {
  padding: 50px 20px;
  background-color: white;
  border-radius: 25px;
  color: #000;
  max-width: 95%;
  margin: auto;
}

.success-stories h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
  padding-left: 20px;
  border-bottom: 2px solid black;
  display: inline-block;
}

.stories-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.stories-container img {
  width: 23%;
  max-width: 300px;
  border-radius: 10px;
  border: 1px solid black;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .success-stories h2 {
    font-size: 25px;
  }
  .stories-container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
  }

  .stories-container img {
    width: 43%;

    max-width: none;
  }
}

.test-div {
  background-color: white;
  padding: 20px;
  border-radius: 25px;
  margin: 20px auto;
  width: 40%;
  color: black;
}

.test-div h3 {
  color:black;
}

.test-div h2 {
  font-size:30px;
}

@media (max-width: 768px) {
  .test-div {
    width: 90%;
  }

  .client-vid{
    width: 100%;
    height: 100%;
  }
}


/* Packages Section Styling */
.packages {
  padding: 40px 20px;
  background-color: white;
  border-radius: 50px;
  padding-bottom: 50px;
  width: 80%;
  margin: 50px auto;
}

.packages h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: black;
  text-align: left;
  padding-left: 30px;
}

/* Package Container */
.package-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin: auto;
}

/* Package Card */
.package {
  background-color: #0d3b5e;
  color: white;
  border-radius: 10px;
  overflow: hidden;
  width: 350px;
  height: 850px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Package Image */
.package img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Package Content */
.package-content {
  padding: 20px;
  position: relative;
  height: 61%;
}

.package-content h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.package-content ul {
  list-style-type: none;
  padding: 0;
}

.package-content ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}
.package-content a {
  position: absolute;
  bottom: 0;
  width: 60%;
  left: 50%;
  transform: translateX(-50%);
}

/* Bullet Points */
.package-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f4b400;
  font-size: 1.2rem;
}

/* Button */
.btn {
  display: block;
  text-align: center;
  background-color: #4d82b7;
  color: black;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 15px;
  margin-top: 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #d99900;
}

/* Responsive */
@media (max-width: 768px) {
  .packages {
    width: 95%;
    margin: 30px 10px;
  }
  .packages h1 {
    font-size: 25px;
    text-align: center;
    padding: 0;
  }
  #packagecontainer1 {
    height: 730px;
  }
  #package1 {
    height: 55%;
  }
  .package-content h2 {
    font-size: 18px;
  }
  .package-container {
    align-items: center;
  }
}

/* Footer Styles */

@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,300,700);

.footer-distributed {
  background: #2d336b;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  font: bold 16px sans-serif;
  text-align: left;
  padding: 50px 60px 40px;
  overflow: hidden;
}

/* Footer left */

.footer-distributed .footer-left {
  float: left;
}

.footer-distributed .footer-left h3 {
  font-size: 1.8rem;
  margin: 0;
}

.logo-container {
  display: flex;
  align-items: center; /* Aligns items vertically */
  gap: 10px; /* Adds space between image and text */
}

.logo-container img {
  height: 60px; /* Adjust size as needed */
  width: auto;
}

/* The company logo */

/* .footer-distributed h3{
	color:  #ffffff;
	font: normal 36px 'Roboto', cursive;
	margin: 0 0 10px;
}

.footer-distributed h3 span{
	color:  #5383d3;
} */

/* Footer links */

.footer-distributed .footer-links {
  color: #ffffff;
  margin: 0 0 15px;
  padding-top: 10px;
}

.footer-distributed .footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
  margin-right: 5px;
}

.footer-distributed .footer-company-name,
.copyright2 {
  color: #8f9296;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}
.footer-distributed .copyright2 {
  display: none;
}

/* Footer social icons */

.footer-distributed .footer-icons {
  margin-top: 40px;
}

.footer-distributed .footer-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #33383b;
  border-radius: 2px;

  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;

  margin-right: 3px;
  margin-bottom: 5px;
}

/* Footer Right */

.footer-distributed .footer-right {
  float: right;
}

.footer-distributed .footer-right p {
  display: inline-block;
  vertical-align: top;
  margin: 15px 42px 0 0;
  color: #ffffff;
}

/* The contact form */

.footer-distributed form {
  display: inline-block;
}

.footer-distributed form input,
.footer-distributed form textarea {
  display: block;
  border-radius: 3px;
  box-sizing: border-box;
  background-color: #1f2022;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.1);
  border: none;
  resize: none;

  font: inherit;
  font-size: 14px;
  font-weight: normal;
  color: #d1d2d2;

  width: 400px;
  padding: 18px;
}

.footer-distributed ::-webkit-input-placeholder {
  color: #5c666b;
}

.footer-distributed ::-moz-placeholder {
  color: #5c666b;
  opacity: 1;
}

.footer-distributed :-ms-input-placeholder {
  color: #5c666b;
}

.footer-distributed form input {
  height: 55px;
  margin-bottom: 15px;
}

.footer-distributed form textarea {
  height: 100px;
  margin-bottom: 20px;
}

.footer-distributed form button {
  border-radius: 3px;
  background-color: white;
  color: black;
  border: 0;
  padding: 15px 50px;
  font-weight: bold;
  float: right;
}

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 1000px) {
  .footer-distributed {
    font: bold 14px sans-serif;
  }

  .footer-distributed .footer-company-name {
    font-size: 12px;
  }

  .footer-distributed form input,
  .footer-distributed form textarea {
    width: 250px;
  }

  .footer-distributed form button {
    padding: 10px 35px;
  }
  .footer-distributed .footer-company-name {
    display: none;
  }
  .footer-distributed .copyright2 {
    display: block;
    margin: 40px 15px;
    line-height: 0.5;
    font-size: 12px;
  }
}

@media (max-width: 800px) {
  .footer-distributed {
    padding: 30px;
  }

  .footer-distributed .footer-left,
  .footer-distributed .footer-right {
    float: none;
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-distributed .footer-left {
    margin-bottom: 10px;
  }

  .footer-distributed form {
    margin-top: 30px;
  }

  .footer-distributed form {
    display: block;
  }

  .footer-distributed form button {
    float: none;
  }
  .footer-distributed .footer-company-name {
    display: none;
  }
  .footer-distributed .copyright2 {
    display: block;
    margin: 40px 15px;
    line-height: 0.5;
    font-size: 12px;
  }
}

/* 0------------------------------ */
/* Reseting */
.client-container {
  background-color: #FAFBF8;
  padding: 20px;
  border-radius: 25px;
  margin: 20px auto;
  width: 70%;
  color: black;
} 

.container {
    margin-top: 80px;
}

.container .col-lg-4 {
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
}

.card {
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    perspective: 500px;
    border: none;
    background-color: inherit;
    color: black;
    
}

.card .face {
    position: absolute;
    gap: 8px;
    color: black;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.06);
    transform-style: preserve-3d;
    transition: 0.5s;
    backface-visibility: hidden;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    /* border-right: 1px solid #999;
border-bottom: 1px solid #999; */
}

.card .face.front-face,
.card .face.back-face {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card .face.front-face .profile {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.card .face.front-face .name {
    letter-spacing: 2px;
}

.card .face.front-face .designation {
    font-size: 0.8rem;
    color: black;
    letter-spacing: 0.8px;
}

.card:hover .face.front-face {
    transform: rotateY(180deg);
}

.card .face.back-face {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    transform: rotateY(180deg);
    padding: 20px 30px;
    text-align: center;
    user-select: none;
}

.card .face.back-face .fa-quote-left {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 1.2rem;
    color: black;
}

.card .face.back-face .fa-quote-right {
    position: absolute;
    bottom: 35px;
    right: 25px;
    font-size: 1.2rem;
    color:black;
}

.card:hover .face.back-face {
    transform: rotateY(360deg);
}

@media(max-width: 991.5px) {
    .col-lg-4 {
        margin-top: 40px;
        margin-bottom: 20px;
    }
}