/* =========================================================
   GLOBAL STYLES & RESET
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #fafbfc;
}

button {
  border: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}

/* =========================================================
   HEADER & NAVIGATION
========================================================= */
.header {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
}

/* --- Navigation Links --- */
.link-container {
  background-color: #f5f5f5;
}

.nav-links {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  list-style: none;
}

.nav-links li {
  position: relative;
}

/* Divider between nav links */
.nav-links li::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1rem;
  height: 100%;
  width: 1px;
  background-color: #bdbdbd;
}

.nav-links li:last-child::after {
  display: none;
}

.nav-links a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #667eea;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

/* Outline button style */
.btn-outline {
  color: #667eea;
  border: 2px solid #667eea;
  background: transparent;
}

.btn-outline:hover {
  background: #667eea;
  color: white;
}

/* Primary button style */
.btn-primary {
  background-color: #0159a4;
  color: white;
}

.btn-primary:hover {
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* White button (used in CTA sections) */
.btn-white {
  background: white;
  color: #667eea;
  font-weight: 600;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* =========================================================
   HERO SECTION
========================================================= */
.hero {
  min-height: 75vh !important;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.hero .container {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 80vh;
}

.hero .content-wrapper {
  width: 55%;
  padding: 30px calc(10% / 2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .banner {
  width: 45%;
  min-height: 80vh;
}

.hero .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Text */
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: #718096;
  margin-bottom: 2rem;
}

.hero-cta {
  margin-bottom: 3rem;
}

/* Service Buttons inside Hero */
.service-selection {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-btn {
  font-size: 1.125rem;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Floating Skill Badges */
.hero-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.skill-badge {
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  color: #4a5568;
  animation: float 3s ease-in-out infinite;
}

.skill-badge:nth-child(2) {
  animation-delay: -1s;
}

.skill-badge:nth-child(3) {
  animation-delay: -2s;
}

/*
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
*/

/* =========================================================
   INFO SECTION
========================================================= */
.info-section {
  background: white;
}

.info-points {
  display: flex;
  gap: 2rem;
  padding: 100px 0;
}

.info-point {
  flex: 1;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}

/* Vertical line divider */
.info-point::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: #bdbdbd;
}

.info-point.last-point::after {
  display: none;
}

/* Info point content */
.info-point .icon i {
  font-size: 32px;
  color: #667eea;
}

.info-point h2,
.about h2 {
  font-size: 32px;
  text-align: center;
}

.info-point p {
  font-size: 14px;
  color: #718096;
  padding: 0 20px;
  text-align: center;
}

.about p {
  font-size: 14px;
  width: 80%;
  margin: 30px auto;
  text-align: center;
}

/* =========================================================
   ACTIVE WORK SEARCH SECTION
========================================================= */
.active-work-search {
  background-color: white;
  padding: 50px 0;
}

.active-work-search .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.active-work-search .section-header a {
  text-decoration: underline;
  font-weight: bold;
  color: #2d3748;
}

.position h4 {
  text-align: center;
}

.active-work-search h2 {
  font-size: 32px;
  text-align: center;
}

/* Grid layout for users */
.user-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  width: 100%;
}

.user {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #d3eaff;
  padding: 30px 0.5rem;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.user:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user h3 {
  font-size: 20px;
  margin-bottom: 0.5rem;
}

.user h4 {
  font-size: 16px;
  font-weight: 400;
  color: #718096;
}

/* =========================================================
   SERVICE SAMPLES
========================================================= */
.service-sample {
  background-color: #f7fafc;
}

.product {
  border: 1px solid #e2e8f0;
  background: transparent !important;
  padding: 0 !important;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product .thumb {
  height: 250px;
  width: 100%;
}

.product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product .service-name {
  padding: 1rem;
}

.product .service-name h3 {
  font-size: 18px;
}

.product .service-price {
  padding: 0 1rem 1rem;
}

.product .service-price span {
  font-weight: 600;
  color: #0159a4;
  font-size: 18px;
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials {
  background: #f7fafc;
  padding: 5rem 0;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
  font-style: italic;
  color: #4a5568;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: #2d3748;
}

.testimonial-role {
  color: #718096;
  font-size: 0.875rem;
}

/* =========================================================
   PARTNERS SECTION
========================================================= */
.partners-section {
  background: white;
  border-top: 1px solid #e2e8f0;
  padding: 4rem 0;
}

.partners-header {
  text-align: center;
  margin-bottom: 3rem;
}

.partners-header h2 {
  font-size: 2rem;
  color: #2d3748;
  margin-bottom: 1rem;
}

.partners-header p {
  font-size: 1.1rem;
  color: #718096;
}

/* Partner logos grid */
.partners-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.logo-placeholder {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border: 2px solid #e2e8f0;
  color: #4a5568;
  font-weight: 600;
  text-align: center;
  font-size: 0.9rem;
  padding: 0 1rem;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.logo-placeholder:hover {
  border-color: #667eea;
  background: #f0f4ff;
  color: #667eea;
}

/* =========================================================
   CALL-TO-ACTION (CTA) SECTION
========================================================= */
.cta-section {
  background: #0159a4;
  color: white;
  text-align: center;
  padding: 5rem 0;
  margin-bottom: 30px;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: #fff;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
  grid-template-columns: 2fr repeat(5, 1fr);
}

.footer-section h3 {
  color: #667eea;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: #a0aec0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #667eea;
}

/* =========================================================
   RESPONSIVE DESIGN
========================================================= */
@media (max-width: 1024px) {
  .hero .content-wrapper {
    width: 60%;
  }

  .user-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .hero .banner {
    width: 40%;
  }

  .info-points {
    padding: 60px 0;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column-reverse;
  }


  .hero .content-wrapper,
  .hero .banner {
    width: 100%;
  }

  .hero .banner {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: fle;
    flex-wrap: wrap;
    gap: 10px;
  }

  .user-grid {
    grid-template-columns: 1fr !important;
  }

  .nav-links a {
    font-size: 12px;
  }

  .nav-links li::after {
    display: none;
  }

  

  

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .service-selection {
    flex-direction: column;
  }

  .service-btn {
    width: 100%;
  }

  .info-points {
    flex-direction: column;
    padding: 40px 0;
  }

  .info-point::after {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .user-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-point h2,
  .active-work-search h2 {
    font-size: 24px;
  }

  .active-work-search .user-grid {
    grid-template-columns: 1fr;
  }

  .testimonials h2,
  .cta-section h2 {
    font-size: 2rem;
  }

}

