@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

body {
  background-color: #151312;
  font-family: "Poppins", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

a,
ol,
ul,
li,
p {
  list-style-type: none;
  text-decoration: none;
  margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0px;
}

ul {
  padding: unset;
}
.ste_ctn {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
/* header */
header {
  position: relative;
}
.brand_initials {
  position: absolute;
  left: 20px;
  top: 38px;
  z-index: 10;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}
header nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  z-index: 9;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  opacity: 1;
  width: fit-content;
  padding: 20px;
  margin: 0;
}
header nav ul.text_nav {
  padding: 10px 20px;
  gap: 20px;
}
header nav ul.text_nav a {
  font-size: 12px;
  font-weight: 600;
  color: #998f8f;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
header nav ul.text_nav a:hover {
  color: #fff;
}
header nav ul li a {
  display: flex;
}
header nav ul li a img {
  width: 20px;
  height: 20px;
}
/* header */
/* main wraper */
.site_main_wrap {
  display: grid;
  grid-template-columns: 350px 1fr;
  padding: 160px 20px 0;
  gap: 80px;
  position: relative;
}
.inverted_line_2 {
    
    left: unset !important;
}
.non_fix_cont_sec {
  margin-bottom: 120px;
}
.profile_block {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  position: sticky;
  top: 50px;
  overflow: hidden;
}
.inverted_line_1 {
  position: absolute;
  width: 194px;
  left: 0;
  top: 0;
}
.inverted_line_2 {
  position: absolute;
  width: 270px;
  height: 166px;
  top: 348px;
  left: -135px;
}
.profile_block .profile_image img {
  width: 240px;
  height: 284px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto;
  margin-bottom: 24px;
}
.profile_block .profile_cntnt {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.profile_block .profile_cntnt h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #000;
}
.profile_block .profile_cntnt p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #6a6b6e;
  text-align: center;
}
.main_heading h2 {
  font-size: 110px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.main_heading h2 span {
  color: #353334;
}
.main_heading p {
  font-size: 18px;
  font-weight: 500;
  color: #998f8f;
}
.stats-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 490px;
  gap: 50px;
  margin-top: 60px;
}

.stat {
  flex: 1;
}

.stat h2 {
  font-size: 70px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.stat p {
  font-size: 14px;
  color: #9e9e9e;
  letter-spacing: 1px;
}
/* main wraper */
/* proj css starts */
.project_main_wrap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.project_main_wrap .project_block {
  background-color: transparent;
  padding: 20px 20px;
  gap: 20px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  transition: all 0.4s ease;
}
.project_main_wrap .project_block:hover {
  background-color: #1c1a19;
}
.project_main_wrap .project_block .project_image {
  width: 150px;
}
.project_main_wrap .project_block .project_image img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
}
.project_main_wrap .project_block .project_cntnt {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project_main_wrap .project_block .project_cntnt h3 {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}
.project_main_wrap .project_block .project_cntnt p {
  font-size: 18px;
  font-weight: 500;
  color: #998f8f;
}
.project_main_wrap .project_block .project_cntnt .project_desc {
  width: 100%;
  max-width: 90%;
}
.project_main_wrap .project_block .project_cntnt p.thought_read {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.project_main_wrap .project_block img.arw {
  position: absolute;
  width: 20px;
  transform: rotate(-45deg);
  right: 40px;
}
.project_main_wrap.tools_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.project_main_wrap.tools_wrap .project_block .project_image {
  width: 60px;
}
.project_main_wrap.tools_wrap .project_block .project_image img {
  height: 60px;
  object-fit: contain;
}
.project_main_wrap.tools_wrap .project_block .project_image img[alt="Express"] {
  filter: invert(1);
}
.project_main_wrap.tools_wrap .project_block .project_cntnt {
  gap: 0;
}
/* proj css ends */
/* form css */
form {
  width: 100%;
  margin-top: 50px;
}

.row {
  display: flex;
  gap: 20px;
}

label {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: rgba(182, 180, 189, 0.2);
  color: #fff;
  outline: none;
}
select option {
  color: #353334;
}
input::placeholder,
textarea::placeholder {
  color: #999;
}

textarea {
  height: 120px;
  resize: none;
}

.field {
  flex: 1;
  margin-bottom: 20px;
}

button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #f46c38;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background: #ff7a4d;
}
/* form css */
.social_icons ul{
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}
.social_icons ul li a i{
	font-size: 22px;
	color: #ff7a00;
}
.read_more_btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  border-radius: 8px;
  background: #f46c38;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}
.read_more_btn:hover {
  background: #ff7a4d;
}
.greeting {
  font-size: 16px;
  color: #f46c38;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.hero_desc {
  margin-top: 20px;
  max-width: 600px;
}
.about_content {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about_content p {
  font-size: 18px;
  font-weight: 500;
  color: #998f8f;
  line-height: 1.7;
  max-width: 700px;
}
.project_num {
  font-size: 14px;
  font-weight: 600;
  color: #f46c38;
  letter-spacing: 1px;
}
.project_tags {
  font-size: 14px !important;
  color: #6a6b6e !important;
}
.service_tagline {
  color: #f46c38 !important;
  font-size: 16px !important;
}
.skills_list {
  font-size: 14px !important;
  color: #6a6b6e !important;
}
.contact_info {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact_info p {
  font-size: 16px;
  color: #998f8f;
}
.contact_info a {
  color: #f46c38;
  transition: color 0.3s ease;
}
.contact_info a:hover {
  color: #ff7a4d;
}
.site_footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site_footer p {
  font-size: 14px;
  color: #6a6b6e;
  margin-bottom: 8px;
}
.footer_links a {
  color: #998f8f;
  transition: color 0.3s ease;
}
.footer_links a:hover {
  color: #fff;
}
.tech_fallback {
  margin-top: 24px;
  font-size: 14px;
  color: #6a6b6e;
  font-style: italic;
}
@media screen and (max-width: 1024px) {
  .site_main_wrap {
    grid-template-columns: 1fr;
    padding: 160px 20px 0;
    gap: 80px;
    position: relative;
  }
  .main_heading h2 {
    font-size: 80px;
  }
  .non_fix_cont_sec {
    margin-bottom: 50px;
}
}
@media screen and (max-width: 640px) {
.stats-section {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
}
}
@media screen and (max-width: 480px) {
    .stats-section {
        flex-wrap: wrap;
    }
	    .main_heading h2 {
        font-size: 50px;
    }
	.project_main_wrap.tools_wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
.project_main_wrap .project_block .project_cntnt p {
    font-size: 14px;
}
.project_main_wrap .project_block .project_cntnt .project_desc {
    width: 100%;
    max-width: 70%;
}
    .site_main_wrap {
        padding: 130px 20px 0;
    }
	.project_main_wrap .project_block .project_cntnt h3 {
    font-size: 23px;
}
.stat h2 {
    font-size: 45px;
}
.project_main_wrap .project_block .project_image {
    width: 100px;
}
.project_main_wrap .project_block .project_image img {
    width: 100%;
    height: 100px;
}
}
