* {
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Oswald";
  src: url(font/Oswald/static/Oswald-Regular.ttf);
}

@font-face {
  font-family: "Montserrat";
  src: url(font/Montserrat/Montserrat-VariableFont_wght.ttf);
}

body {
  width: 85%;
  margin: auto;
  font-family: "Montserrat";
  background: #201f1f;
  color: rgb(255, 255, 255);
  text-align: center;
}

header {
  top: 0;
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-header h2{
  font-family: "Oswald";
  font-weight: 400;
  font-size: 70px;
  text-align: center;
  margin-top: 15px;
}

.close-icon {
  font-size: 40px;
  cursor: pointer;
  color: white;
  transition: 0.3s;
  padding: 2px 15px;
  border: 1px solid white;
  border-radius: 50%;
  transition: 0.5s;
}

.close-icon:hover {
  background-color: white;
  color: black;
}

.btn.disabled,
.btn-stack.disabled {
  opacity: 0.3 !important;
  pointer-events: none; /* hover/click বন্ধ */
}

main {
  margin-top: 72px;
  margin-bottom: 72px;
}

.logo {
  width: 100px;
}
.logo image {
  display: block;
}

/* get touch form */

#mainContent {
  transition: opacity 0.3s ease-in-out;
}

.contact-form-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background-color: #121212;
  padding: 40px;
  z-index: 999;
}

.contact-form-style {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "Montserrat";
}

.contact-form-wrapper h2 {
  font-family: "Oswald";
  font-size: 70px;
  margin-bottom: 20px;
  text-align: start;
  color: white;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: start;
  color: #ffffffcc;
}

input,
textarea {
  padding: 12px;
  background-color: #0e0e0e;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full-width {
  width: 100%;
}

.btn {
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  align-self: flex-start;
  background-color: transparent;
  border: 1px solid white;
  padding: 10px 25px;
  color: white;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.5s;
}

.send-btn:hover {
  background-color: white;
  color: black;
}

/* End */

.arrow {
  display: none;
  transition: 1s;
}

.btn:hover {
  background-color: white;
  color: black;
}

.btn2 span {
  display: none;
}

.btn2:hover {
  background-color: white;
  color: white;
}

.btn2 span:hover span::after {
  color: white;
  background-color: aqua;
}

/* start behance button  */

.btn-stack {
  position: relative;
  display: inline-block;
  padding: 20px 130px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid white;
  border-radius: 30px;
  color: white;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  height: 40px;
  transition: background-color 0.5s, color 0.5s;
}

.btn-stack .a,
.btn-stack .b {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
  line-height: 38px;
}

.btn-stack .b {
  opacity: 0;
  transform: translateY(10px);
}

.btn-stack:hover .a {
  opacity: 0;
  transform: translateY(-10px);
}
.btn-stack:hover .b {
  opacity: 1;
  transform: translateY(0);
}

.btn-stack:hover {
  background-color: white;
  color: black;
}

/*   end   */

h1 {
  font-family: "Oswald";
  font-weight: 400;
  font-size: 70px;
  margin-top: 75px;
  margin-bottom: 28px;
  line-height: 90%;
}

.subtitle {
  margin-top: 64px;
  font-weight: 700;
  font-size: 15px;
}

.services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px auto;
  text-align: left;
  align-items: stretch;
}

.service {
  background: #252424;
  padding: 18px;
  border-radius: 10px;
  width: 340px;
  display: flex;
  flex-direction: column;
  height: 350px;
}

.service h3 {
  font-weight: 700;
  font-size: 17px;
  margin-top: 4px;
}

.service ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.service li {
  border-bottom: 1px dotted #555;
  padding: 16px 0;
  font-size: 15px;
  color: rgba(201, 194, 194, 0.834);
}

.proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 64px;
}

.proof p {
  font-weight: 700;
  font-size: 15px;
}

.cta {
  margin-top: 64px;
}

.cta h2 {
  font-family: "Oswald";
  font-weight: 400;
  font-size: 70px;
  margin-top: 64px;
  margin-bottom: 28px;
  line-height: 90%;
}

footer {
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  font-size: 15px;
  color: #aaa;
}

.social a {
  margin-left: 15px;
  color: #aaa;
  text-decoration: none;
}
.social a:hover {
  color: white;
}

.fixed-button {
  position: fixed;
  top: 20px;
  right: 200px;
  z-index: 1000;
  background-color: #121212;
  padding: 10px 16px;
  border-radius: 30px;
}
