* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  /* background-color: #f9f9ff; */
  background-image: url(./BG.jpg);
}

/* Icon */
.material-icons {
  font-size: 20px;
}

.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 50px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 100px;
}

.logo-img {
  height: 40px;
}

.logo-name {
  font-size: 24px;
  font-weight: bold;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
}

.nav-btn {
  padding: 10px 20px;
  background-color: #a53dff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
}

.nav-btn:hover {
  background-color: #03a300;
  animation: pulse 0.3s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.home-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0px 200px;
}

.home {
  padding: 0px 80px;
  margin-right: 20px;
}

.home-details {
  padding: 30px;
}
.home-details p {
  padding-bottom: 10px;
  padding-right: 200px;
}
.home-details h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}
.home-others {
  padding: 30px;
  padding-top: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.home-others div {
  width: 150px;
  background-color: #edd8ff80;
  color: #282727;
  border-radius: 5px;
}
.home-others div h3 {
  text-align: center;
  padding-top: 10px;
}
.home-others div p {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.profile {
  margin: 30px;
}
.profile-img {
  padding: 30px;
  width: 300px;
  border-radius: 5px;
  height: auto;
  background-color: #f8f6f6;
}

#btn-down {
  gap: 20px;
  background-color: white;
  color: #a53dff;
  border: 2px solid;
  display: inline-flex;
  align-items: center;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 225px 0 310px;
  background-color: #fff;
  border-radius: 10px;
}

.about-btn {
  display: flex;
  gap: 15px;
}

#btn-my {
  padding: 15px;
}

.about-details {
  color: #132239;
  padding: 10%;
}
.about-details h3 {
  font-weight: bold;
  padding: 0 200px 10px 0;
}
.about-details p {
  padding: 10px 0 1rem;
}

.work-pro {
  display: flex;
  align-items: start;
  margin: 0 225px 0 310px;
  /* background-color: #575757; */
  border-radius: 10px;
  gap: 10px;
}
.work-process {
  flex: 1;
  align-items: center;
  justify-content: center;
}
.work-process h3 {
  font-size: 30px;
  margin-top: 180px;
  color: #333;
}

.work-process p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  padding-right: 120px;
}

.work-about {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.work-about > div {
  padding: 25px;
  border: 1px solid #e0e0e0;
  gap: 15px;
  border-radius: 15px;
  background-color: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.work-about > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.work-about > img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.work-about > h4 {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
.work-about > p {
  padding: 10px;
  color: #666;
  line-height: 1.5;
  font-size: 14px;
}

#btn-case {
  /* gap: 20px; */
  background-color: white;
  color: #a53dff;
  border: 2px solid;
  display: inline-flex;
  align-items: center;
}

.portfolio-section {
  padding: 60px 20px;
  text-align: center;
  margin: 0 225px 0 310px;
}
.portfolio-subtitle {
  max-width: 500px;
  margin: 10px auto 40px;
  color: #777;
}

.portfolio-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.portfolio-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  transition: 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.portfolio-card:hover {
  transform: translateY(-8px);
}

.portfolio-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-content {
  padding: 20px;
}

.portfolio-content span {
  font-size: 12px;
  color: #888;
}

.portfolio-content h3 {
  margin: 10px 0;
}

.portfolio-content p {
  font-size: 14px;
  color: #666;
  padding: 15px 0;
}

.more-btn {
  padding-top: 20px;
}
#let-ben {
  display: inline-flex;
  align-items: center;
}
.project-idea {
  margin: 0 225px 0 310px;
  background-color: #132238;
  border-radius: 10px;
  padding: 80px;
  text-align: center;
}
.project-idea h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
  /* padding-right: 150px; */
  text-align: center;
}
.project-idea p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 30px;
  padding: 0 150px;
  text-align: center;
}
/* .project-idea button{
    background-color: #A53DFF;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
} */

.section-blog {
  padding: 60px 20px;
  text-align: center;
  margin: 0 225px 0 310px;
}
.section-blog h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}
.pp {
  color: #777;
  line-height: 1.6;
  margin-bottom: 40px;
  /* padding: 0 150px; */
}
.blog-container p {
  color: #777;
  line-height: 1.6;
}
.blog-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.blog-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  transition: 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.blog-card:hover {
  transform: translateY(-8px);
}
.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-content {
  padding: 20px;
}
.blog-content span {
  font-size: 12px;
  color: #888;
}
.blog-content h3 {
  margin: 10px 0;
}

.section-services {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  padding: 50px 20px 10px 20px;
  margin: 0 225px 0 310px;
  background: #f0f1f3;
}
.services-main {
  padding-top: 180px;
}
.services-main h3 {
  font-size: 40px;
  margin-bottom: 20px;
}

.services-main p {
  color: #777;
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 500px;
}

.section-services > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-services > div:last-child > div {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(8, 7, 7, 0.05);
}

.section-services h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.section-services p {
  font-size: 14px;
  color: #666;
}
.happy-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 225px 0 310px;
  background-color: #fff;
  border-radius: 10px;
  padding: 60px 20px;
}
.happy-div {
  text-align: center;
}
.happy-img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.happy-para {
  color: #777;
  line-height: 1.6;
  margin: 20px 0;
  padding: 0 150px;
}
.test-div {
  text-align: center;
  padding: 80px 20px;
  background: #f5f5f5;
  max-width: 900px;
  margin: auto;
}
.test-div h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}
.test-pera {
  color: #777;
  font-size: 14px;
  margin: 0 auto 30px;
  line-height: 1.6;
  padding: 0 200px 0 200px;
}
.test-div h6 {
  font-size: 15px;
  font-weight: 400;
  color: #444;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 25px;
}
.test-div span {
  display: inline-block;
  background: #e0f2fe;
  color: #0284c7;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 13px;
  margin-bottom: 8px;
}
.test-pera2 {
  font-size: 13px;
  color: #666;
}

.contact {
  margin: 20px 220px 0 310px;
  background: #f5f5f5;
  padding: 40px;
  padding-right: 30px;
}

.container {
  display: flex;
  gap: 40px;
}

.left {
  width: 40%;
}

.left h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.left p {
  color: #666;
  margin-bottom: 20px;
}

.box {
  background: #fff;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 6px;
}

.right {
  width: 50%;
}

.right p {
  margin-bottom: 20px;
  color: #666;
}

.right input,
.right textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
}

.row {
  display: flex;
  gap: 10px;
}

.row input {
  width: 50%;
}

button {
  background: purple;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #000000;
  color: #ffffff;
  margin-top: 40px;
}

.footer-navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 50px;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 100px;
}

.footer-logo-img {
  height: 40px;
}

.footer-logo-name {
  font-size: 24px;
  font-weight: bold;
}

.footer-nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.footer-nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #ffffff;
}

.footer-nav-btn {
  padding: 10px 20px;
  background-color: #a53dff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}

.footer-nav-btn:hover {
  background-color: #03a300;
  animation: pulses 0.3s infinite;
  border: 2px solid #03a300;
}
@keyframes pulses {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}