/* Remove default margin & padding */
body,
ul {
  margin: 0;
  padding: 0;
}

/* Remove bullet points from lists */
ul {
  list-style: none;
}

/* ================= FIRST ROW: Contact Info ================= */
.contact-nav {
  background-color: grey;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 8px 0;
}

.contact-nav ul {
  display: flex;
  gap: 20px;
}

.contact-nav li {
  display: flex;
  align-items: center;
}

.contact-nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.contact-nav i {
  margin-right: 5px;
}

/* ================= SECOND ROW: Navbar ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 10px 20px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo Styling */
.logoimg {
  max-width: 300px !important; /* Adjust the size */
  height: auto !important;
}
/* Logo on the left */
.logo-container {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* Menu items on the right */
.menu-container {
  flex-grow: 2;
  display: flex;
  justify-content: flex-end;
}

.menu-container ul {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

/* Navbar links */
.navbar-nav .nav-item a {
  color: black;
  font-size: 16px;
  text-decoration: none;
  padding: 10px 12px;
  transition: all 0.3s ease-in-out;
}

/* Hover effect */
.navbar-nav .nav-item a:hover {
  background-color: lightgray;
  border-radius: 5px;
}
/* Adjust carousel styling */
.carousel-inner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Ensure content has spacing */
.content {
  margin-top: 150px;
}

/* Button container */
.button-container {
  display: flex;
  justify-content: center;
}

.button-container input {
  padding: 10px;
  background-color: black;
  color: white;
  border-radius: 5px;
  font-size: 20px;
}

/* Center headings */
.content h1,
.content h2 {
  text-align: center;
  font-size: 60px;
}

/* Paragraph styling */
.content-para p {
  text-align: justify;
  padding-left: 200px;
  padding-right: 200px;
  font-size: large;
}

/* Video container */
.video-container {
  position: relative;
  padding-bottom: 40%;
  height: 0;
  margin-top: 150px;
  overflow: hidden;
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Products section */
.products {
  padding: 30px;
  text-align: center;
  margin-top: 100px;
  background-color: gray;
  margin-left: 25%;
  margin-right: 25%;
}

.products h2,
.products h3 {
  font-weight: bolder;
}

/* Ensure only one product card shows at a time */
.card-carousel-container {
  max-width: 320px;
  margin: 0 auto;
}

.product-features {
  font-size: 20px;
  list-style: none;
}

/* Product lineup */
.product-lineup {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 150px;
  margin-top: 50px;
  background-color: transparent;
}

.product-lineup h2 {
  font-weight: bolder;
}

/* Product row */
.product-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

/* Product card styling */
.card {
  width: 100%;
  max-width: 250px;
  text-align: center;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

/* Ensure images fit inside cards */
.card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

/* Carousel */
.carousel {
  padding-bottom: 50px;
}

.carousel-control {
  width: 5%;
}

.carousel-indicators {
  position: absolute;
  bottom: -50px !important;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  background-color: gray;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: black;
}

/* Testimony section */
.testimony {
  padding: 30px;
}

.testimony h2 {
  font-weight: bolder;
}

/* Bars container */
.bars-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 50px;
  position: relative;
}

.text-bar {
  background-color: rgba(172, 255, 47, 0.772);
  border: 1px solid #ccc;
  border-radius: 5px;
  position: relative;
}

.text-content {
  display: none;
  padding: 10px;
  background-color: #e1e1e1;
  border-top: 1px solid #ccc;
}

.text-bar.active .text-content {
  display: block;
}

.text-bar.active .arrow {
  transform: rotate(180deg);
}

/* Footer */
footer {
  background-color: rgb(34, 34, 34);
  padding: 30px;
}

/* Footer top section */
.footer-top h2 {
  color: white;
  margin-bottom: 10px;
  font-size: 24px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.footer-nav ul li {
  display: inline;
  margin: 0 15px;
}

.footer-nav ul li a {
  color: white;
  text-decoration: none;
}

.footer-nav ul li a:hover {
  color: #ffd700;
}

/* Social media icons */
.social-icons {
  list-style: none;
  padding: 0;
  text-align: center;
}

.social-icons li {
  display: inline;
  margin: 0 10px;
}

.social-icons li a {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.social-icons li a:hover {
  color: #ffd700;
}

/* Footer contact & map */
.footer-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-info {
  flex: 1;
  max-width: 400px;
  margin-right: 20px;
}

.map-container {
  flex: 2;
  max-width: 700px;
  height: 400px;
  margin-left: 20px;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  font-size: 12px;
  padding-top: 20px;
  background-color: #222;
}

.carousel-inner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.content {
  margin-top: 150px;
}
.button-container {
  display: flex;
  justify-content: center;
}
.button-container input {
  padding: 10px;
  background-color: black;
  color: white;
  border-radius: 5px;
  font: 20px;
}
.content h1,
h2 {
  text-align: center;
  font-size: 60px;
}
.content-para p {
  text-align: justify;

  padding-left: 200px;
  padding-right: 200px;
  font-size: large;
}

.video-container {
  position: relative;
  padding-bottom: 40%;
  height: 0;
  margin-top: 150px;
  overflow: hidden;
  max-width: 60%; /* Controls max width */
  margin-left: 300px; /* Center horizontally */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Ensure it fills the container */
}

.products {
  padding: 30px;
  text-align: center;
  margin-top: 100px;
  background-color: gray;
  margin-left: 25%;
  margin-right: 25%;
}
.products h3 {
  font-weight: bolder;
}
.products h2 {
  font-weight: bolder;
}
/* Remove unnecessary flex settings */
.carousel-inner {
  overflow: hidden;
}

.carousel-item {
  width: 100%;
  transition: transform 0.5s ease;
}

/* Adjust card styling */
.card {
  width: 100%;
  max-width: 500px;
  text-align: left;
  margin: 0 auto;
}

.card-img {
  width: 100%;
  height: auto;
}

/* Controls styling */
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  font-size: 30px;
}
/* Make sure only one product card shows at a time */
.card-carousel-container {
  max-width: 320px;
  margin: 0 auto;
}
.product-features {
  font-size: 20px;
  list-style: none;
}

/* ewgjengposdfunbpsobunepobine[ogbfinsd[gbin[dg'b*/
/* Product lineup container */
.product-lineup {
  max-width: 1000px; /* Set max width */
  margin: 0 auto; /* Center horizontally */
  text-align: center;
  padding: 150px;
  margin-top: 50px;
  background-color: transparent;
}
.product-lineup-bg {
  background-repeat: no-repeat;
  background-size: cover;

  min-height: 500px;
}
.product-lineup h2 {
  font-weight: bolder;
}

/* Ensure only 3 products appear per slide */
.product-row {
  display: flex;
  justify-content: center; /* Center align the products */
  gap: 20px; /* Add spacing between cards */
  flex-wrap: nowrap; /* Prevent wrapping */
}

/* Product card styling */
.card {
  width: 100%;
  max-width: 250px; /* Adjust card width */
  text-align: center;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

/* Ensure images fit inside cards */
.card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

/* Make sure carousel inner doesn't overflow */
.carousel-inner {
  overflow: hidden;
}

/* Adjust carousel item transition */
.carousel-item {
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

/* Carousel Controls */
.carousel-control {
  width: 5%;
}
.carousel-control .glyphicon {
  font-size: 30px;
  color: black;
}
.carousel-indicators {
  position: absolute;
  bottom: -50px !important; /* Moves dots further down */
  left: 50%;
  transform: translateX(-50%);
}
.carousel-indicators li {
  width: 12px;
  height: 12px;
  background-color: gray; /* Customize color */
  border-radius: 50%;
}
.carousel-indicators .active {
  background-color: black; /* Active dot color */
}
.carousel {
  padding-bottom: 50px; /* Increases space below */
}
.testimony {
  padding: 30px;
}
.testimony h2 {
  font-weight: bolder;
}
.bars-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 bars in each row */
  gap: 20px; /* Spacing between bars */
  margin-top: 20px;
  margin-left: 50px;
  margin-right: 50px;
  position: relative;
}

.text-bar {
  background-color: rgba(172, 255, 47, 0.772); /* Green color */
  border: 1px solid #ccc;
  border-radius: 5px;

  position: relative;
}
.text-content {
  position: absolute;
  left: 0;
  top: 100%; /* Places content right below the title */
  width: 100%;
  background: white;
  color: black;
  padding: 10px;
  border-radius: 5px;
  z-index: 10;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.bar-title {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
}

.arrow {
  font-size: 20px;
}

.text-content {
  display: none;
  padding: 10px;
  background-color: #e1e1e1;
  border-top: 1px solid #ccc;
}

.text-bar.active .text-content {
  display: block;
}

.text-bar.active .arrow {
  transform: rotate(180deg);
}
footer {
  padding: 30px;
  background-color: gray;
}

.map-container {
  width: 100%;
  max-width: 600px; /* Adjust as needed */
  height: 300px;
  margin-left: 500px;
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
footer {
  background-color: rgb(34, 34, 34);
}
.footer-container {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.contact-info {
  max-width: 500px;
}
#firstp li {
  font-weight: bolder;
  color: rgb(242, 171, 1);
}

#firstp p {
  font-weight: lighter;
  color: white;
}
#firstp {
  list-style: none;
}

.fa-check {
  color: rgb(242, 171, 1);
  margin-right: 10px;
  margin-left: 0px;
}
.fa-phone-alt {
  color: rgb(242, 171, 1);
}
.fa-envelope {
  color: rgb(242, 171, 1);
}

.highlight {
  color: rgb(242, 171, 1);
}
.footer-top h2 {
  color: white;
  margin-bottom: 10px;
  font-size: 24px;
}
/* Footer container styling */
footer {
  background-color: #333;
  color: white;
  padding: 20px;
  font-size: 14px;
  margin-top: 30px;
}

/* Footer Top Section */
.footer-top {
  text-align: center;
  margin-bottom: 20px;
}

.footer-top h2 {
  font-size: 24px;
  color: #ffd700; /* Yellow color for "ACE IS THE PLACE" */
  margin-bottom: 10px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.footer-nav ul li {
  display: inline;
  margin: 0 15px;
}

.footer-nav ul li a {
  color: white; /* Set navigation links to white */
  text-decoration: none;
}

.footer-nav ul li a:hover {
  color: #ffd700; /* Color change on hover for navigation links */
}

.footer-follow p {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Styling for social media icons */
.social-icons {
  list-style: none;
  padding: 0;
  text-align: center;
}

.social-icons li {
  display: inline;
  margin: 0 10px;
}

.social-icons li a {
  color: white; /* Set social icons color to white */
  font-size: 20px;
  text-decoration: none;
}

.social-icons li a:hover {
  color: #ffd700; /* Color change on hover for social icons */
}

/* Footer container for contact info and map */
.footer-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  margin-top: 20px; /* Adds spacing between the top sections and the container */
}

/* Styling for the contact info section */
.contact-info {
  flex: 1;
  max-width: 400px;
  margin-right: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin: 10px 0;
}

.contact-info ul li p {
  margin-left: 20px;
}

.contact-info ul li i {
  margin-right: 10px;
}

/* Styling for the map container */
.map-container {
  flex: 2;
  max-width: 700px;
  height: 400px;
  margin-left: 20px;
}

/* Footer bottom styling */
.footer-bottom {
  text-align: center;
  font-size: 12px;
  padding-top: 20px;
  background-color: #222;
}
