@import url("mediaQueries.css");

@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&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");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins";
  scroll-behavior: smooth;
}

:root {
  --button-color: #00a2ff;
  --text-color-white: #fff;
  --text-color-blue: #00a2ff;
  --font-N: "Nunito";
  --font-P: "Poppins";
}

.parallax {
  height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.header__video {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.home .content {
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.home .content h1 {
  font-size: 50px;
  font-family: var(--font-P);
  text-align: center;
  word-wrap: break-word;
  padding: 20px;
  color: #fff;
  max-width: 800px;
}

.home .content p {
  text-align: center;
}

.home .content a {
  border: 2px solid var(--button-color);
  border-radius: 4px;
  padding: 8px 20px;
  margin: 30px 0;
  color: var(--text-color-white);
  font-weight: 300;
  outline: none;
  transition: 0.2s linear;
}

.home .content a:hover {
  background: var(--button-color);
}

/* --------------------------------------------------------------------------Services Section--------------------------------------------------------------------------*/

.content-section {
  padding: 80px 40px;
  width: 100%;
}
.content-section .title {
  font-size: 2.5rem;
  font-weight: 700;
  padding: 20px 0;
  text-align: center;
  /* background: linear-gradient(90deg, #2bc1d0 ,#d70b79, #ee7958); */
}
.content-section .title span {
  color: #000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* padding: 0 60px; */
  gap: 1rem;
  margin: 0 auto;
}

.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
  object-fit: cover;
  filter: blur(5px);
  opacity: 0.5;
  transform: translateY(80px);
  transition: transform 0.35s linear;
}

.service-card.visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

@keyframes appear {
  from {
    opacity: 0.5;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

.service-card:nth-child(1) img {
  object-fit: contain;
}
.service-card:nth-child(1) {
  background: #373737;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 1;
}

.Web {
  grid-column: span 3;
}

.SEO {
  grid-column: span 1;
}

.Graphic {
  grid-column: span 2;
}

.Apps {
  grid-column: span 2;
}

/* Clients  */
.Projects .content {
  margin: 50px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wrapper {
  width: 100%;
  margin: 10px 0;
  position: relative;
  overflow: hidden;
  transition: filter 0.25s ease-in-out;
}

.mySwiper {
  width: 100%;
  height: 100%;
}

.mySwiper .swiper-slide {
  height: 200px;
  /* background: #000; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.item img {
  width: 110px;
}

/* *----------------------------------------------------- Product Section  -----------------------------------------------------*/

.product-section {
  width: 100%;
}
.product-section .title {
  font-size: 2.5rem;
  font-weight: 700;
  padding: 20px 0;
  text-align: center;
  color: #007bff;
}
.product-section .title span {
  color: #000;
}

.product-main {
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  width: 100%;
  padding: 0 50px;
  position: relative;
  box-shadow: 0 0 50px 10px rgba(0, 0, 0, 0.1);
}

.product-wrapper {
  width: 100%;
  height: 60vh;
  padding: 20px;
}
.product-images {
  margin: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
}

.product-images img {
  width: 200px;
}

.product-images img:nth-child(1) {
  z-index: 999;
}

.product-main .logo {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  width: 80%;
}

.logo img {
  width: 100px; /* adjust size */
  height: auto;
}

.details h2 {
  font-size: clamp(1rem, 1.5vw, 2rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}
.details p {
  max-width: 650px;
  margin: 0 auto 40px auto;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

.details h1{
  width: 100%;
  font-size: 1.5rem;
  margin: 20px 0;
  text-align: center;
}

/* !----------------------------------------------------- About Us Section  -----------------------------------------------------*/

.about {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.why-choose-us {
  width: 100%;
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 10px;
}

.why-choose-us .intro {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.35s linear;
  filter: blur(1px);
  opacity: 0.5;
  transform: translateY(50%);
}

.feature.visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0%);
}

.feature:hover {
  transform: translateY(-15px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature i {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.feature p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

.mentor {
  position: relative;
  isolation: isolate;
  padding: 14px 0;
  width: 100%;
  background-image: url("mentor.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mentor::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /* background: linear-gradient(90deg, rgba(0, 162, 255, 0.9), rgba(255, 255, 255, 0.9)); */
  background: #013757;
  opacity: 0.95;
  z-index: -1;
}

.mentor .container {
  width: 100%;
  height: 100%;
  z-index: 10 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container .image {
  overflow: hidden;
  margin: 8px 40px;
  border-radius: 8px;
  width: 300px;
  height: 300px;
}

.container .image img {
  border-radius: 8px;
  background: #fff7;
  object-fit: cover;
  width: 300px;
  height: 300px;
}

.container .message {
  width: 40% !important;
  color: #fff;
  font-size: 15px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
}

.message .read-more {
  display: none;
}

.message .read-more.active {
  display: inline;
}

.message a {
  text-decoration: underline;
  color: var(--text-color-blue);
  cursor: pointer;
}

.container .message .name {
  margin: 14px 0 0 0;
  font-size: 17px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 500;
}

.container .message .name p:nth-child(2) {
  font-size: 12px;
  padding: 4px 0;
  font-weight: normal;
  font-style: italic;
}

.mentor .title {
  font-size: 2.5em;
  padding: 0 0 20px 0;
  color: #fff;
  font-weight: 700;
  text-align: center;
  /* background: linear-gradient(90deg, #2bc1d0 ,#d70b79, #ee7958);  */
}

@keyframes appear {
  from {
    opacity: 0.5;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.team-section {
  height: fit-content;
  background: #eee;
  width: 100%;
}

.team-section .title {
  font-size: 2.5rem;
  font-weight: 700;
  padding: 20px 0;
  text-align: center;
}
.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 400px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* overflow: hidden; */
}

.swiper-slide .details {
  text-align: center;
  margin: 20px 0;
  /* position: absolute; */
}

.swiper-slide .details .name {
  color: var(--text-color-blue);
  font-size: 20px;
  font-weight: 500;
}

.swiper-slide .image {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.swiper-slide .image img {
  object-fit: cover;
  width: 250px;
  height: 250px;
  border-radius: 8px;
}

.footer {
  width: 100%;
  height: fit-content;
  padding: 30px 0;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.footer__section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  overflow: hidden;
}

.footer-logo {
  width: 40%;
  margin-bottom: 24px;
}

.footer-logo .image {
  display: flex;
}

.footer-logo .image img:nth-child(1) {
  width: 50px;
}
.footer-logo .image img:nth-child(2) {
  margin: 2px 5px;
  width: 110px;
}

.footer-about {
  margin: 24px 0;
}

.footer-about p {
  font-size: 12px;
}

.links-contaniner {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}
.quick-links {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.quick-links .links-head {
  font-weight: 600;
  font-size: 18px;
}

.footer__links {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateY(-100%);
  transition: 0.5s;
  transform: none;
  padding: 1rem 2rem;
}

.footer-btns{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer a {
  color: var(--text-light);
  transition: 0.3s;
  font-size: 16px;
  font-weight: 400;
}

.footer a:hover {
  color: var(--secondary-color);
}

.copyright-social-section {
  background: #000;
  color: #fff;
  /* border-top: 1px solid #fff; */
  width: 100%;
  padding: 10px 50px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-handles {
  cursor: pointer;
  & a {
    color: var(--text-light);
    font-size: 22px;
    margin: 0 2px;
    transition: 0.32s ease-in-out;
    &:hover {
      color: #fff;
    }
  }
}

.btn-learn-more{
  border: 1px solid #f7931a;
  border-bottom: 5px solid #f7931a;
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  color: #f7931a;
  transition: 0.3s;
}

.btn-learn-more a{
  text-decoration: none;
  color: #f7931a;
}

.btn-learn-more:hover{
  background: #f7931a;
  color: #fff !important;
}

.btn-learn-more:hover a{
  color: #fff !important;
}