/* ---font family--- */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@font-face {
  font-family: "Bassy";
  src: url("fonts/Bassy.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  font-family: "Plus Jakarta Sans", serif;
}

/* header */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1020;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
  background-color: transparent; 
}

#navbar .navbar-nav .nav-link {
  color: #fff;
  transition: color 0.3s ease;
}
#navbar.scrolled {
  background-color: #000 !important; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}
#navbar.scrolled .navbar-nav .nav-link {
  color: #fff !important; 
}
.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}
.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}
.change .bar2 {
  opacity: 0;
}
.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}
#navbar {
  transition: top 0.3s ease;
}



/*----------------------------------------------------------home------ section 1 -------------------------------------------------------*/
.navbar {
  top: 0px;
  background-color: transparent;
  position: absolute;

  width: 100%;
  z-index: 999;
}
.logo {
  width: 250px;
}

.video-background video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.header-section {
  position: relative;
}
.feature-item {
  font-size: 14px;
}



.navbar-toggler {
  transform: scale(0.8);
}
.navbar-brand {
  margin: 0;
}



/* Optional: Add some animation */
.navbar-collapse {
  transition: all 0.3s ease;
}

/* Base Styles */
.feature-wrapper {
  display: flex;
  flex-wrap: nowrap;
}

.feature-all-items {
  display: flex;
  flex-wrap: nowrap;
}

.feature-item {
  display: flex;
  gap: 10px;
}


/*---------------------------------------------------home------------- section 2 -------------------------------------------------------*/

.hexagon {
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hexagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.center-logo {
  width: 100px;
  height: 100px;
  clip-path: circle(50%);
  margin: 0 auto;
}
.center-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*-----------------------------------------------------product----------- section 3 -------------------------------------------------------*/

#product-section-carousel {
  min-height: 100vh; /* Full height */
  padding: 20px;
  color: white; /* Ensure text is visible */
}

.product-section {
  text-align: center;
  /* padding: 50px 0; */
  /* background-image: url('images/oil.jpg'); */
}

.product-card {
  background-color: #2e0e027c;
  padding: 10px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 700px;
  color: white;
  min-height: 270px;
}
.card-content {
  text-align: justify;
}
.nav-links a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  cursor: pointer;

  /* text-wrap: nowrap; */
}

/* border animation */
.rotating-border {
  position: relative;
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.rotating-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 5px;
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  0% {
    clip-path: inset(0 0 98% 0);
  }
  25% {
    clip-path: inset(0 98% 0 0);
  }
  50% {
    clip-path: inset(98% 0 0 0);
  }
  75% {
    clip-path: inset(0 0 0 98%);
  }
  100% {
    clip-path: inset(0 0 98% 0);
  }
}

.rotating-border:hover::before {
  animation-duration: 2s;
}

.rotating-border:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* under line */
.products {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
}

.products::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}

.products.active::after {
  width: 100%;
}

.products:hover::after {
  width: 100%;
}

/* carousel control  */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.product-card {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-item.active .product-card {
  opacity: 1;
}

#productCarousel {
  width: 100%;
}
/*----------------------------------------------------service------------ section 4 -------------------------------------------------------*/

.service-section {
  display: flex;
  align-items: center;
}

.text-content {
  flex: 1;
  padding-right: 20px;
  text-align: justify;
}

.image-content {
  flex: 1;
  text-align: center;
}

.image-content img {
  border-radius: 50%;
  width: 80%;
  height: auto;
}

.btn-custom {
  background-color: #6a1b0a;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}

.btn-custom:hover {
  background-color: #8a2c0d;
}

.service-pagination {
  text-align: center;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #000;
  border-radius: 8px;
  width: 30px;
}

.service-description {
  text-align: justify;
}
/*------------------------------------------------review---------------- section 5 -------------------------------------------------------*/

.review-section {
  padding: 50px 0;
  text-align: center;
}

.carousel-inner {
  padding: 20px;
}

.review-card {
  width: 650px;
  max-width: 700px;
  margin: auto;
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.rating {
  color: #ffc107;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #6c757d;
  border-radius: 50%;
}

.section-5 {
  background-image: url("images/chat_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: contain;
}

.review-pagination {
  text-align: center;
  margin-top: 20px;
}

.review-pagination .dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #afb3bb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.review-pagination .dot.active {
  background-color: #ffffff;
  transform: scale(1.2);

  border-radius: 8px;
  width: 30px;
}

/*---------------------------------------------------footer------------- section 6 -------------------------------------------------------*/

.footer-content {
  background-image: url("images/earth-bg1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer {
  text-align: center;
  background: url("footer-bg.jpg") no-repeat center center;
  background-size: cover;
}

.footer-logo img {
  width: 400px;
  /* height: 120px; */
}

.footer-links a {
  color: white;
  margin: 0 10px;
  font-size: 20px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffc107;
}

.contact-info {
  margin-top: 10px;
  line-height: 2;
}

.copyright {
  margin-top: 20px;
  font-size: 14px;
}
.phone {
  transform: scale(2);
}
.mail {
  transform: scale(1.4);
}
.footer-logo img {
  width: 5%;
  max-width: 400px;
  height: auto;
}


.body {
  overflow-x: hidden;
}

.place {
  position: relative;
  /* right: 0%; */

  /* bottom: 0%; */
  z-index: 1;
  /* 
  top: 80%;
  bottom: 0%; */
  /* transform: translate(0%,100%); */

  width: 100%;
  justify-content: center;
  align-items: end;
}
.triangle {
  position: relative;
  width: 52px;
  height: 52px;
  background-color: rgb(255, 255, 255);
  transform: rotate(60deg) skew(-30deg) scale(1, 0.866);
  /* Removed border-radius for sharp corner */
  left: 95%;
  top: 37%;
}

.triangle::before,
.triangle::after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: inherit;
  /* Apply border-radius only to pseudo-elements */
  border-top-right-radius: 50%;
}

/* First Shape */
.triangle::before {
  transform: rotate(-135deg) skewX(-45deg) scale(1.414, 0.707) translateY(-50%);
}

/* Second Shape */
.triangle::after {
  transform: rotate(135deg) skewY(-45deg) scale(0.707, 1.414) translateX(50%);
}

.rectangluar {
  width: 18%;
  height: 75px;
  background-color: rgb(255, 255, 255);
}

.right {
  transform: scaleX(-1);
}
.center-content {
  width: 50%;
}


/* animatiom word */

.wrapper {
  /* height: 100vh; */
  /*This part is important for centering*/
  display: grid;
  place-items: center;
}

.typing-demo {
  width: 15ch;
  animation: typing 2s steps(22);
  white-space: nowrap;
  overflow: hidden;
  /* border-right: 3px solid; */
  font-family: "Bassy", sans-serif;
  font-size: 6em;
}

@keyframes typing {
  from {
    width: 0;
  }
}

.product-1 {
  text-align: justify;
}

/* Services page responsive images */
.container img {
  max-width: 100%;
  height: auto;
  display: block;
  /* margin: 0 auto; */
}

/*------------------------------------- product page------------------------------------------------------------------- */

.Super-Antiques-bg {
  background-image: url("./images/antiques.jpg  ");
}
.stones {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}


.pump_jack {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}


.Rare-Earth-bg {
  background-image: url("./image_product/Rare-Earth-bg.png  ");
}

/* --------------------------------animatiom word----------------------------------------------------- */

.wrapper {
  /* height: 100vh; */
  /*This part is important for centering*/
  display: grid;
  place-items: center;
}

.typing-demo {
  width: 15ch;
  animation: typing 2s steps(22);
  white-space: nowrap;
  overflow: hidden;
  /* border-right: 3px solid; */
  font-family: "Bassy", sans-serif;
  font-size: 75px;
  color: white;
}

@keyframes typing {
  from {
    width: 0;
  }
}

.product-1 {
  text-align: justify;
}

/*--------------------------------------------------------------------------------------------------------------  */



/* our team */
.team-card {
  background-color: #1e1e57;
  color: white;
  border-radius: 30px;
  padding: 20px;
  text-align: center;
  width: 360px; /* Set fixed width */
  height: 150px; /* Set fixed height */
  display: flex; /* Ensure content alignment */
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.team-card img {
  border-radius: 50%;
  margin-bottom: 0px;
  width: 80px; /* Ensure consistent image size */
  height: 80px; /* Ensure consistent image size */
}

.team-card .text-start {
  text-align: center; /* Center text alignment */
}

.filter-btn {
  border: 1px solid #1e1e57;
  color: #1e1e57;
  border-radius: 20px;
  margin: 5px;
}
.filter-btn.active,
.filter-btn:hover {
  background-color: #1e1e57;
  color: white;
}
.team_person {
  font-size: 18px;
}
.team_location {
  font-size: 16px;
}


/* our team */
/* filter button */
.filter-btn {
  width: 150px;
}



.carousel-item {
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.carousel-item.active img {
  transform: scale(1); /* Scale the image to 110% of its original size */
  transition: transform 0.5s ease;
}

.carousel-item img {
  transition: transform 0.5s ease;
}

/* section 7 */
.Super-Antiques-inner-bg {
  padding: 2rem;
}

.Super-Antiques-inner-bg img {
  max-width: 100%;
  height: auto;
}

/******************************* all page hero section ***************************************/


/* .hero-section {
  background: url("/image_product/Hero.png") no-repeat center center/cover;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
} */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
  top: 70px;
}
.hero-button {
  background-color: black;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
}
.features {
  position: absolute;
  bottom: 30px;
  width: 100%;
}
.hero-section {
  background: url("/image_product/Hero.png") no-repeat center center/cover;
  min-height: 60vh;
  height: auto;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 4rem 1rem;
}

.stones {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
  }
  .features {
    position: relative;
    margin-top: 2rem;
  }
  .hero-content h3 {
    font-size: 1.5rem;
  }

  .hero-content {
    top: 40px;
  }
}

/* ----------------------------------------contact form-------------------------------------------- */

/* form */

.contact-section {
  padding: 50px;
}
.contact-box {
  background-color: #ffffff;
  color: #000;
  /* padding: 30px; */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.info-box {
  background-color: white;
  color: #1e3a5f;
  padding: 20px;

  border-radius: 8px;
}
.info-box h5 {
  font-weight: bold;
}
.error-message {
  color: red;
}
.send {
  background-color: #1e437b;
  color: white;
}
.send:hover {
  background-color: #0066ffde;
  color: rgb(255, 255, 255);
}

.form-control {
  margin-bottom: 10px;
  position: relative;
}

.form-control.success input {
  border-color: var(--succes-color);
}

.form-control.error input {
  border-color: var(--error-color);
}

.form-control small {
  color: var(--error-color);
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
}

.form-control.error small {
  visibility: visible;
}

.info-box {
  /* background-color:  #1e437b;
  color: white; */
}
.contact {
  background-color: #1e437b;
}

.contact-text-color {
  color: #1e437b;
}


/* footer */
.btn-whatsapp-pulse {
    background: #008361;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 25px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}
