/* styles.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
  height: 100%;
}
a {
  text-decoration: none;
  color: #3ab3d4;
  /* font-weight: 700; */
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero {
  background-color: #f4f4f4;
  padding: 2rem 0;
}

.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-content {
  max-width: 50%;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.hero-content h2 {
  font-size: 1.2rem;
  /* margin-bottom: 1rem; */
}
.hero-image {
  max-width: 50%;
  display: flex;
  justify-content: center;
}

.image-circle {
  width: 200px;
  height: 200px;
  background-color: #97d1cc;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-circle img {
  width: 100%;
  height: auto;
}

.features, .middle {
  background-color: #fff;
  padding: 2rem 0;
}

.features .container {
  display: flex;
  justify-content: space-around;
}

.feature {
  text-align: center;
  max-width: 30%;
}

.feature .icon {
  width: 50px;
  height: 50px;
  /* background-color: #ccc; */
  margin: 0 auto 1rem;
  border-radius: 10px;
  color: #f9f9f9;
}

.highlight {
  background-color: #f4f4f4;
  padding: 2rem 0;

}
.highlight .container {
  /* display: flex; */
  text-align: center;
  max-width: 60%;
}

.shop {
  background-color: #fff;
  padding: 2rem 0;

}

.shop h1 {
  max-width:70%;
  font-size: 1rem;
  text-align: center;
  margin: 0 auto;
  padding: 1rem;
  background-color: #fff;
  margin-bottom: 1rem;
}
.shop .container {
  display: flex;
  justify-content: space-around;
  text-align: center;
  max-width: 60%;
}

.shop-btn {
  background-color: #3ab3d4; /* Button color */
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  display: block;
  max-width: 100px;
  /* margin: 10px auto; */
}

.shop-btn:hover {
  background-color: #61b0a1; /* Darker shade on hover */
  transform: translateY(-5px); /* Slight lift on hover */
}

.shop-btn:focus {
  outline: none;
}

/* middle */
.middle {
  background-color: #fff;
}
.middle .container {
  /* display: flex; */
  justify-content: space-around;
}
.middle h2 {
  padding: 2rem;
  background-color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}
.middle .container .middle-grid {
  /* display: grid; */
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  display: flex;
  justify-content: space-around;
}
.middle p {
  text-align: center;
  margin-bottom: 2rem;
  color: #666;
}
.middle >div {
  text-align: center;
  max-width: 80%;
}

/*service*/
.services {
  padding: 2rem;
  background-color: #fff;
}

.services h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.services p {
  text-align: left;
  margin-bottom: 2rem;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service {
  padding: 1rem;
  background-color: #f9f9f9;
  border-left: 5px solid #97d1cc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.service p {
  margin: 0.5rem 0 0;
  color: #555;
}

/*brand*/

.brand-section {
  width: 100%;
  background-color: #eeeeee; 
  padding: 50px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-container {
  text-align: center;
  width: 80%;
}

.brand-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333; /* Dark text color */
  margin-bottom: 20px;
}

.brand-description {
  font-size: 1rem;
  color: #555; /* Slightly lighter text */
  line-height: 1.6;
  margin-bottom: 30px;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.brand-button, .work-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
}

.brand-button {
  background-color: #3ab3d4; /* Light teal background */
  color: white;
}

.brand-button:hover {
  background-color: #61b0a1; /* Darker teal on hover */
}

.work-button {
  background-color: #b097d1; /* Light purple background */
  color: white;
}

.work-button:hover {
  background-color: #8b6db1; /* Darker purple on hover */
}


/* code*/
code {
  display: inline-block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  background-color: #f4f4f4;
  color: #d63384; /* Add a contrasting color */
  padding: 4px 8px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow-x: auto; /* Prevent overflow for long code lines */
}

pre {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  background-color: #f4f4f4;
  color: #212529; /* Darker color for block code */
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow-x: auto;
  margin: 16px 0;
}

/* footer */
.footer {
  background-color: #ccc;
  padding: 1rem 0;

}
.footer .container {
  display: flex;
  text-align: center;
  max-width: 60%;
}
.footer p {
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px auto;
  gap: 30px; /* Ensures proper spacing between elements */
  height: 100%; /* Ensures it takes full container height if necessary */
}
.footer a {
  color: #333;
}
.footer .logo {
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px auto;
  gap: 30px; /* Ensures proper spacing between elements */
  height: 100%; /* Ensures it takes full container height if necessary */
}

.footer .logo img {
  width: 64px;
  height: 64px;
}