* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Open Sans", sans-serif;
}

html,
body {
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.section_demo {
  /* display: flex; */
  flex-direction: column;
  /* justify-content: space-between; */
}

.section_demo_div {
  min-height: 100vh;
}

.customBg_Wrapper {
  background: linear-gradient(to right, #6b50fe, rgba(123, 84, 254, 1));
  height: 550px;
  color: #fff;
  z-index: 1000;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  /* display: flex; */
  /* align-items: center; */
  /* text-decoration: none; */
  color: #fff;
}

/* .logo img {
  width: 180%;
  height: 10%;
  object-fit: contain;
} */

.logo span {
  font-size: 1.2rem;
  font-weight: bold;
}

nav {
  z-index: 1000;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  /* justify-content: center; */
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  /* transition: color 0.3s; */
}

.contactus_wrapper {
  border: 1px solid white;
  padding: 10.5px 17.5px;
  border-radius: 100px;
  position: relative;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
  /* text-align: center; */
  margin: 10%;
}

.main h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

.main p {
  font-size: 1.2rem;
  max-width: 700px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

a {
  text-decoration: none;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #ff5f6d;
  color: #fff;
}

.btn-primary a {
  color: #fff;
}

.btn-primary:hover {
  background: #ff3b4a;
}

.btn-secondary {
  background: #e2dddd;
  color: #000000;
}

.btn-secondary:hover {
  background: #fff;
}

.bended__Image {
  width: 100%;
  object-fit: contain;
}

.relative_bended_laptop {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.bended__Float_laptop {
  margin-top: -10%;
  object-fit: cover;
  width: 85%;

}

@media screen and (max-width: 920px) {
  .bended__Float_laptop {
    object-fit: cover;
    width: 75%;
  }
}

footer {
  background-color: #6b50fe;
  color: #fff;
  padding: 50px 120px 50px 90px;
  width: 100%;
}

.footer_section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-card h2 {
  flex: 1;
  max-width: 300px;
  margin: 10px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  text-align: start;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.contact-item i {
  margin-right: 10px;
  font-size: 16px;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
}

.contact_item_wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer {
  font-family: Arial, sans-serif;
}


#categories {
  scroll-margin-top: 80px;
  margin: 30px;
}

.categories_section {
  padding: 60px;
  background-color: #f2f0f0;
  overflow: visible;
}

.categories_section h1 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2rem;
  color: #333;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.categories-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.categories-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.categories-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.categories-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}

.price-details p {
  font-weight: bold;
  color: #444;
  margin: 10px 0;
}

.see-items {
  display: inline-block;
  margin: 10px 0;
  font-size: 0.9rem;
  color: #007bff;
  text-decoration: none;
}

.see-items:hover {
  text-decoration: underline;
}

.anchors {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  justify-content: center
}

.anchors a {
  color: #fff;
  text-decoration: none;
  font-size: 25px;
}

.anchors {
  a:hover {
    scale: 1.1;
  }
}

.AboutUs {
  flex: 1;
  max-width: 300px;
  margin: 10px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  text-align: start;
}

.AboutUs h2 {
  margin-bottom: 20px
}

.AboutUs p {
  margin-bottom: 30px;
}