@import "../vendor/bootstrap/css/bootstrap.min.css";
@import "../vendor/font-awesome/css/all.min.css";
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&amp;display=swap");

:root {
  --px-theme:	#3a86ff;
  --px-theme-text:	#fff;
  
  --px-bg:	#fff;
  --px-text:	#444746;


  --px-gray-1:	#f8fafd;
  --px-gray-2:	#f3f6fc;
  --px-gray-3:	#eff3fa;
  --px-gray-4:	#edf2fa;
  --px-gray-5:	#eaf0f9;

  
  --bs-heading-color:	#000;
  --px-border:	#e1e3e1;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: inherit;
  }
}
img {
  max-width: 100%;
}

* {
  outline: none !important;
}

body {
  background-color: var(--px-bg);
  color: var(--px-text);
  font-family: "Rubik", sans-serif;
  --bs-body-font-weight: 400;
  --bs-body-font-size: 1rem;
  --bs-body-line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.home-section-03 {
  overflow: hidden;
  position: relative;
}
.home-section-03 .home-image .home-image-in {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 12px solid var(--px-gray-3);
  box-shadow: 0 0 0 12px var(--px-gray-1);
}
.home-section-03 .home-image .home-image-in img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-section-03 .home-intro {
  text-align: center;
  padding-top: 20px;
}
.home-section-03 .home-intro h1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}
.home-section-03 .home-intro h2 {
  font-weight: 500;
  margin: 0px;
  font-size: 22px;
}
.home-section-03 .social-link {
  padding: 20px 0 0;
  -ms-flex-pack: center;
      justify-content: center;
}
.home-section-03 .social-link li {
  margin: 0 4px;
}
.home-section-03 .social-link a {
  width: 40px;
  height: 40px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: var(--px-theme);
  border: 2px solid var(--px-theme);
  color: var(--px-theme-text);
  border-radius: 10px;
  transition: all 0.3s ease;
  transform: translateY(0);
}
.home-section-03 .social-link a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
  background: var(--px-theme-text);
  color: var(--px-theme);
}

.bg-effect-img {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  pointer-events: none;
  -webkit-animation: background_effect 0.2s infinite;
          animation: background_effect 0.2s infinite;
  opacity: 0.2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.bg-effect-img .marquee {
  -webkit-animation: marquee 8s linear infinite;
          animation: marquee 8s linear infinite;
  position: absolute;
  white-space: nowrap;
  display: -ms-flexbox;
  display: flex;
}
.bg-effect-img h2 {
  font-size: 12vw;
  text-transform: uppercase;
  opacity: 0.1;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}


@-webkit-keyframes background_effect {
  0% {
    background-position: 0 0;
  }
  10% {
    background-position: -5% -5%;
  }
  20% {
    background-position: -10% 5%;
  }
  30% {
    background-position: 5% -10%;
  }
  40% {
    background-position: -5% 15%;
  }
  50% {
    background-position: -10% 5%;
  }
  60% {
    background-position: 15% 0;
  }
  70% {
    background-position: 0 10%;
  }
  80% {
    background-position: -15% 0;
  }
  90% {
    background-position: 10% 5%;
  }
  to {
    background-position: 5% 0;
  }
}

@keyframes background_effect {
  0% {
    background-position: 0 0;
  }
  10% {
    background-position: -5% -5%;
  }
  20% {
    background-position: -10% 5%;
  }
  30% {
    background-position: 5% -10%;
  }
  40% {
    background-position: -5% 15%;
  }
  50% {
    background-position: -10% 5%;
  }
  60% {
    background-position: 15% 0;
  }
  70% {
    background-position: 0 10%;
  }
  80% {
    background-position: -15% 0;
  }
  90% {
    background-position: 10% 5%;
  }
  to {
    background-position: 5% 0;
  }
}
@-webkit-keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

/* Typing effect cursor */
#type-it::after {
  content: '|';
  color: var(--px-theme);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Services Section */
.services-section {
  background: var(--px-gray-1);
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--bs-heading-color);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--px-text);
  opacity: 0.8;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--px-theme);
}

.service-card.special-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: #667eea;
}

.service-card.special-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.service-card.special-card .service-icon i {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-card.special-card h3 {
  color: white;
}

.service-card.special-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--px-theme), #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--bs-heading-color);
}

.service-card p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--px-text);
}

.service-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--px-theme);
  font-weight: bold;
}

.service-card.special-card .service-features li {
  color: rgba(255, 255, 255, 0.9);
}

.service-card.special-card .service-features li:before {
  color: #fbbf24;
}

.contact-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--px-theme);
  font-weight: 500;
  margin-top: auto;
}

.service-card.special-card .contact-hint {
  color: rgba(255, 255, 255, 0.9);
}

.contact-hint i {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .home-section-03 .home-image .home-image-in {
    width: 250px;
    height: 250px;
  }
  
  .home-section-03 .home-intro h1 {
    font-size: 24px;
  }
  
  .home-section-03 .home-intro h2 {
    font-size: 18px;
  }
  
  .bg-effect-img h2 {
    font-size: 15vw;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
  }
}
