@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* 1 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif !important;
}
body {
  font-family: "Montserrat", sans-serif !important;
}
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
}
:root {
    --gray-color: #4d4d4d;
    --light-move: #a378f9;
    --dark-move: #5f1bbe;
}

main {
  margin-top: 68px;
}

section {
  padding: 40px 10px 40px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/*  nav start*/

nav {
  background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: top 0.3s;
  z-index: 10;
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: space-around;
  margin: 0;
  padding: 10px 0;
}

nav ul li a {
  text-decoration: none;
  color: var(--gray-color);
  font-weight: bold;
  padding: 5px 10px;
}
nav ul li a:hover {
  text-decoration: none;
  color:var(--dark-move);
}
h2 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 30px;
  font-style: normal;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--gray-color);
}
/* nav End*/
/* hero section start*/
.hero-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 85%;

  padding: 30px 20px;
}
.text-content {
  width: 50%;
}
.text-content h1 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 30px;
  font-style: normal;
  color:var(--dark-move);
}

.text-content .subtitle {
  font-size: 1.2em;
  color: var(--gray-color);
  margin-bottom: 20px;
}

.hero-info {
  list-style: none;
  padding: 0;
}

.hero-info li {
  margin-bottom: 10px;
  font-size: 1em;
  color: var(--gray-color);
}

.start-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  color:var(--dark-move);
  text-decoration: none;
  border-radius: 1000px;
  font-weight: 400;
  font-size: 26px;
  margin-top: 50px;
  cursor: pointer;
  outline: solid var(--dark-move) 2px;
}
.start-button:hover {
  background-color: #f1f6fb;
}

.image-content {
  width: 50%;
  height: 350px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
}

.image-content img {
  width: 90%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* benifits start */
.column {
  display: flex;
  flex-direction: column;
  /*background-color: rgba(79, 156, 232, 0.1);*/
}
.background{
    background-color: rgba(79, 156, 232, 0.1);
}
.column h2 {
    color:var(--dark-move);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 30px;
  font-style: normal;
  margin-bottom: 20px;
}
.benefits-section1 {
    margin-top: 30px;
    width: 100%;
    min-height: 400px;
    align-items: start;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    text-align: center;
}
.benefits-section2 {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  text-align: center;
}

.benefit {
  display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    gap: 5%;
}
.benefit2 {
  width: 20%; /* Adjust based on your layout preference */
  gap: 5%;
}

.icon-container {
  height: 200px; /* Adjust based on your icon size */
  width: 200px;
  /*border: 2px solid var(--gray-color); */
  /*border-radius: 50%;*/
  margin: 0 auto; /* Centers the icon container horizontally */
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  overflow: hidden;
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}
.icon-container img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.icon-container1 {
  height: 200px; /* Adjust based on your icon size */
  width: 200px;
  /*border: 2px solid var(--gray-color); */
  border-radius: 50%;
  margin: 0 auto; /* Centers the icon container horizontally */
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  overflow: hidden;
  background-color:#5f1bbe;
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}
.icon-container1 img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.benefit h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color:var(--dark-move);
}
.benefit2 h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color:var(--dark-move);
}

.benefit p {
  width: 180px;
    text-align: center;
    text-wrap: balance;
    font-size: 0.9em;
    color: var(--gray-color);
}

.benefit2 p {
  font-size: 0.9em;
  color: var(--gray-color);
}
/* benifits end */
/* mockup section start*/
.mockup-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 90%;

  padding: 30px 20px;
}
.mockup-content {
  width: 70%;
}
.mockup-content h1 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 30px;
  font-style: normal;
  color:var(--dark-move);
}

.mockup-content .subtitle {
  font-size: 1.2em;
  color: var(--gray-color);
  margin-bottom: 20px;
}

.mockup-info {
  list-style: none;
  padding: 0;
}

.mockup-info li {
  margin-bottom: 10px;
  font-size: 1em;
  color: var(--gray-color);
}

.mockup-image-content {
  width: 100%; /* Adjust the width as needed */
  height: 408px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  object-fit: fill;
  margin-left: auto;
  margin-right: auto;
}

.mockup-image-content img {
  width: 95%;
  height: auto;
  border-radius: 10px;
  object-fit: fill;
}

/* mockup end */
/* product section start */
.product-section {
  text-align: center;
  margin: 20px;
}

.product-section h2 {
    color: var(--dark-move) !important;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 30px;
  font-style: normal;
  color: var(--gray-color);
  margin-bottom: 20px;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 5%;
  margin-bottom: 2%;
}

.product-image {
  border: 2px solid #ccc;
  width: 200px; /* Adjust the size as needed */
  height: 200px; /* Adjust the size as needed */
  overflow: hidden; /* Keeps the image within the borders */
  transition: transform 0.3s ease;
  border-radius: 5px;
}

.product-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: translateY(-10px); /* Floating effect on hover */
}

/* product section end */

/* Map start */
.map-section {
  text-align: center;
  margin: 20px;
  background-color: rgba(79, 156, 232, 0.05);
}

.map-section h2 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 30px;
  font-style: normal;
  color: var(--gray-color);
  margin-bottom: 20px;
}

.map-image {
  width: 100%;
  height: 350px;
}
.map-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Map end */

/* ٍStart artist */

.artist {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  position: relative;
  overflow: hidden;
  padding: 20px;
  width: 85%;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background-color:  rgba(163, 120, 249,.1);
}
.artist h2 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 22px;
  font-style: normal;
}
.artist .section-title h2 {
    color: var(--dark-move) !important;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 36px;
  font-style: normal;
}

.artist-container {
  display: flex;
  gap: 10px;
  transition: transform 0.3s ease-in-out;
  overflow: scroll;
  scroll-behavior: smooth;
}
.artist-container::-webkit-scrollbar {
  display: none;
}

.testimonial-container {
  background-color: var(--dark-move);
  color: #fff;
  border-radius: 15px;
  margin: 20px auto;
  padding: 40px 70px;
  max-width: 768px;
  position: relative;
}

.fa-quote {
  color: rgba(255, 255, 255, 0.3);
  font-size: 28px;
  position: absolute;
  top: 70px;
}

.fa-quote-right {
  left: 40px;
}

.fa-quote-left {
  right: 40px;
}

.testimonial {
  height: 140px;  
  line-height: 28px;
  text-align: justify;
}

.user {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user .user-image {
  border-radius: 50%;
  height: 75px;
  width: 75px;
  object-fit: cover;
}

.user .user-details {
  margin-left: 10px;
}

.user .username {
  margin: 0;
}

.user .role {
  font-weight: normal;
  margin: 8px 0;
}

.progress-bar {
  background-color: #fff;
  height: 6px;
  border-radius: 50%;
  width: 100%;
  margin: 15px;
  animation: grow 10s linear infinite;
  transform-origin: left;
}

@keyframes grow {
  0% {
    transform: scaleX(0);
  }
}

@media (max-width: 768px) {
  .testimonial-container {
    padding: 20px 30px;
  }
  .fa-quote {
    visibility: hidden;
  }
}

.art-pre-btn,
.art-nxt-btn {
  border: none;
  width: 3vw;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color:var(--dark-move) !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  cursor: pointer;
  z-index: 8;
}

.art-pre-btn {
  left: 0;
  transform: rotate(180deg);
}

.art-nxt-btn {
  right: 0;
}

.art-pre-btn a,
.art-nxt-btn a {
  opacity: 0.4;
  color:var(--dark-move);
}

.art-pre-btn:hover a,
.art-nxt-btn:hover a {
  opacity: 1;
  color:var(--dark-move);
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 50px;
  padding: 15px;
  cursor: pointer;
  color: #fff;
  transition: 0.1s;
  user-select: none;
}
.prev:hover,
.next:hover {
  color:var(--dark-move); /* blue */
}
.next {
  right: 0;
}

.artist-info p {
  color: #fff;
}

/* ٍend artist */
/* ٍcalculate profit start */
.profit-calculator {
  display: flex;
    width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.calculator-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.calculator-section label {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-color);
}
.calculator-section p {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-color);
}
.calculator-section span {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-color);
}
.image-carousel {
  width: 50%;
  height:390px;
  box-sizing: border-box;
  object-fit: cover;
}
.image-carousel img {
  width: 100%;
  height:100%;
  object-fit:cover;
  border-radius: 10px;
}

.calculator-section {
  width: 48%;
  padding: 10px;
  outline: 2px solid var(--dark-move);
  border-radius: 10px;
}

.calculator-section h2 {
  margin-bottom: 20px;
}

input[type="number"],
input[type="range"] {
  width: 100%;
  padding: 8px;
  margin: 10px 0;
}

#annualProfit {
  font-size: 2em;
  color: green;
}

button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}
.calculator-section .start-button {
  margin-top: 20px;
  padding: 8px;
  font-size: 22px;
}

/* ٍcalculate profit end */

/* Responsive adjustments */
@media (max-width: 600px) {
     nav {
    display: none;
  }
  .hero-container {
    flex-direction: column;
    text-align: center;
    width: 100%;
    padding: 20px 10px;
    align-items: center;
    justify-content: center;
  }
  .text-content {
    width: 100%;
  }
  .text-content h1 {
    font-size: 22px;
  }
  .text-content .subtitle {
    font-size: 20px;
  }
  .hero-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .hero-info li {
    font-size: 18px;
  }
  .start-button {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px 10px;
    font-size: 24px;
  }
  .image-content {
    width: 90%;
  }
  .image-content img {
    width: 100%;
  }
  /* benefits start*/
  .benefits-section1 {
    flex-direction: column;
    align-items: center;
  }

  .benefit {
    width: 80%; /* More width on smaller screens */
    margin-bottom: 20px;
  }
  .benefits-section2 {
    flex-direction: column;
    align-items: center;
  }

  .benefit2 {
    width: 80%; /* More width on smaller screens */
    margin-bottom: 20px;
  }
  .column h2 {
    font-size: 22px;
    text-align: center;
  }
  /* benefits end*/

  /* mockup start*/
  .mockup-container {
    flex-direction: column-reverse;
    text-align: center;
    width: 100%;
    padding: 20px 10px;
    align-items: center;
    justify-content: center;
  }
  .mockup-content {
    width: 100%;
  }
  .mockup-content h1 {
    font-size: 22px;
  }
  .mockup-content .subtitle {
    font-size: 18px;
  }
  .mockup-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: start;
    margin-bottom: 20px;
  }
  .mockup-info li {
    font-size: 16px;
  }
  .mockup-section {
    align-items: center;
    justify-content: center;
  }
  .mockup-image-content img {
    width: 100%;
  }
  /* mockup end*/

  /* product start*/
  .products-grid {
    flex-direction: column;
    align-items: center;
  }

  .product-image {
    width: 80%; /* Larger images on smaller screens */
  }
  .product-section h2 {
    font-size: 24px;
  }
  /* product end*/
  /* artist feedback start*/
  .artist {
    margin: 0px;
    width: 100%;
  }
  .artist .section-title h2 {
    font-size: 24px;
  }
  .artist h2 {
    font-size: 20px;
  }
  .testimonial-container {
    margin: 0px;
  }
  .testimonial {
    height: 220px;
    line-height: 22px;
    text-align: justify;
  }
  .user .user-image {
    border-radius: 50%;
    height: 50px;
    width: 50px;
    object-fit: cover;
  }
  /*  artist end*/
  /* profit calculator start*/
  .profit-calculator {
    flex-direction: column-reverse;
    padding: 0px 5px;
  }
  .calculator-section {
    width: 100%;
    margin-bottom: 30px;
  }

  .image-carousel {
    width: 100%;
  }
  .calculator-section {
    padding: 0px;
    text-align: center;
  }
  .calculator-section h2 {
    font-size: 24px;
  }

  /* profit calculator end*/
}

@media (min-width: 601px) and (max-width: 1100px) {
  nav {
    display: none;
  }
  .hero-container {
    width: 100%;
  }
  .image-content {
    width: 50%;
  }
  .text-content h1{
    font-size:24px ;
  }
  .image-content img {
    width: 100%;
  }
  .mockup-container {
    width: 100%;
    flex-direction: column-reverse;
  }
  .mockup-content {
    width: 90%;
  }
  .mockup-content img {
    width: 100%;
  }
  .mockup-image-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mockup-content {
    margin-bottom: 40px;
  }
  .profit-calculator {
    flex-direction: column-reverse;
  }
  .calculator-section {
    width: 100%;
    margin-bottom: 40px;
  }
  .image-carousel {
    width: 100%;
  }
  .column h2{
    text-align: center;
    font-size: 26px;
  }
}
