#main {
  position: relative;
}
#hero {
  width: 100%;
  height: 100vh;
  background-image: url("./assets/header.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding-bottom: clamp(20px, 5vh, 5vh);
  position: relative;
}
#hero h1 {
  font-size: clamp(35px, 7vw, 7vw);
  font-weight: normal;
  line-height: 1;
}
#hero h1 span {
  color: var(--primary);
}
#hero-contact-btn {
  position: fixed;
  left: 0;
  top: 0;
  background-color: var(--primary);
  color: #fff;
  padding: clamp(10px, 1vw, 1vw);
  border-radius: 50%;
  width: clamp(100px, 10vw, 10vw);
  height: clamp(100px, 10vw, 10vw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(15px, 1.1vw, 1.1vw);
  scale: 0;
  opacity: 0;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(64px, 12vh, 12vh);
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  z-index: 9;
  background: transparent;
  transition: all 0.3s ease;
}
.header.active {
  background: rgba(0, 0, 0, 0.4);
}

/* Optional direction-based effects */
.header.scroll-down {
  transform: translateY(-100%);
}
.header.scroll-up {
  transform: none;
}
.logo img {
  width: clamp(150px, 10vw, 10vw);
  height: auto;
  object-fit: cover;
}
.menu {
  font-size: clamp(15px, 0.9vw, 0.9vw);
  display: flex;
  align-items: center;
  gap: clamp(5px, 0.5vw, 0.5vw);
  cursor: pointer;
  position: relative;
}
.menu::before,
#closeIcon::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  bottom: -3px;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.menu:hover::before,
#closeIcon:hover::before {
  width: 100%;
}
.menu img {
  width: clamp(15px, 1vw, 1vw);
  height: auto;
  object-fit: cover;
  margin-top: 3px;
}
/* menu-css-starts-here */
#topMenu {
  position: fixed;
  width: 50%;
  min-height: 100vh;
  background-color: #3a3a3a;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 10;
  right: 0;
}
.top-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.top-menu-top p {
  font-size: clamp(15px, 1.1vw, 1.1vw);
  color: #787878;
}
#topMenu .works-card-content {
  display: block;
  row-gap: 0;
}
#topMenu .works-card-content h3 {
  color: #fff;
}
#topMenu .works-card-content {
  display: block;
  row-gap: 0;
}
#topMenu .works-card {
  padding-bottom: clamp(10px, 1vw, 1vw);
}
#topMenu a {
  font-size: clamp(30px, 3vw, 3vw);
  font-family: "Lufga", sans-serif !important;
}
#closeIcon {
  position: relative;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease-in-out;
  font-size: clamp(15px, 1.1vw, 1.1vw);
}
#topMenu .works-card::before {
  bottom: -1px;
}
#topMenu .work-float-image {
  width: clamp(120px, 12vw, 12vw);
}
/* menu-button-css */
/* From Uiverse.io by satyamchaudharydev */
/* button {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
}

button {
  --primary-color: #232426;
  --hovered-color: #f17110;
  position: relative;
  display: flex;
  font-size: clamp(30px, 3vw, 3vw);
  font-family: "Lufga", sans-serif !important;
  gap: 0.5rem;
  align-items: center;
}

button span {
  margin: 0;
  position: relative;
  font-size: clamp(30px, 3vw, 3vw);
  font-family: "Lufga", sans-serif !important;
  color: var(--primary-color);
}

#topMenu a.active button::after,
#topMenu a.active button span::before {
  width: 100%;
}

button::after {
  position: absolute;
  content: "";
  width: 0;
  left: 0;
  bottom: -7px;
  background: var(--hovered-color);
  height: 2px;
  transition: 0.3s ease-out;
}

button span::before {
  position: absolute;
  content: "Home";
  width: 0%;
  inset: 0;
  color: var(--hovered-color);
  overflow: hidden;
  transition: 0.3s ease-out;
}
#topMenu a:nth-child(2) button span::before {
  content: "Halolabs";
}
#topMenu a:nth-child(3) button span::before {
  content: "Technolize";
}
#topMenu a:nth-child(4) button span::before {
  content: "Contact";
}

button:hover::after {
  width: 100%;
}

button:hover span::before {
  width: 100%;
} */
/* about-css-starts-here */
#about {
  position: relative;
  padding: clamp(60px, 12vh, 12vh) 0;
  min-height: calc(100vh - clamp(64px, 12vh, 12vh));
  width: 100%;
  background-color: #f9faf7;
}
#about .container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 4vw, 4vw);
}
.about-left-col {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.about-left-col p {
  font-size: clamp(14px, 1vw, 1vw);
}
.about-left-col img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about-right-col {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 4vw, 4vw);
}
.about-right-col-col1,
.about-right-col-col2 {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2vw, 2vw);
}
.about-right-col-col1 .big-p {
  font-size: clamp(20px, 2vw, 2vw);
  font-weight: normal;
  line-height: 1.2;
  color: #191919;
  font-family: "Outfit", sans-serif !important;
}
.about-right-col-col1 p {
  font-size: clamp(16px, 1.5vw, 1.5vw);
}
.about-right-col-col2 p:nth-child(1) {
  font-size: clamp(12px, 1vw, 1vw);
  color: var(--primary);
}
.about-right-col-col2 p {
  font-size: clamp(16px, 1.5vw, 1.5vw);
  color: #4a4a4a;
}
/* work-css-starts-here */
#works {
  position: relative;
  padding: clamp(60px, 12vh, 12vh) 0;
  min-height: calc(100vh - clamp(64px, 12vh, 12vh));
  width: 100%;
  background-color: var(--bg);
}
#works .container {
  display: flex;
  flex-direction: column;
  row-gap: clamp(40px, 4vw, 4vw);
}
.works-heading {
  display: flex;
  flex-direction: column;
  max-width: 94%;
  align-items: center;
  justify-content: center;
}
.works-heading h1 {
  font-size: clamp(60px, 8vw, 8vw);
  font-weight: normal;
}
.works-heading hr {
  width: 100%;
  height: 1px;
}
.works-row {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 4vw, 4vw);
}
.works-col1 p {
  font-size: clamp(15px, 1vw, 1vw);
  color: #4a4a4a;
  max-width: 77%;
}
.works-col2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2vw, 2vw);
  position: relative;
}
.works-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: clamp(20px, 2vw, 2vw);
  width: 100%;
  height: 100%;
  border-bottom: solid 1px #bebebe;
  padding-bottom: clamp(20px, 2vw, 2vw);
  cursor: pointer;
}
.works-card::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.works-card:hover::before {
  width: 100%;
}
.works-card-content {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.works-card-content h3 {
  font-size: clamp(25px, 2.3vw, 2.3vw);
  color: #232426;
  font-weight: 500;
}
.works-card-content p {
  font-size: clamp(15px, 1.1vw, 1.1vw);
  color: #1d1d1d;
}
.works-arrow-img img {
  width: clamp(20px, 2vw, 2vw);
  transition: all 0.3s ease-in-out;
}
.works-card:hover .works-arrow-img img {
  transform: rotate(-30deg);
}
.work-float-image {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(200px, 20vw, 20vw);
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease;
  scale: 0;
  opacity: 0;
  border-radius: 10px;
}
/* expertise-css-starts-here */
#expertise {
  position: relative;
  padding: clamp(60px, 12vh, 12vh) 0;
  min-height: calc(100vh - clamp(64px, 12vh, 12vh));
  width: 100%;
  background-color: #232426;
  color: #fff;
}
#expertise .container {
  display: flex;
  flex-direction: column;
  row-gap: clamp(40px, 4vw, 4vw);
}
.expertise-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(20px, 2vw, 2vw);
}
.expertise-heading p {
  font-size: clamp(15px, 1vw, 1vw);
  color: #bcbcbc;
  max-width: 70%;
}
.expertise-heading h1 {
  font-size: clamp(60px, 8vw, 8vw);
  font-weight: normal;
  color: #f9faf7;
  line-height: 0.8;
}
.expertise-row {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(20px, 2vw, 2vw);
}
.expeertise-col-2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: clamp(30px, 3vw, 3vw);
}
.expertise-card {
  width: 100%;
  height: 100%;
  padding-bottom: clamp(30px, 3vw, 3vw);
  border-bottom: solid 1px #3a3a3a;
  position: relative;
  cursor: pointer;
}
.expertise-card h3 {
  font-size: clamp(25px, 2.3vw, 2.3vw);
  color: var(--bg2);
  font-weight: 500;
  position: relative;
}
.expertise-card h3::before {
  content: ".01";
  position: absolute;
  top: 1%;
  left: -4%;
  color: var(--primary);
  font-size: clamp(14px, 1vw, 1vw);
}
.expeertise-col-2 .expertise-card:nth-child(2) h3::before {
  content: ".02";
}
.expeertise-col-2 .expertise-card:nth-child(3) h3::before {
  content: ".03";
}
.expeertise-col-2 .expertise-card:nth-child(4) h3::before {
  content: ".04";
}
.expertise-card::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.expertise-card:hover::before {
  width: 100%;
}
/* projects-css-starts-here */
#projects {
  position: relative;
  padding: clamp(60px, 12vh, 12vh) 0;
  height: 100vh;
  width: 100%;
  background-color: #f9faf7;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#projects .container {
  width: 100%;
  height: 100vh;
  display: flex;
  gap: clamp(20px, 2vw, 2vw);
  position: relative;
}
.project-card {
  width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
.project-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#project-btn {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary);
  color: #fff;
  padding: clamp(10px, 1vw, 1vw);
  border-radius: 50%;
  width: clamp(110px, 9vw, 9vw);
  height: clamp(110px, 9vw, 9vw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(15px, 1.1vw, 1.1vw);
  scale: 0;
  opacity: 0;
}
#projects .container h2 {
  display: none;
}
/* counter-css-starts-here */
#counter {
  position: relative;
  padding: clamp(60px, 12vh, 12vh) 0;
  min-height: auto;
  width: 100%;
  background-color: #f9faf7;
  color: #000;
}
#counter .container {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 4vw, 4vw);
}
.counter-col-1,
.counter-col-2 {
  width: 100%;
  height: auto;
}
.counter-col-1 p {
  font-size: clamp(15px, 1vw, 1vw);
  max-width: 70%;
  color: #1d1d1d;
}
.counter-col2-col h4 {
  font-size: clamp(30px, 3vw, 3vw);
  font-weight: 400;
  color: #232426;
}
.counter-col2-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 4vw, 4vw);
}
/* article-css-starts-here */
#articles {
  position: relative;
  padding: clamp(60px, 12vh, 12vh) 0;
  min-height: auto;
  width: 100%;
  background-color: var(--bg);
  color: #000;
}
#articles .container {
  display: flex;
  flex-direction: column;
  row-gap: clamp(30px, 3vw, 3vw);
}
.articles-heading {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 85%;
}
.articles-heading h1 {
  font-size: clamp(60px, 8vw, 8vw);
  font-weight: normal;
  color: #232426;
}
.blogs-inner .articles-heading {
  max-width: 85.5%;
}
.blogs-inner .articles-heading h1 {
  font-size: clamp(50px, 5vw, 5vw);
}
.articles-row {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 4vw, 4vw);
}
.artciles-col-1 p {
  font-size: clamp(15px, 1vw, 1vw);
  color: #4a4a4a;
  max-width: 70%;
}
.artciles-col-2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: clamp(30px, 3vw, 3vw);
}
.artciles-col-2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.articles-col-2-col {
  padding-bottom: clamp(30px, 3vw, 3vw);
  border-bottom: solid 1px #bebebe;
  position: relative;
}
.articles-col-2-col1 {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.articles-col-2-col2,
.articles-col-2-col3 {
  display: flex;
  gap: clamp(20px, 2vw, 2vw);
  align-items: center;
}
.articles-col-2-col2 img,
.articles-col-2-col3 img {
  width: clamp(180px, 9vw, 9vw);
}
.articles-col-2-col2 h4,
.articles-col-2-col3 h4 {
  margin-bottom: 10px;
}
.articles-col-2-col h4 {
  font-size: clamp(30px, 3vw, 3vw);
  font-weight: 400;
  line-height: 1.2;
}
.articles-col-2-col p {
  font-size: clamp(15px, 1vw, 1vw);
}
.articles-col-2-col::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.articles-col-2-col:hover::before {
  width: 100%;
}
#article-btn {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary);
  color: #fff;
  padding: clamp(10px, 1vw, 1vw);
  border-radius: 50%;
  width: clamp(100px, 8vw, 8vw);
  height: clamp(100px, 8vw, 8vw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(15px, 1.1vw, 1.1vw);
  scale: 0;
  opacity: 0;
}
/* footer-css-starts-here */
#footer {
  position: relative;
  width: 100%;
  height: 100%;
}
.footer-bottom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: -2px;
  margin-bottom: -5px;
}
.footer-main-row {
  background-color: #232426;
  color: #fff;
  position: relative;
  padding: clamp(60px, 12vh, 12vh) 0;
}
#footer .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 4vw, 4vw);
}
.footer-col-1 {
  width: 100%;
  height: 100%;
}
.footer-col-1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.footer-col-2 {
  display: flex;
  flex-direction: column;
  row-gap: clamp(40px, 4vw, 4vw);
}
.footer-col-2-top-para {
  font-size: clamp(16px, 1vw, 1vw);
  color: #bcbcbc;
  max-width: 70%;
}
.footer-col-2-col {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.footer-col-2-col span {
  font-size: clamp(12px, 0.8vw, 0.8vw);
  color: var(--primary);
}
.footer-col-2-col p {
  font-size: clamp(22px, 1.1vw, 1.1vw);
}
.footer-mail-col {
  display: flex;
  justify-content: space-between;
  gap: clamp(20px, 2vw, 2vw);
  padding-bottom: clamp(20px, 2vw, 2vw);
  border-bottom: solid 1px #3a3a3a;
  position: relative;
}
.footer-mail-col h3 {
  font-size: clamp(38px, 2vw, 2vw);
  font-weight: 400;
  color: #fff;
}
.footer-mail-col h3 a {
  color: #fff;
}
.footer-mail-col img {
  width: clamp(20px, 2vw, 2vw);
  transition: all 0.3s ease-in-out;
}
.footer-mail-col:hover img {
  transform: rotate(-30deg);
}
.footer-mail-col::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.footer-mail-col:hover::before {
  width: 100%;
}
.footer-social {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 1vw, 1vw);
}
.footer-social-col1 {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.footer-social-col1 a {
  font-size: clamp(19px, 1vw, 1vw);
  color: #f9faf7;
}
.footer-copyright,
.footer-copyright a {
  font-size: clamp(13px, 0.7vw, 0.7vw);
  color: #787878;
}
/* projects-css-starts-here  */
#project-header {
  position: relative;
  width: 100%;
  height: 70vh;
  background-image: url("./assets/projects/project1/1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.technolize #project-header {
  background-image: url("./assets/projects/project2/1.jpg");
}
#contactus-page #project-header {
  background-image: url("./assets/contact-header.png");
  color: #fff;
  display: flex;
  align-items: flex-end;
}
#contactus-page #project-header h1 {
  font-size: clamp(35px, 4.5vw, 4.5vw);
  font-weight: normal;
  position: relative;
  bottom: 10px;
  line-height: 1.2;
}
#projects-about {
  position: relative;
  width: 100%;
  height: auto;
  padding: clamp(60px, 12vh, 12vh) 0;
  background-color: #f9faf7;
}
#projects-about .container {
  display: flex;
  flex-direction: column;
  row-gap: clamp(40px, 4vw, 4vw);
}
.rojects-abt-col-1 {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5vw;
}
.projects-abt-col-1-right-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2vw, 2vw);
}
.projects-abt-col-1-left {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2vw, 2vw);
  max-width: 80%;
}
.projects-abt-col-1-left h2 {
  font-size: clamp(25px, 2.5vw, 2.5vw);
  font-weight: normal;
  color: #1d1d1d;
}
.projects-abt-col-1-left p {
  font-size: clamp(15px, 1.1vw, 1.1vw);
  color: #1d1d1d;
}
.projects-abt-col-1-right {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2vw, 2vw);
}
.projects-abt-col-1-right span {
  font-size: clamp(14px, 1vw, 1vw);
  color: #a1a1a1;
}
.projects-abt-col-1-right p {
  font-size: clamp(15px, 1.1vw, 1.1vw);
  color: #1d1d1d;
}
.projects-abt-col-2 {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2vw, 2vw);
  max-width: 70%;
}
.projects-abt-col-2 > div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: clamp(10px, 1vw, 1vw);
}
.projects-abt-col-2 span {
  font-size: clamp(14px, 1vw, 1vw);
  color: var(--primary);
}
.projects-abt-col-2 p {
  font-size: clamp(15px, 1.1vw, 1.1vw);
  color: #1d1d1d;
}
#font-image {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: clamp(60px, 12vh, 12vh);
}
#font-image .container {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2vw, 2vw);
}
.row-font-image-full {
  width: 100%;
  height: 100%;
  position: relative;
}
.row-font-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2vw, 2vw);
  width: 100%;
  height: auto;
}
.row-font-image-full img,
.row-font-image-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#projects-features {
  position: relative;
  width: 100%;
  height: auto;
  padding: clamp(60px, 12vh, 12vh) 0;
  background-color: var(--bg);
}
#projects-features .container {
  display: flex;
  flex-direction: column;
  row-gap: clamp(30px, 3vw, 3vw);
}
.projects-features-heading {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
.projects-features-heading > div {
  display: flex;
  flex-direction: column;
  row-gap: clamp(10px, 1vw, 1vw);
  max-width: 64%;
}
.projects-features-heading span {
  font-size: clamp(14px, 1vw, 1vw);
  color: var(--primary);
}
.projects-features-heading p {
  font-size: clamp(20px, 1.6vw, 1.6vw);
  color: #4a4a4a;
}
.projects-features-images {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 2vw);
}
.projects-features-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#projects-tools {
  position: relative;
  width: 100%;
  height: auto;
  padding: clamp(60px, 12vh, 12vh) 0;
  background-color: #f9faf7;
}
#projects-tools .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 4vw, 4vw);
}
.projects-tools-col-1,
.projects-tools-col-2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2vw, 2vw);
}
.projects-tools-col-1 span,
.projects-tools-col-2 span {
  font-size: clamp(14px, 1vw, 1vw);
  color: var(--primary);
}
.projects-tools-col-1 p {
  font-size: clamp(15px, 1.1vw, 1.1vw);
  color: #1d1d1d;
}
.projects-tools-col-2 p {
  font-size: clamp(20px, 1.6vw, 1.6vw);
  color: #4a4a4a;
}
/* contact-page-css-starts-here */
#contact-page-header {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #f9faf7;
  padding: clamp(60px, 12vh, 12vh) 0;
}
#contact-page-header .container {
  display: flex;
  flex-direction: column;
  row-gap: clamp(40px, 4vw, 4vw);
}
.contact-page-header-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 4vw, 4vw);
}
.contact-page-header-left p {
  font-size: clamp(15px, 1vw, 1vw);
  color: #1d1d1d;
  max-width: 70%;
}
.contact-page-header-right {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2vw, 2vw);
}
.contact-page-header-right h3 {
  font-size: clamp(25px, 2vw, 2vw);
  font-weight: normal;
  color: #1d1d1d;
}
.contact-page-header-right p {
  font-size: clamp(15px, 1.1vw, 1.1vw);
  color: #1d1d1d;
}
.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 4vw, 4vw);
}
.contact-form-col-1 p {
  font-size: clamp(15px, 1vw, 1vw);
  color: #1d1d1d;
  max-width: 70%;
}
.contact-form-col-2 {
  width: 100%;
  height: 100%;
  position: relative;
}
.contact-form-col-2 form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2vw, 2vw);
}
.contact-form-col-2 form .form-group {
  display: flex;
  flex-direction: column;
  row-gap: clamp(10px, 1vw, 1vw);
  width: 100%;
  height: auto;
}
.contact-form-col-2 form .form-group label {
  font-size: clamp(15px, 1vw, 1vw);
  color: #1d1d1d;
}
.contact-form-col-2 form .form-group input,
.contact-form-col-2 form .form-group textarea {
  width: 100%;
  height: auto;
  padding: clamp(20px, 2vw, 2vw) 0;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: solid 1px #bebebe;
  font-size: clamp(20px, 2vw, 2vw);
  color: #dfdfdf;
  background: transparent;
  font-family: "Outfit", sans-serif;
}
textarea {
  height: clamp(80px, 8vw, 8vw) !important;
}
.contact-form-col-2 form .form-group input:focus,
textarea:focus {
  outline: none;
  border-bottom: solid 1px var(--primary);
}
#submit-btn {
  width: fit-content;
  font-size: clamp(20px, 2vw, 2vw);
  color: var(--primary);
  transition: all 0.3s ease-out;
  margin-top: clamp(20px, 2vw, 2vw);
  margin-bottom: clamp(60px, 12vh, 12vh);
  font-weight: normal !important;
  background: transparent;
  border: none;
}
#submit-btn:hover {
  transform: scale(1.1);
}
.contact-form-col-2 form .form-group select {
  border: none;
  background: transparent;
  font-size: clamp(20px, 2vw, 2vw);
  border-bottom: solid 1px #bebebe;
  padding: clamp(20px, 2vw, 2vw) 0;
  font-family: "Outfit", sans-serif;
}
#submit-btn::after {
  width: 100%;
}
/* blog-css-starts-here */
.blogs-inner #project-header {
  background-image: url("./assets/blogs/design-led-1.png");
}
.blogs-inner-2 #project-header {
  background-image: url("./assets/blogs/blog2/header.png");
}
.blogs-inner-3 #project-header {
  background-image: url("./assets/blogs/blog3/header.png");
}
#blogs-inner-row {
  position: relative;
  width: 100%;
  height: auto;
  padding: clamp(60px, 12vh, 12vh) 0;
}
#blogs-inner-row .container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 4vw, 4vw);
}
.blogs-inner-col1 p {
  font-size: clamp(15px, 1vw, 1vw);
  color: #1d1d1d;
}
.blogs-inner-col2 {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2vw, 2vw);
}
.blogs-inner-col2 h2 {
  font-size: clamp(25px, 2.5vw, 2.5vw);
  font-weight: normal;
  color: #1d1d1d;
}
.blogs-inner-col2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.blogs-inner-col2 p {
  font-size: clamp(15px, 1.1vw, 1.1vw);
  color: #1d1d1d;
}
.blogs-inner-col2 ul {
  list-style: disc;
  padding-left: clamp(20px, 2vw, 2vw);
  font-size: clamp(15px, 1.1vw, 1.1vw);
  color: #1d1d1d;
}
/* work-page-css-starts-here */
#work-page-sec-1 {
  position: relative;
  width: 100%;
  height: auto;
  padding: clamp(60px, 12vh, 12vh) 0;
  background-color: #fff;
}
#work-page-sec-1::before {
  content: "";
  position: absolute;
  width: 92%;
  height: 1px;
  background-color: #bebebe;
  bottom: 0;
  left: 4%;
  transition: all 0.3s ease-in-out;
}
#work-page-sec-1 .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 4vw, 4vw);
}
.work-page-sec-1-col1 p {
  font-size: clamp(15px, 1.1vw, 1.1vw);
  color: #1d1d1d;
  max-width: 60%;
}
.work-page-sec-1-col2 {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2vw, 2vw);
}
.work-page-sec-1-col2 h4 {
  font-size: clamp(18px, 1.5vw, 1.5vw);
  font-weight: normal;
  color: #1d1d1d;
  max-width: 50%;
}
.work-page-sec-1-col2 p {
  font-size: clamp(15px, 1.1vw, 1.1vw);
  color: #1d1d1d;
  max-width: 60%;
}
#work-scroll {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
  padding: clamp(60px, 12vh, 12vh) 0;
  background-color: #fff;
  display: flex;
  align-items: center;
}
#work-scroll .container {
  display: flex;
  gap: clamp(40px, 4vw, 4vw);
  white-space: nowrap;
}
.work-scroll-card {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2vw, 2vw);
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  width: 60%;
}
.work-scroll-cards-heading-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.work-scroll-card-heading {
  padding-left: clamp(20px, 2vw, 2vw);
  position: relative;
}
#work-scroll .work-scroll-card .work-scroll-card-heading::before {
  content: ".01";
  position: absolute;
  top: 10%;
  left: 0;
  color: #000;
  font-size: clamp(12px, 0.8vw, 0.8vw);
}
#work-scroll .work-scroll-card:nth-child(2) .work-scroll-card-heading::before {
  content: ".02";
}
.work-scroll-card-heading h2 {
  font-size: clamp(25px, 2.5vw, 2.5vw);
  font-weight: normal;
  color: #232426;
}
.work-scroll-card-heading p {
  font-size: clamp(15px, 1.1vw, 1.1vw);
  color: #4a4a4a;
}
.work-scroll-card-arrow img {
  width: clamp(20px, 2vw, 2vw);
  transition: all 0.5s ease;
  transform: rotate(0deg);
}
.work-scroll-card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.work-scroll-card:hover .work-scroll-card-image img {
  scale: 0.98;
}
.work-scroll-card:hover .work-scroll-card-arrow img {
  transform: rotate(-30deg);
}
/* about-css-starts-here */
#about-page-sec-01 {
  position: relative;
  width: 100%;
  height: auto;
  padding: clamp(60px, 12vh, 12vh) 0;
  background-color: #f9faf7;
}
#about-page-sec-01 .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 4vw, 4vw);
}
.about-page-sec-01-col-1 p {
  font-size: clamp(15px, 1.1vw, 1.1vw);
  color: #1d1d1d;
}
.about-page-sec-01-col-2 {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2vw, 2vw);
}
.about-page-sec-01-col-2 h4 {
  font-size: clamp(18px, 1.5vw, 1.5vw);
  font-weight: normal;
  color: #1d1d1d;
}
.about-page-sec-01-col-2 p {
  font-size: clamp(15px, 1.1vw, 1.1vw);
  color: #1d1d1d;
}
.about-page-sec-01-col-2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about-page-sec-01-col-2 a {
  font-size: clamp(18px, 1.5vw, 1.5vw);
  color: var(--primary);
  border-bottom: solid 2px var(--primary);
  width: fit-content;
  padding-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.about-page-sec-01-col-2 a:hover {
  color: #000;
  border-bottom: solid 2px #000;
  transform: scale(1.05);
}
.about-page .counter-col-2 {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2vw, 2vw);
}
.counter-col-2-top-para {
  font-size: clamp(18px, 1.5vw, 1.5vw);
  color: #1d1d1d;
  max-width: 70%;
}
.counter-col2-col2 {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 2vw, 2vw);
}
.counter-col2-col2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.counter-col2-col2 p {
  font-size: clamp(16px, 1.2vw, 1.2vw);
  color: #1d1d1d;
  max-width: 80%;
}
#about-page-sec-02 {
  position: relative;
  width: 100%;
  height: auto;
  padding: clamp(60px, 12vh, 12vh) 0;
  background-color: #232426;
  color: #fff;
  display: flex;
  flex-direction: column;
  row-gap: clamp(40px, 4vw, 4vw);
}
#about-page-sec-02 .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 4vw, 4vw);
}
.about-header-col1 p {
  font-size: clamp(12px, 0.8vw, 0.8vw);
  color: #fff;
  max-width: 60%;
}
.about-header-col2 h4 {
  font-size: clamp(18px, 1.5vw, 1.5vw);
  font-weight: normal;
  color: #fff;
}
.about-img-scroll-sec {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.about-img-scroll-sec:hover .about-img-scroll {
  animation-play-state: paused;
}

.about-img-scroll {
  display: inline-block;
  width: clamp(300px, 30vw, 30vw);
  height: auto;
  margin-left: clamp(20px, 2vw, 2vw);
  animation: scroll-left 15s linear infinite;
  object-fit: cover;
  border-radius: 10px;
}
/* blogs-css-starts-here */
#blogs-scroll {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: clamp(60px, 12vh, 12vh) 0;
  background-color: #fff;
  display: flex;
  align-items: center;
}
#blogs-scroll .container {
  display: flex;
  gap: clamp(40px, 4vw, 4vw);
}
.blog-scroll-card {
  display: flex;
  flex-direction: column;
  row-gap: clamp(10px, 1vw, 1vw);
  height: auto;
  flex-shrink: 0;
  width: 60%;
}
.blog-scroll-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.blog-scroll-card h2 {
  font-size: clamp(25px, 2.5vw, 2.5vw);
  font-weight: normal;
  color: #232426;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* media-queries-starts-here */
@media only screen and (max-width: 767px) {
  #topMenu {
    width: 100%;
    padding: 20px;
  }
  #about .container {
    grid-template-columns: 1fr;
    row-gap: 80px;
  }
  .works-row {
    grid-template-columns: 1fr;
    row-gap: 80px;
  }
  .expertise-heading {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .expertise-heading p {
    max-width: 70%;
  }
  .expertise-row {
    grid-template-columns: 1fr;
  }
  .expeertise-col-1 {
    display: none;
  }
  .expertise-card h3 {
    margin-left: 40px;
  }
  .expertise-card h3::before {
    left: -12%;
  }
  #projects,
  #projects .container {
    height: auto !important;
  }
  #projects .container {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  #projects .container h2 {
    display: block;
    font-size: 50px;
    font-weight: 500;
  }
  #counter .container {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .counter-col-1 p {
    max-width: 100%;
  }
  .counter-col2-col {
    grid-template-columns: repeat(2, 1fr);
  }
  .articles-row {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .articles-col-2-col h4 {
    font-size: 25px;
  }
  .articles-col-2-col2,
  .articles-col-2-col3 {
    flex-direction: column;
    align-items: flex-start;
  }
  #footer .container {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .rojects-abt-col-1 {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .projects-abt-col-1-left {
    max-width: 100%;
  }
  .projects-abt-col-2 {
    grid-template-columns: 1fr;
    row-gap: 20px;
    max-width: 100%;
  }
  .projects-features-heading {
    justify-content: flex-start;
  }
  .projects-features-heading > div {
    max-width: 100%;
  }
  #projects-tools .container {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .contact-page-header-row,
  .contact-form-section {
    grid-template-columns: 1fr;
  }
  .works-heading {
    max-width: 100%;
    align-items: flex-start;
  }
  .articles-heading {
    justify-content: center;
    max-width: 100%;
  }
  #blogs-inner-row .container {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  #work-page-sec-1 .container {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .work-page-sec-1-col1 p {
    max-width: 100%;
  }
  .work-page-sec-1-col2 h4 {
    max-width: 100%;
  }
  .work-page-sec-1-col2 p {
    max-width: 100%;
  }
  .work-scroll-card {
    width: 75%;
  }
  .about-page #project-header h1 {
    font-size: 30px !important;
  }
  #about-page-sec-01 .container {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .counter-col-2-top-para,
  .counter-col2-col2 p {
    max-width: 100%;
  }
  #about-page-sec-02 .container {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .blog-scroll-card {
    width: 100%;
  }
  #project-header {
    background-image: url("./assets/mobile/halolabs-header.jpg");
  }
  #hero {
    background-image: url("./assets/mobile/home-page-header.png");
  }
  #hero-heading {
    font-size: 50px !important;
  }
  .technolize #project-header {
    background-image: url("./assets/mobile/technolize-header.jpg");
  }
  .blogs-inner #project-header {
    background-image: url("./assets/mobile/blog-1-header.png");
  }
  .blogs-inner-2 #project-header {
    background-image: url("./assets/mobile/blog-2-header.png");
  }
  .blogs-inner-3 #project-header {
    background-image: url("./assets/mobile/blog-3-header.png");
  }
}
.header.hidden {
  transform: translateY(-100%);
  transition: transform 0.2s ease;
}
