/* who we are section  */
#whoweare-container {
  display: flex;
  justify-items: center;
  justify-content: space-evenly;
  flex-direction: row;
  /* background-color: red; */
  width: 100vw;
  /* margin-top: 5%; */
  padding-top: 5%;
  padding-bottom: 5%;
  flex-wrap: wrap;

  /* width: 100%; */
}
.whoweare-box {
  /* background-color: aqua; */
  /* width: fit-content; */
  width: 250px;
  text-align: center;
  border: solid;
  padding: 25px;
  border-radius: 20px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);

  border-color: transparent;
}
.whoweare-heading {
  padding-top: 5%;
  margin: auto;
  text-align: center;
}
.whoweare-svg-container {
  /* background-color: aqua; */
  text-align: center;
  width: fit-content;
  margin: auto;
  /* font-size: 200%; */
  padding-bottom: 5%;
}
/* Extra Small Devices (Phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Styles for extra small devices */
  .whoweare-box {
    width: 350px;
    margin-bottom: 2%;
  }
}

/* Small Devices (Tablets, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Styles for small devices */
  .whoweare-box {
    width: 600px;
    margin-bottom: 2%;
  }
}

/* Medium Devices (Desktops, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Styles for medium devices */
  .whoweare-box {
    width: 400px;
    margin-bottom: 2%;
  }
}

/* Large Devices (Large Desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Styles for large devices */
  .whoweare-box {
    width: 300px;
    margin-bottom: 2%;
  }
}

/* Extra Large Devices (Extra Large Desktops, 1200px and up) */
@media (min-width: 1200px) {
  /* Styles for extra large devices */
  .whoweare-box {
    width: 22vw;
    /* margin-bottom: 2%; */
  }
}

/* trending section  */
.product-container {
  width: 100%;
  overflow-x: auto;
  padding: 20px 0;
  /* show grab hand */
}
.product-container:active {
  cursor: grabbing;
}
.trending-products-sroll-button-box {
  /* background-color: red; */
  position: relative;
}

.product-list {
  display: flex;
  gap: 20px;
  padding: 10px;
  cursor: grab;
}

.productCard {
  flex: 0 0 250px;
  /* border: 1px solid #e2e2e2; */
  border-radius: 8px;
  padding: 15px;
  max-width: 240px;
  cursor: pointer;
  transition: transform 0.2s;
  /* background: rgb(137, 15, 15); */
  /* background-color: black; */
  text-decoration: none;
  color: inherit;
  /* max-height: 300px; */
  /* height: 300px; */
}

.productCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-code {
  color: #666;
  font-size: 14px;
}

/* For WebKit browsers (Chrome, Safari) */
.product-container::-webkit-scrollbar {
  height: 8px;
}

.product-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.product-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.product-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#trending-products-container {
  background-color: var(--steelblue-1);
  padding-top: 5px;
  position: relative;
}

/* our inovation section  */

.innovation-section {
  padding: 2rem 0;
  background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%);
  overflow: hidden;
}

.innovation-section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-family: "Arial", sans-serif;
  padding: 0 1rem;
  /* background-color: red; */
}

.innovation-section-title h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.innovation-section-title p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.innovation-product-carousel-container {
  position: relative;
  padding: 0 0;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
  /* background-color: red; */
  /* width: fit-content; */
}

.innovation-product-carousel {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 3rem 0px;
  /* background-color: red; */
  /* width: fit-content; */
  /* width: 500px; */
  width: 100%;
}

.innovation-product-carousel::-webkit-scrollbar {
  display: none;
}

.innovativeProductCard {
  min-width: 200px;
  height: 280px;
  margin: 0 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  transform: scale(0.8);
  opacity: 0.7;
  /* padding: 2px; */
}

.innovativeProductCard.active {
  min-width: 300px;
  height: 400px;
  transform: scale(1);
  opacity: 1;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.innovation-product-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease;
  border-radius: 15px 15px 0 0;
  /* background-size: cover; */
}

.innovation-product-info {
  /* padding: 1.5rem; */
  text-align: center;
  /* display: none; */
  position: absolute;
  top: 90%;
  /* background-color: red; */
  width: 100%;
  /* padding-right: 12%; */
  border-bottom: solid;
}

.innovation-product-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.innovativeProductCard.active .innovation-product-name {
  opacity: 1;
}

/* about section  */

.about-section {
  padding: 100px 20px;
  /* background: var(--bg-light); */
  position: relative;
  overflow: hidden;
  min-height: 600px;
  --primary-teal: rgb(72, 205, 207);
  --primary-blue: rgb(66, 136, 175);
  --text-dark: #2d5574;
  --bg-light: #f8fafb;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.about-content {
  flex: 1;
  padding-right: 40px;
}

.section-subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--steelblue-1);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-subtitle::before {
  content: "";
  width: 50px;
  height: 2px;
  /* background: linear-gradient(90deg, var( --steelblue-1), var( --steelblue-1),var( --steelblue-4)); */
  background-color: var(--steelblue-1);
}

.about-section-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 30px;
  /* background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal)); */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* color: black; */
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  /* color: var(--text-dark); */
  margin-bottom: 40px;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: left;
  position: relative;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  /* background: linear-gradient(135deg, var(--primary-teal), var(--primary-blue)); */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  display: inline-block;
}

.stat-label {
  /* font-size: 1rem;
    color: var(--text-dark); */
  opacity: 0.8;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 12px;
  /* background: linear-gradient(135deg, var(--primary-teal), var(--primary-blue)); */
  /* color: white; */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -15px rgba(66, 136, 175, 0.3);
}

.about-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.about-cta:hover svg {
  transform: translateX(5px);
}

.about-visual {
  flex: 1;
  position: relative;
  min-height: 500px;
  /* background-color: red; */
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 5%;
  /* background-color: black; */
  /* display: none; */
  /* top: 50%; */
  margin-top: 35%;
  /* width: 50%; */
  right: 8%;
}

.image-container img {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* top: 50%; */
}

.image-container img:nth-child(1) {
  top: 0;
  left: 0;
  width: 60%;
  z-index: 3;
  transform: rotate(-5deg);
}

.image-container img:nth-child(2) {
  top: 20%;
  right: 0;
  width: 50%;
  z-index: 2;
  transform: rotate(3deg);
}

.image-container img:nth-child(3) {
  bottom: 0;
  left: 10%;
  width: 55%;
  z-index: 1;
  /* top: 80%; */
  transform: rotate(-2deg);
}

.image-container img:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 4;
}

@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-content {
    padding-right: 0;
  }

  .section-subtitle {
    justify-content: center;
  }

  .stats-grid {
    text-align: center;
  }

  .about-visual {
    width: 100%;
  }

  .image-container img {
    position: relative;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    width: 80% !important;
    margin-bottom: 20px;
    transform: rotate(0deg) !important;
  }
}

@media (max-width: 575.98px) {
  #about-section-image-3 {
    display: none !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  #about-section-image-3 {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #about-section-image-3 {
    display: none !important;
  }
}

/* 
social section  */

.social-section {
  padding: 80px 20px;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.social-container {
  max-width: 1200px;
  margin: 0 auto;
}

.social-heading {
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.social-heading h2 {
  font-size: 2.5em;
  /* color: #2d3436; */
  color: black;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.social-heading p {
  /* color: #636e72; */
  /* font-size: 1.1em; */
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.social-heading::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  /* background: linear-gradient(90deg, #0072ff, #00c6ff); */
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.social-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

.social-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transition: transform 0.6s;
  transform: translateX(-100%);
}

.social-item:hover::before {
  transform: translateX(100%);
}

.social-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.social-item.facebook:hover {
  background: #1877f2;
  color: white;
}

.social-item.youtube:hover {
  background: #ff0000;
  color: white;
}

.social-item.instagram:hover {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  color: white;
}

.social-item.linkedin:hover {
  background: #0077b5;
  color: white;
}

.social-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  /* color: red; */
  color: black;
}

.social-item:hover .social-icon {
  transform: scale(1.1);
  color: white;
}

.social-name {
  font-size: 1.2em;
  font-weight: 500;
  margin-bottom: 10px;
  color: #636e72;
  /* text-decoration: none; */
  /* text-transform: none; */
  /* color:rgb(99,110,113); */
  /* text-decoration: none; */
}

.social-followers {
  font-size: 0.9em;
  color: #636e72;
  transition: color 0.3s ease;
}

.social-item:hover .social-name {
  color: rgba(255, 255, 255, 0.8);
}
.social-item:hover .social-followers {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 968px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .social-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .social-heading h2 {
    font-size: 2em;
  }

  .social-heading p {
    font-size: 1em;
  }

  .social-item {
    padding: 20px;
  }
}

/* 
contact form  */

.cf-section {
  min-height: 100vh;
  /* background: linear-gradient(135deg, rgba(19, 30, 37, 0.95), rgba(26, 41, 128, 0.85)),
                url('/api/placeholder/1920/1080') center/cover fixed; */
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.cf-container {
  display: flex;
  max-width: 1300px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
}

.cf-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--steelblue-1), var(--steelblue-5));
}

.cf-info {
  flex: 1;
  padding: 60px;
  /* background: linear-gradient(135deg, #1a2980, #26d0ce); */
  background: linear-gradient(90deg, var(--steelblue-1), var(--steelblue-5));
  color: white;
  position: relative;
  overflow: hidden;
  padding-top: 10px;
}

.cf-info::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
}

.cf-info h2 {
  font-size: 2.8em;
  margin-bottom: 40px;
  font-weight: 600;
  position: relative;
  /* color: #fff; */
}

.cf-info h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: #fff;
  /* color: #fff; */
}

.cf-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
  padding-left: 25px;
}

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

.cf-card h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 500;
}

.cf-card p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.cf-form {
  flex: 1;
  padding: 60px;
  background: #fff;
  padding-top: 10px;
}

.cf-form h2 {
  /* color: white; */
  margin-bottom: 40px;
  font-size: 2.5em;
  position: relative;
}

.cf-form h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--steelblue-1);
}

.cf-form-group {
  margin-bottom: 20px;
  position: relative;
}

.cf-form-group label {
  display: block;
  margin-bottom: 10px;
  color: #555;
  font-weight: 500;
  font-size: 0.95em;
}

.cf-form-group input,
.cf-form-group textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s;
  background: #f8f9fa;
}

.cf-form-group input:focus,
.cf-form-group textarea:focus {
  border-color: var(--steelblue-1);
  outline: none;
  box-shadow: 0 0 15px rgba(38, 208, 206, 0.1);
  background: #fff;
}

.cf-form-group textarea {
  height: 140px;
  resize: vertical;
}

.cf-whatsapp {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: background 0.3s;
}

.cf-whatsapp:hover {
  background: #edf7f7;
}

.cf-whatsapp input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cf-whatsapp label {
  color: #555;
  font-weight: 500;
  cursor: pointer;
}

.cf-submit {
  background: linear-gradient(135deg, var(--steelblue-1), var(--steelblue-5));
  color: white;
  padding: 15px 35px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.cf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(38, 208, 206, 0.3);
}

.cf-submit::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.cf-submit:hover::after {
  left: 100%;
}

.cf-error {
  color: #ff4444;
  font-size: 14px;
  margin-top: 5px;
  display: none;
  padding-left: 10px;
}

.cf-success {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #00b09b, #96c93d);
  color: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: cf-slideIn 0.5s ease-out;
}

@keyframes cf-slideIn {
  from {
    transform: translateX(100%) translateY(-50%);
    opacity: 0;
  }
  to {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}

@media (max-width: 968px) {
  .cf-container {
    flex-direction: column;
    margin: 20px;
  }

  .cf-info,
  .cf-form {
    padding: 40px;
  }

  .cf-info h2,
  .cf-form h2 {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .cf-section {
    padding: 20px 10px;
  }

  .cf-info,
  .cf-form {
    padding: 30px 20px;
  }

  .cf-info h2,
  .cf-form h2 {
    font-size: 1.8em;
  }

  .cf-card {
    padding: 20px;
  }
}

/* 
app section  */

.app-section {
  padding: 100px 20px;
  /* background: var(--bg-gradient); */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  position: relative;
  overflow: hidden;
  /* --primary: rgb(72,205,207);
    --primary-dark: rgb(45,185,187);
    --primary-light: rgb(125,223,225);
    --accent: rgb(64,184,186);
    --bg-gradient: linear-gradient(135deg, #f0fafa 0%, #e5f8f8 100%);
    --card-bg: rgba(255, 255, 255, 0.7); */
}

.blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.blur-circle-1 {
  width: 400px;
  height: 400px;
  background: rgba(72, 205, 207, 0.15);
  top: -100px;
  right: -100px;
}

.blur-circle-2 {
  width: 300px;
  height: 300px;
  background: rgba(125, 223, 225, 0.15);
  bottom: -50px;
  left: -50px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.phones-container {
  flex: 1.2;
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 280px;
  height: 580px;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(72, 205, 207, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.phone-mockup.primary {
  transform: perspective(1000px) rotateY(-15deg) translateX(40px);
}

.phone-mockup.secondary {
  transform: perspective(1000px) rotateY(15deg) translateX(-40px)
    translateY(40px);
}

.screen {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  background: #f8f9fa;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.notch {
  width: 120px;
  height: 25px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  /* transform: translateX(-50%); */
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 2;
}

.screen-content {
  padding: 1px 1px;
  background: linear-gradient(180deg, #f0fafa 0%, #ffffff 100%);
  height: 100%;
}

.content-right {
  flex: 1;
  padding: 60px;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(72, 205, 207, 0.2);
}
.screen-content img {
  width: 100%;
}

h2 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #2c7e7f;
  margin-bottom: 40px;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  /* color:var(--steelblue-1); */
  /* color: black; */
  color: var(--gray-1);
}

.feature-icon {
  width: 32px;
  height: 32px;
  background: var(--steelblue-1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color:var(--gray-1); */
  color: black;
}

.store-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--steelblue-1) 0%,
    var(--steelblue-5) 100%
  );
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  /* background-color: red; */
}

.store-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(72, 205, 207, 0.4);
}

.store-button svg {
  width: 24px;
  height: 24px;
}

.store-button span {
  font-weight: 500;
}

@media (max-width: 1200px) {
  .container {
    flex-direction: column;
    padding: 20px;
  }

  .phones-container {
    order: 2;
  }

  .content-right {
    order: 1;
    padding: 40px;
    text-align: center;
  }

  .features {
    justify-content: center;
  }

  .store-buttons {
    justify-content: center;
  }

  .phone-mockup {
    width: 240px;
    height: 500px;
  }

  .phone-mockup.primary {
    transform: perspective(1000px) rotateY(-15deg) translateX(20px);
  }

  .phone-mockup.secondary {
    transform: perspective(1000px) rotateY(15deg) translateX(-20px)
      translateY(20px);
  }
}

@media (max-width: 640px) {
  .features {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    width: 200px;
    height: 420px;
  }
}

/* 
home page carausel  */

#home-page-banner-container {
  position: relative;
  width: 100%;
  /* height: 60vh; */
  min-height: 100%;
  overflow: hidden;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding-top: 5px;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.carousel-slide:hover img {
  /* transform: scale(1.05); */
}

/* Navigation Dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  /* z-index: 1; */
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.dot.active {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.2);
  transform: scale(1.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.carousel-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 20px;
  z-index: 1;
}

.carousel-nav.next {
  right: 20px;
  z-index: 1;
}

/* Progress Bar */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  width: 100%;
  z-index: 10;
}

.carousel-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  width: 0%;
  transition: width 0.1s linear;
}

/* Pause/Play Button */
.carousel-control {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.carousel-control:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

@media (max-width: 480px) {
  .home-page-titles {
    font-size: 28px !important;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  #home-page-banner-container {
    /* height: 50vh; */
    height: 92vh;
    min-height: 300px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .carousel-nav.prev {
    left: 10px;
  }

  .carousel-nav.next {
    right: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .carousel-dots {
    bottom: 15px;
    gap: 10px;
  }

  .carousel-control {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

/* Tablets (portrait + landscape) */
@media (min-width: 601px) and (max-width: 1024px) {
  /* tablet styles here */
  #home-page-banner-container {
    /* height: 50vh; */
    height: 92vh;
    min-height: 300px;
  }
}
/* Loading animation */
.carousel-slide.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* 
our collection section  */

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* background: linear-gradient(45deg, #272727f4, #c0c1c1c2); */
  /* background-color: liner; */
  background: linear-gradient(
    var(--steelblue-1),
    var(--steelblue-1),
    var(--steelblue-4),
    var(--steelblue-5)
  );

  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* padding-top: 0px; */
  margin-top: 0px;
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(129, 140, 248, 0.4);
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  /* border: 1px solid rgba(4, 4, 4, 0.1); */
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  /* color: black; */
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(14, 14, 14, 0.1),
    transparent
  );
  transition: 0.5s;
}

.product-card:hover::before {
  left: 100%;
}

.product-card:hover {
  transform: translateZ(20px) rotateX(5deg);
  border-color: rgba(3, 3, 3, 0.2);
}
.product-card:hover .product-image {
  transform: scale(1.1);
}
.product-image-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  overflow: hidden;
}

.product-image-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  overflow: hidden;
}

.product-image {
  width: 100%;
  /* height: 400px; */
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}


