/*
img[alt="www.000webhost.com"]
{
	display:none;
}
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

*::selection {
  color: inherit;
}

input::selection,
textarea::selection {
  color: #000;
  background-color: #fe0000;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: #000000;
  color: #fff;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Hide the default scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #1d1d1d;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #6d6d6d;
  border-radius: 40px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(167, 167, 167);
}

/* ----------------preloader-------------- */
#preloader {
  background: #000 url(assets/loader.gif) no-repeat center center;
  background-size: 2.5%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}

#content {
  opacity: 0;
  transition: opacity 1s ease-in-out; /*Add transition for opacity  */
}

#header {
  width: 100%;
  height: 100vh;
  background-image: url(assets/bg.png);
  background-size: cover;
  background-position: center;
  margin-bottom: 150px;
}

.header-cont {
  padding: 10px 5%;
}

.intro-section {
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8%;
  background-color: transparent;
  color: #f1f5f9;
}

.intro-text {
  width: 30%;
}

.intro-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.intro-text .highlight {
  color: #38bdf8; /* sky blue or pick a highlight color */
}

.intro-text p {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #cbd5e1;
}

.red-dot {
  color: red;
  font-weight: 900;
  font-size: larger;
}

.container {
  width: 100%;
  padding: 10px 5%;
  display: flex;
  justify-content: center; /*for main-axis(horizontal) */
  align-items: center; /*for cross-axis(vertical)*/
  /* min-width: 700px; */ /*the zoom in issue was happening due to this*/
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  margin-top: 10px;
  width: 150px;
  height: 60px;
  cursor: none;
}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  color: #fe0000;
  font-weight: 900;
}

nav .fas {
  display: none;
}

.header-text {
  margin-top: 600px;
}

.header-text h1 {
  font-size: 1.7em;
  margin-top: 1em;
  margin-bottom: 1em;
  font-family: "Julius Sans One", sans-serif;
  color: #bbbbbb;
  font-weight: 900;
}

.header-text p {
  font-size: 1.1em;
}

.header-text h1 span.name {
  color: #fe0000;
  font-size: 1em;
  font-weight: 100;
  font-family: "Edu AU VIC WA NT Hand", sans-serif;
  cursor: none;
}
.header-text span.cursor-hide {
  cursor: none;
}

/* ------------------------------------- */
#about {
  padding: 80px 0;
  color: #e6e6e6;
}

.row {
  display: flex;
  justify-content: center;
}
.about-col-1 {
  flex-basis: 50%;
}
.about-col-1 img {
  width: 100%;
  height: 90%;
  padding-top: 20px;
  margin-bottom: -40px;
  max-height: 570px;
}
.about-col-2-cont {
  border: 2px solid #cbcbcb;
  border-radius: 20px;
  padding: 20px 20px;
  box-shadow: 1px 1px 10px 1px rgb(131, 131, 131);
}

.about-col-2 {
  flex-basis: 60%;
  height: 440px;
  padding: 20px 0 0 0;
  margin-bottom: 4em;
  margin-right: 0.5em;
  margin-left: 0.5em;
  justify-content: center;
}
#about h1 {
  margin: 5px 0 20px 0;
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 2.5em;
  font-family: "Montserrat", sans-serif;
  text-shadow: rgb(118, 118, 118) 3px 4px;
}
.about-me-para {
  font-size: 16px;
}

.tab-titles {
  display: flex;
  margin: 20px 0 40px;
}
.tab-links {
  margin-top: 10px;
  margin-right: 50px;
  margin-left: 70px;
  font-size: 17px;
  font-weight: 600;
  color: #b4b4b4;
  cursor: pointer;
  position: relative;
  transition: font-size 0.5s;
}
.tab-links:hover {
  color: #fff;
}
.tab-links::after {
  content: "";
  width: 0;
  height: 3px;
  background-color: #fe0000;
  position: absolute;
  left: 0;
  bottom: -7px;
  transition: 0.4s ease-in;
}
.tab-links.active-link::after {
  width: 100%;
}
.active-link {
  color: #fff;
  font-size: 19px;
}

.content-sub-headings {
  color: #fe0000;
  font-size: large;
}
.content-lists {
  list-style: none;
  margin-bottom: 1em;
}
.tab-contents {
  display: none;
}
.tab-contents.active-tab {
  display: block;
}

/* -------------------------------------- */
#services {
  padding: 30px 0;
  margin-bottom: 150px;
}
.services-list {
  display: grid;
  /* grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); */
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  margin-top: 50px;
}

#services h1 {
  font-size: 3em;
  font-family: "Montserrat", sans-serif;
  text-shadow: rgb(118, 118, 118) 3px 4px;
  text-align: center;
}

#services h2 {
  color: #fe0000;
  font-family: "Julius Sans One", sans-serif;
  margin-bottom: 10px;
}

#services p {
  font-family: "Ubuntu", sans-serif;
  line-height: 1.5em;
  font-weight: 100;
}

.services-list div {
  background-color: #111111;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  transition: background 0.5s, transform 0.5s;
}
.services-list div i {
  font-size: 40px;
  margin: 30px;
}
.services-list div:hover {
  background-color: #191919;
  transform: translateY(-10px);
}

/* #---------------------------------------- */
#portfolio {
  padding: 20px 0 170px 0;
}

#portfolio .container {
  padding-top: 0px;
}

#portfolio h1 {
  margin-bottom: 50px;
  text-align: center;
  font-size: 4em;
  font-family: "Montserrat", sans-serif;
  text-shadow: rgb(118, 118, 118) 3px 4px;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.work-list {
  display: flex;
  transition: transform 0.5s ease;
}

.work {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.work-content {
  width: 100%;
  max-width: 600px;
  position: relative;
  overflow: hidden;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 100px;
  border: 1px solid #000;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}
.nav-button:hover {
  color: #fe0000;
}
.nav-button:active {
  color: #fe0000;
}

.left-button {
  left: 0;
}

.right-button {
  right: 0;
}

.layer p,
.layer h3 {
  font-family: "Overpass", sans-serif;
}

.work {
  position: relative;
  overflow: hidden;
}

.work img {
  width: 100%;
  height: auto;
  max-height: 400px; /* Ensure the image doesn't get too tall */
  display: block;
  object-fit: cover; /* Maintain aspect ratio */
  transition: transform 0.5s;
}

.layer {
  width: 100%;
  height: 0;
  background: linear-gradient(rgb(0, 0, 0, 0.6), #000000);
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  transition: height 0.5s;
}

.layer h3 {
  color: #fe0000;
  font-weight: 500;
  font-size: 1.4em;
  margin-bottom: 20px;
}

.layer p {
  color: #fff;
  font-size: 1em;
  font-weight: 300;
}

.layer a {
  margin-top: 20px;
  font-size: 1em;
  text-decoration: none;
  line-height: 60px;
}

.work-content:hover img {
  transform: scale(1.02, 1.02);
}

.work-content:hover .layer {
  height: 100%;
}

/* ------------------- */
#toolkit {
  padding: 20px 0 170px 0;
  margin-bottom: 150px;
}

#toolkit .container {
  padding-top: 0px;
}

#toolkit h1 {
  margin-bottom: 60px;
  margin-left: 30px;
  font-size: 4em;
  font-family: "Montserrat", sans-serif;
  text-shadow: rgb(118, 118, 118) 3px 4px;
}

#toolkit {
  text-align: center;
  padding: 20px;
}

.main-heading {
  font-size: 2em;
  margin-bottom: 20px;
}

.toolkit-cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.icon {
  text-align: center;
  width: 100px;
}

.icon img {
  width: 40px; /* Adjust size as needed */
  height: auto;
  display: block;
  margin: 10px auto;
}

.invert-icon-clr {
  filter: invert(1) brightness(2); /* Adjust as needed */
}

.bright-icon-clr {
  filter: brightness(1.5); /* Adjust as needed */
}

/* ------------------------------ */

#contact h1 {
  margin-top: 50px;
  font-size: 4em;
  font-family: "Montserrat", sans-serif;
  text-shadow: rgb(118, 118, 118) 3px 4px;
}
.contact-left {
  flex-basis: 100%;
}
.contact-right {
  flex-basis: 100%;
  padding-top: 40px;
}

.contact-left p {
  text-decoration: none;
  margin-top: 30px;
  font-size: 1em;
}
.contact-left p i {
  margin-right: 15px;
  margin-left: 8%;
  color: #fff;
  font-size: 1em;
}

.social-icons {
  margin-left: 112px;
  margin-top: 4em;
}

.social-icons a {
  text-decoration: none;
  font-size: 1.3em;
  margin-right: 20px;
  margin-bottom: 0.5em;
  color: #9c9c9c;
  display: inline-block;
  transition: all 0.5s;
}

.social-icons a:hover {
  color: #d70000;
  /* transform:translateY(-4px); */
  transform: scale(1.3, 1.3);
}

.social-icons a:active {
  color: #d70000;
  /* transform:translateY(-4px); */
  transform: scale(1.3, 1.3);
}

.btn-download {
  display: inline-block;
  width: fit-content;
  border: 2px solid #e10000;
  font-family: "Ubuntu", sans-serif;
  font-size: 0.9em;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.5s ease;
  cursor: default;
  padding: 10px 20px;
  background-color: #000;
  margin-top: 20px;
  margin-left: 100px;
}

.btn-download:hover {
  background-color: #e10000;
  color: #000000;
  font-weight: 500;
}

.btn-download:active {
  background-color: #e10000;
  color: #000000;
}

.btn-submit {
  display: inline-block;
  border: 2px solid #e10000;
  font-family: "playwrite ng modern", sans-serif;
  font-size: 0.8em;
  font-weight: 200;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: all 0.5s ease;
  cursor: default;
  background-color: #000;
  padding: 5px 10px;
  margin-left: 48%;
  margin-top: 0.5em;
  transition: all 0.5s ease;
}
.btn-submit:hover {
  background-color: #e10000;
  color: #000000;
  font-weight: 900;
}

.btn-submit:active {
  background-color: #e10000;
  color: #000000;
  font-weight: 900;
}

.contact-right form {
  width: 100%;
}
form input,
form textarea {
  width: 100%;
  border: 0;
  outline: none;
  padding: 15px;
  font-family: "comfortaa", sans-serif;
  margin: 15px;
  color: #fff;
  background: #161616;
  font-size: 0.9em;
  border-radius: 6px;
}
.copyright {
  width: 100%;
  text-align: center;
  padding: 18px 0;
  color: #000;
  background: #c90000;
  font-weight: 300;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 12px;
  margin-top: 20px;
}

.copyright p {
  font-family: "Inconsolata", sans-serif;
}

.cont-msg {
  display: flex;
  justify-content: center;
  align-items: center;
}

#msg {
  margin-top: 30px;
  font-size: 0.9em;
  /* font-family: 'Roboto Mono',sans-serif; */
  display: block;
  margin-left: 11%;
}

/* MEDIA QUERIES FOR RESPONSIVENESS*/

@media (max-width: 768px) {
  #preloader {
    background-size: 4%;
  }
}
@media (max-width: 490px) {
  #preloader {
    background-size: 7%;
  }
}

@media (max-width: 330px) {
  #preloader {
    background-size: 8%;
  }
}

@media (max-height: 900px) {
  .header-text {
    margin-top: 500px;
  }
}

@media (max-height: 780px) {
  .header-text {
    margin-top: 450px;
  }
}

@media (max-height: 750px) {
  .header-text {
    margin-top: 430px;
  }
}

@media (max-height: 750px) {
  .header-text {
    margin-top: 400px;
  }
}

@media (max-height: 650px) {
  .header-text {
    margin-top: 300px;
  }
}

@media (max-height: 580px) {
  .header-text {
    margin-top: 250px;
  }
}

@media (max-height: 550px) {
  .header-text {
    margin-top: 200px;
  }
}

@media (max-width: 768px) {
  .services-list {
    grid-template-columns: 1fr; /* Single column on smaller screens */
  }
}

@media (max-width: 768px) {
  .work img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .work-content {
    width: 80%;
  }

  #portfolio h1 {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 700px) {
  .copyright {
    font-size: 0.9em;
  }
}

@media only screen and (max-width: 480px) {
  .copyright {
    font-size: 0.8em;
    letter-spacing: 1px;
  }
}

@media only screen and (max-width: 380px) {
  .copyright {
    font-size: 0.7em;
    letter-spacing: 1px;
  }
}

/*! order will be descending because max width is being targeted */
@media (max-width: 1400px) {
  #header {
    background-image: url(assets/bg-ml.png);
  }
}

@media (max-width: 1141px) {
  #header {
    background-image: url(assets/bg-m.png);
  }
  .logo {
    margin-top: 10px;
    width: 130px;
    height: 55px;
    cursor: none;
  }
  .header-text h1 {
    font-size: 1.7em;
  }
  .header-text p {
    padding-top: 1em;
  }
}

@media (max-width: 1000px) {
  .logo {
    margin-top: 10px;
    width: 130px;
    height: 55px;
    cursor: none;
  }
  img.design-photo {
    height: 80%;
    width: 300px;
    padding: 0;
    margin: 0;
    padding-bottom: 60px;
    transform: rotate(90deg);
  }

  #about {
    padding-top: 0;
  }
  #about .container .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
  }

  .about-col-1 {
    margin-bottom: 150px;
  }

  #header {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 700px) {
  #header {
    background-image: url(assets/bg-s.png);
  }

  img.design-photo {
    height: 400px;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .logo {
    margin-top: 10px;
    width: 130px;
    height: 55px;
    cursor: none;
  }

  .header-text h1 {
    font-size: 1.7em;
  }
  .header-text p {
    padding-top: 1em;
  }
  nav .fas {
    display: block;
    font-size: 25px;
  }
  nav ul {
    background: #000;
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100vh;
    padding-top: 50px;
    z-index: 2;
    transition: right 0.5s;
  }
  nav ul li {
    display: block;
    margin: 25px;
  }
  nav ul .fas {
    position: absolute;
    top: 25px;
    left: 25px;
    cursor: pointer;
  }
  .main-heading {
    font-size: 0.8em;
  }
  .about-col-1,
  .about-col-2 {
    flex-basis: 100%;
  }

  .about-col-2 {
    font-size: 14px;
  }
  .tab-links {
    font-size: 16px;
    margin: 0;
    margin-right: 25px;
  }

  #contact .container .row {
    display: flex;
    flex-direction: column;
  }
  #about .container .row {
    display: flex;
    flex-direction: column;
  }
  #contact h1 {
    margin-bottom: 50px;
    margin-left: 10px;
  }
  .contact-right {
    margin-top: 40px;
    width: 92%;
  }
  .social-icons a {
    font-size: 1.4em;
    margin-right: 40px;
  }
  .social-icons {
    margin-top: 4em;
    margin-left: 37%;
  }

  .btn-download {
    margin-top: 2em;
    margin-left: 39%;
  }
  .contact-left p {
    margin-top: 30px;
    font-size: 0.9em;
  }
  .contact-left p i {
    margin-left: 33%;
  }

  form input,
  form textarea {
    width: 103%;
    border: 0;
    outline: none;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  form input,
  form textarea {
    width: 100%;
    border: 0;
    outline: none;
    padding: 15px;
  }

  img.design-photo {
    height: 350px;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .about-col-2 {
    width: 95%;
  }
}

@media (max-width: 380px) {
  img.design-photo {
    height: 290px;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .about-col-2 {
    width: 90%;
  }

  .contact-left p i {
    margin-left: 15%;
  }

  form input,
  form textarea {
    width: 99%;
    border: 0;
    outline: none;
    padding: 15px;
  }
}

@media (max-width: 320px) {
  .contact-left p i {
    margin-left: 10%;
  }
}

@media (max-width: 3000px) {
  .header-text h1 {
    font-size: 3.5em;
  }

  .header-text p {
    font-size: 2em;
  }
}

@media (max-width: 2000px) {
  .header-text h1 {
    font-size: 3em;
  }

  .header-text p {
    font-size: 1.8em;
  }
}

@media (max-width: 1800px) {
  .header-text h1 {
    font-size: 1.9em;
  }

  .header-text p {
    font-size: 1.3em;
  }
}

@media (max-width: 1500px) {
  .header-text h1 {
    font-size: 1.7em;
  }

  .header-text p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  #about h1,
  #services h1,
  #portfolio h1,
  #toolkit h1,
  #contact h1 {
    font-size: 3.4em;
    text-align: center;
    margin-left: 0;
  }
}

@media (max-width: 440px) {
  #about h1,
  #services h1,
  #portfolio h1,
  #toolkit h1,
  #contact h1 {
    font-size: 3em;
  }
}

@media (max-width: 380px) {
  #about h1,
  #services h1,
  #portfolio h1,
  #toolkit h1,
  #contact h1 {
    font-size: 2.6em;
  }
}

@media (max-width: 550px) {
  .layer h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
  }

  .layer p {
    font-size: 0.9em;
  }

  .layer a {
    margin-top: 10px;
    font-size: 0.9em;
  }
}

@media (max-width: 430px) {
  .layer h3 {
    font-size: 1em;
    margin-bottom: 5px;
  }

  .layer p {
    font-size: 0.8em;
    margin-bottom: 0;
  }

  .layer a {
    margin-top: 3px;
    font-size: 0.7em;
  }
}

@media (max-width: 360px) {
  .layer h3 {
    font-size: 1em;
    margin-bottom: 3px;
  }

  .layer p {
    font-size: 0.7em;
  }

  .layer a {
    margin-top: 2px;
    font-size: 0.7em;
  }
}

@media (max-width: 450px) {
  .logo {
    margin-top: 10px;
    width: 110px;
    height: 50px;
    cursor: none;
  }
}

@media (max-width: 920px) {
  .btn-submit {
    margin-left: 47%;
  }
}

@media (max-width: 850px) {
  .btn-submit {
    margin-left: 45%;
  }
}

@media (max-width: 700px) {
  .btn-submit {
    margin-left: 49%;
  }
}

@media (max-width: 490px) {
  .btn-submit {
    margin-left: 47%;
  }
}

@media (max-width: 480px) {
  .btn-submit {
    margin-left: 46%;
  }
}

@media (max-width: 410px) {
  .btn-submit {
    margin-left: 45%;
  }
}

@media (max-width: 350px) {
  .btn-submit {
    margin-left: 44%;
  }
}

@media (max-width: 600px) {
  .social-icons {
    margin-left: 36%;
  }

  .btn-download {
    margin-left: 38%;
  }
}

@media (max-width: 490px) {
  .social-icons {
    margin-left: 32%;
  }

  .btn-download {
    margin-left: 35%;
  }
}

@media (max-width: 480px) {
  .social-icons {
    margin-left: 31%;
  }

  .btn-download {
    margin-left: 34%;
  }
}

@media (max-width: 410px) {
  .social-icons {
    margin-left: 29%;
  }

  .btn-download {
    margin-left: 32%;
  }
}

@media (max-width: 350px) {
  .social-icons {
    margin-left: 26%;
  }

  .btn-download {
    margin-left: 29%;
  }
}

@media (max-width: 350px) {
  .social-icons {
    margin-left: 26%;
  }

  .btn-download {
    margin-left: 29%;
  }
}

@media (max-width: 680px) {
  .contact-left p i {
    margin-left: 32%;
  }
}

@media (max-width: 660px) {
  .contact-left p i {
    margin-left: 31%;
  }
}

@media (max-width: 600px) {
  .contact-left p i {
    margin-left: 30%;
  }
}

@media (max-width: 585px) {
  .contact-left p i {
    margin-left: 29%;
  }
}

@media (max-width: 560px) {
  .contact-left p i {
    margin-left: 28%;
  }
}

@media (max-width: 550px) {
  .contact-left p i {
    margin-left: 27%;
  }
}

@media (max-width: 530px) {
  .contact-left p i {
    margin-left: 26%;
  }
}

@media (max-width: 480px) {
  .contact-left p i {
    margin-left: 24%;
  }
}

@media (max-width: 460px) {
  .contact-left p i {
    margin-left: 24%;
  }
}

@media (max-width: 450px) {
  .contact-left p i {
    margin-left: 23%;
  }
}

@media (max-width: 440px) {
  .contact-left p i {
    margin-left: 21%;
  }
}

@media (max-width: 400px) {
  .contact-left p i {
    margin-left: 20%;
  }
}

@media (max-width: 390px) {
  .contact-left p i {
    margin-left: 19%;
  }
}

@media (max-width: 390px) {
  .contact-left p i {
    margin-left: 16%;
  }
}

@media (max-width: 360px) {
  .contact-left p i {
    margin-left: 15%;
  }
}

@media (max-width: 340px) {
  .contact-left p i {
    margin-left: 14%;
  }
}

@media (max-width: 330px) {
  .contact-left p i {
    margin-left: 12%;
  }
}

@media (max-width: 320px) {
  .contact-left p i {
    margin-left: 10%;
  }
}
