/* -------------------------------------------- */
/* Reset & Base Styles Start */

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 70px;
  /* Space for fixed navbar */
}

/* Reset & Base Styles End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Utility Classes Start */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utility Classes End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Button Component Start */

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  font-weight: 500;
}

.btn {
  pointer-events: auto;
  position: relative;
  z-index: 5;
}

.btn:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.btn--primary {
  background: #2c3e50;
}

.btn--primary:hover {
  background: #1a252f;
}

.btn--secondary {
  background: #7f8c8d;
}

.btn--secondary:hover {
  background: #626d6d;
}

.btn--white {
  background: white;
  color: #2c3e50;
}

.btn--white:hover {
  background: #f8f9fa;
}

.btn--block {
  display: block;
  width: 100%;
}

/* Button Component End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Navigation Component Start */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav__logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav__toggle-line {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

.nav__toggle--active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle--active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle--active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav__item {
  position: relative;
}

.nav__link {
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav__link:hover {
  color: #3498db;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3498db;
  transition: width 0.3s;
}

.nav__link:hover::after {
  width: 100%;
}

/* Navigation Component End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Hero Component Start */

.hero {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: .1;
  background: url('src/5.jpg') center/cover no-repeat;
}

.hero__container {
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Hero Component End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Counter Component Start */

.counter {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.counter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.counter__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.counter__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
}

.counter__item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.counter__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.counter__item:hover::before {
  left: 100%;
}

.counter__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.counter__number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.counter__value {
  display: inline-block;
  min-width: 60px;
  text-align: right;
}

.counter__suffix {
  font-size: 2.5rem;
  opacity: 0.9;
}

.counter__divider {
  width: 60px;
  height: 3px;
  background: white;
  margin: 0 auto 15px;
  border-radius: 2px;
  opacity: 0.7;
}

.counter__label {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
  margin: 0;
}

/* Counter Animations */
.counter__value {
  transition: transform 0.3s ease;
}

.counter__value--animating {
  transform: scale(1.1);
}

/* Counter Component End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Section Component Start */

.section {
  padding: 80px 20px;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.section__title {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
  font-size: 2rem;
  position: relative;
  padding-bottom: 15px;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #3498db;
}

.section__title--light {
  color: white;
}

.section__title--light::after {
  background: white;
}

.section__text {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.section__text--center {
  text-align: center;
}

.section--light {
  background: #f8f9fa;
}

.section--dark {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
}

/* Section Component End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Card Component Start */

.card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card--service {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card__icon {
  font-size: 3rem;
  color: #3498db;
  margin-bottom: 20px;
}

.card__title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.card__text {
  color: #666;
  line-height: 1.6;
}

/* Card Component End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Services Component Start */

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Services Component End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Why Choose Section Start */

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card--why {
  text-align: center;
  border-top: 4px solid #3498db;
}

.card--why .card__icon {
  background: linear-gradient(135deg, #3498db, #2c3e50);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2.5rem;
}

.card--why:hover {
  border-top-color: #2c3e50;
}

/* Why Choose Section End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Team Section Start */

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team__card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.team__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: #3498db;
}

.team__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid #3498db;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team__name {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 5px;
}

.team__position {
  color: #3498db;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.team__bio {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Team Section End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Projects Section Start */

.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.project__card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project__badge {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.project__title {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.project__desc {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.project__stats {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.project__stats span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 0.9rem;
}

.project__stats i {
  color: #3498db;
}

/* Projects Section End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Hiring Process Start */

.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.process__step {
  background: white;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.process__step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.process__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 15px;
  line-height: 1;
}

.process__title {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.process__desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Hiring Process End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Testimonial Component Start */

.testimonial__slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial__container {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial__item {
  min-width: 100%;
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial__text {
  font-style: italic;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  position: relative;
  padding-left: 20px;
}

.testimonial__text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: #3498db;
  opacity: 0.3;
}

.testimonial__author {
  text-align: right;
}

.testimonial__name {
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 5px;
}

.testimonial__position {
  color: #7f8c8d;
  font-size: 0.9rem;
}

.testimonial__controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Testimonial Component End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Clients Section Start */

.clients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.client__logo {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.client__logo:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: #3498db;
}

.client__logo i {
  color: #3498db;
  font-size: 1.5rem;
}

/* Clients Section End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Contact Component Start */

.contact__form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

/* Contact Component End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Form Component Start */

.form__group {
  margin-bottom: 20px;
}

.form__group:last-child {
  margin-bottom: 0;
}

.form__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* Form Component End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Footer Component Start */

.footer {
  background: #2c3e50;
  color: white;
  padding: 60px 20px 20px;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer__section {
  margin-bottom: 30px;
}

.footer__title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #3498db;
}

.footer__text {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer__list {
  list-style: none;
}

.footer__item {
  margin-bottom: 10px;
}

.footer__link {
  color: #bdc3c7;
  padding: 5px 0;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer__link:hover {
  color: white;
  padding-left: 5px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #bdc3c7;
}

.footer__contact-item i {
  color: #3498db;
  width: 20px;
}

.footer__contact-link {
  color: #bdc3c7;
}

.footer__bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #34495e;
}

.footer__copyright {
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* Footer Component End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Animations Start */

.js-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fade-up--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animations End */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* Responsive Design Start */

@media (max-width: 992px) {
  .hero__title {
    font-size: 2rem;
  }

  .section {
    padding: 60px 20px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .counter__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .counter__number {
    font-size: 3rem;
  }

  .counter__suffix {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__list {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav__list--active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__item {
    width: 100%;
    text-align: center;
  }

  .nav__link {
    display: block;
    padding: 15px 0;
  }

  .hero {
    min-height: 80vh;
    padding: 60px 20px;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .counter__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 25px;
  }

  .counter__item {
    padding: 25px 15px;
  }

  .counter__number {
    font-size: 2.8rem;
  }

  .counter__suffix {
    font-size: 1.8rem;
  }

  .counter__label {
    font-size: 1.1rem;
  }

  .why-choose__grid,
  .team__grid,
  .projects__grid,
  .process__steps {
    grid-template-columns: 1fr;
  }

  .testimonial__item {
    padding: 30px 20px;
  }

  .contact__form {
    padding: 30px 20px;
  }

  .clients__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 60px;
  }

  .nav__container {
    height: 60px;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .section {
    padding: 40px 15px;
  }

  .section__title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .card {
    padding: 20px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .footer__content {
    grid-template-columns: 1fr;
  }

  .clients__grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive Design End */
/* -------------------------------------------- */