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

::selection {
  color: #D75538;
}

body {
  height: 100%;
  width: 100%;
  background-color: black;
  overflow-x: hidden;
  color: white;
}

html {
  height: 100%;
  width: 100%;
}

#main {
  height: 100%;
  width: 100%;
}

a {
  color: white;
  text-decoration: none;
}
a:hover {
  color: #D75538;
}

section {
  min-height: 100%;
  width: 100%;
  background-color: rgb(23, 23, 23);
  padding: 100px 0;
}

footer p {
  padding: 1rem 0;
  text-align: center;
  font-weight: bold;
}

.text-white {
  color: rgba(255, 255, 255, 0.836) !important;
  text-shadow: 2px 2px 0px black;
  letter-spacing: -1px;
}

.text-primary {
  color: #D75538 !important;
  text-shadow: 0 0 0 transparent !important;
}

nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: showFixedNav 0.8s linear;
}

@keyframes showFixedNav {
  from {
    top: -100px;
  }
  to {
    top: 0px;
  }
}
.section-title {
  color: #D75538;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.text-center {
  text-align: center;
}

.container {
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
}

.btn {
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  transition: 0.2s;
  padding: 0.4rem 2rem;
  background: #D75538;
  border-radius: 30px;
  border: none;
}

.btn:hover {
  transform: scale(1.03);
  color: white;
  background-color: #ea6547;
}

.btn-second {
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  transition: 0.2s;
  padding: 0.4rem 2rem;
  text-align: center;
  background-color: rgba(75, 75, 75, 0);
  border-radius: 30px;
  border: 1px solid #D75538 !important;
}

.btn-second:hover {
  transform: scale(1.03);
  color: white;
  background-color: #ea6547;
}

nav {
  display: flex;
  align-items: center;
  height: 70px;
  justify-content: space-between;
  z-index: 1000;
  background-color: rgb(0, 0, 0);
  padding: 0 2rem;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}
nav #logo {
  max-width: 240px;
  overflow: hidden;
}
nav #logo h1 {
  color: #D75538;
  font-weight: 900;
}
nav #logo img {
  height: 100%;
  width: 100%;
}
nav #nav ul {
  list-style-type: none;
  display: flex;
  align-items: center;
}
nav #nav ul li a {
  padding: 0.3rem 14px;
  transition: 0.2s;
  border-radius: 5px;
  font-weight: 500;
  color: white;
}
nav #nav ul li a:hover {
  color: #D75538;
}
@media screen and (max-width: 992px) {
  nav #nav {
    display: none;
  }
}

#welcome {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
#welcome #jaffarVideo {
  position: absolute;
  top: 0;
  opacity: 0.2;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(60px);
}
#welcome #jaffarImg {
  z-index: 1;
  width: 100%;
  margin-top: 4rem;
  object-fit: cover;
}
@media screen and (max-width: 576px) {
  #welcome #jaffarImg {
    position: absolute;
    z-index: -10;
  }
}
#welcome #content {
  z-index: 2;
  text-align: center;
  max-width: 90vw;
  display: flex;
  align-items: center;
  gap: 20px;
}
#welcome #content h1 {
  font-weight: 800;
  font-size: 4rem;
  color: #D75538;
  text-shadow: 4px 9px 14px #000000;
}
@media screen and (max-width: 992px) {
  #welcome #content h1 {
    font-size: 3rem;
  }
}
#welcome #content .sub-heading-long {
  font-size: 1.2rem;
  opacity: 0.8;
  margin: 30px 0;
  font-weight: 500;
  text-shadow: 4px 9px 14px #000000;
}
@media screen and (max-width: 992px) {
  #welcome #content .sub-heading-long {
    font-size: 1rem;
  }
}

#about p {
  font-size: 1.7rem;
  color: rgba(251, 251, 251, 0.462745098);
  line-height: 50px;
  margin-bottom: 1rem;
}

#services .services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#services .services-row .service-item {
  width: 32%;
  padding: 2rem;
  border: 1px solid white;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 1.7rem;
}
#services .services-row .service-item h3 {
  color: rgba(251, 251, 251, 0.7411764706);
  margin-bottom: 10px;
  font-size: 1.5rem;
}
#services .services-row .service-item p {
  line-height: 1.6;
  color: rgba(251, 251, 251, 0.462745098);
}
@media screen and (max-width: 576px) {
  #services .services-row .service-item {
    width: 100%;
  }
}

#works {
  background-color: #1e1e1e;
}
#works .portfolio-row {
  margin-top: 3rem;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
#works .portfolio-row .portfolio-item {
  user-select: none;
  width: 32%;
  position: relative;
  border-radius: 20px;
  transition: 0.3s ease;
  overflow: hidden;
}
#works .portfolio-row .portfolio-item img {
  background-color: rgba(255, 255, 255, 0.1803921569);
  height: 500px;
  width: 100%;
  border-radius: 20px;
  cursor: pointer;
  object-fit: cover;
  transition: 0.3s ease;
}
#works .portfolio-row .portfolio-item img:hover {
  transform: scale(103%);
}
#works .portfolio-row .portfolio-item:hover {
  opacity: 0.8;
}
#works .portfolio-row .portfolio-item:hover .btn {
  opacity: 1;
}
#works .portfolio-row .portfolio-item .btn {
  opacity: 0;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 992px) {
  #works .portfolio-row .portfolio-item {
    width: 100%;
  }
}

#skills h2 {
  margin-bottom: 2rem;
  text-transform: capitalize;
  font-size: 2rem;
}
#skills .box-item h3 {
  margin-bottom: 1rem;
  padding: 10px;
  border: 1px solid rgb(81, 81, 81);
  display: inline-block;
  border-radius: 10px;
}
#skills .box-item .skills-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
#skills .box-item .skills-box .skill-img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  padding: 10px;
}
@media screen and (max-width: 992px) {
  #skills .box-item .skills-box .skill-img {
    width: 80px;
    height: 80px;
  }
}
#skills .box-item .skills-box .skill-img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

#clients {
  perspective: 1200px;
  /* Adjust the perspective as needed */
}
#clients .clients-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 576px) {
  #clients .clients-row {
    grid-template-columns: 1fr 1fr;
  }
}
#clients .clients-row .client-item {
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.372);
  border-top-right-radius: 40px;
  margin-bottom: 1.7rem;
  transform-style: preserve-3d;
  /* Enable 3D transformations for children */
}
@media screen and (max-width: 576px) {
  #clients .clients-row .client-item {
    padding: 20px 5px;
  }
}
#clients .clients-row .client-item h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.808);
  letter-spacing: -1px;
}
@media screen and (max-width: 576px) {
  #clients .clients-row .client-item h4 {
    font-size: 1rem;
  }
}
#clients .clients-row .client-item p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(238, 238, 238, 0.614);
}
@media screen and (max-width: 576px) {
  #clients .clients-row .client-item p {
    font-size: 13px;
  }
}
#clients .clients-row .client-item .ratingbox {
  margin-bottom: 10px;
}
#clients .clients-row .client-item .ratingbox .rated {
  font-size: 1.3rem;
  color: #D75538;
}
#clients .clients-row .client-item .ratingbox .rate {
  font-size: 1.3rem;
  color: #D75538;
}

#contact {
  overflow: hidden;
  background-color: #1e1e1e;
}
#contact p {
  font-size: 3.84rem;
  color: hsl(0, 0%, 98%);
  margin-bottom: 1rem;
  text-transform: capitalize;
  font-weight: bold;
  letter-spacing: -1px;
}
@media screen and (max-width: 576px) {
  #contact p {
    font-size: 2rem;
  }
}
#contact .mail-link {
  text-decoration: underline;
  font-style: italic;
  color: #95f1ff;
}
#contact .insta-link {
  text-decoration: underline;
  font-style: italic;
  color: #ff96d7;
}
#contact .linkedin-link {
  text-decoration: underline;
  font-style: italic;
  color: #9fdeff;
}
#contact .fiverr-link {
  text-decoration: underline;
  font-style: italic;
  color: #7bffc2;
}
#contact .wa-link {
  text-decoration: underline;
  font-style: italic;
  color: rgba(72, 255, 142, 0.7294117647);
}

/*# sourceMappingURL=style.css.map */
