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

body {
  font-family: "Inter", sans-serif;
  background-color: #f8f8f8;
}

/* HEADER */
header {
  height: 100dvh;
  position: relative;
  overflow: hidden;
  background-image: url("../images/Heroo.png");
  background-size: cover;
  background-position: center;
}

header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: relative;
  z-index: 2;
}

.logo {
  width: 10%;
}

.logo img {
  width: 60px;
}

.links a,
.auth-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  margin: 0 12px;
  font-size: 16px;
  transition: color 0.3s;
}

.links a:hover,
.auth-links a:hover {
  color: #ffffff96;
}

.sign-in {
  background: transparent;
  border: 1px solid #ffffff;
  padding: 8px 10px;
  border-radius: 15px;
  font-weight: 400;
  font-size: 13px !important;
  color: white !important;
  transition: background 0.3s;
}

.sign-in:hover {
  background: #e2e6eb;
  color: #000 !important;
}

.sign-up {
  padding: 8px 10px;
  border-radius: 15px;
  font-weight: 400;
  font-size: 13px !important;
  transition: all 0.3s;
  background-color: #2d64ee;
  color: white;
}

.sign-up:hover {
  background: #193d96;
  color: white !important;
  transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  top: 20%;
  padding: 0 20px;
  font-weight: 500;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  width: 60%;
  font-style: semibold;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 15px auto;
  color: #ffffff;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #ffffff;
  width: 60%;
  text-align: center;
  margin: 0 auto 15px auto;
  font-weight: 500;
  font-style: medium;
}

/* Search Box */
.search-box {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
  outline: 1px solid #ffffff;
  border-radius: 50px;
  padding: 2px 10px;
  margin-top: 30px;
  margin-bottom: 20px;
  color: white;
}

.search-box input {
  flex: 1;
  padding: 6px 15px;
  border: none;
  font-size: 1rem;
  background-color: transparent;
  font-weight: 400;
  outline: none;
  color: white;
}

[contenteditable] {
  outline: 0px solid transparent;
}

.search-box input::placeholder {
  color: white;
  opacity: 1; /* Firefox */
}

.search-box button {
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: white;
}

.search-box button i {
  color: #ffffff;
  font-size: 1rem;
  padding: auto;
}

.hero-actions {
  margin-top: 40px;
}

.hero-actions a {
  margin: 0 10px;
  text-decoration: none;
}

.btn-primary {
  background: transparent;
  border: 1px solid #ffffff;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 400;
  font-size: 16px;
  color: white !important;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #16a34a;
}

.btn-outline {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 400;
  transition: all 0.3s;
  background-color: #2d64ee;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: black !important;
}

/* SECTION 1 */
.section1 {
  margin: 10px auto;
  text-align: center;
  width: 100%;
  padding: 20px 10px;
  background-color: #f9f9f9;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.section1 img {
  width: 100px;
}

/* SECTION 2 */
.section2 {
  background-color: #ffffff;
  color: #333;
  padding: 20px;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.section2 h1 {
  font-size: 3rem;
  width: 50%;
  margin: auto;
  margin-bottom: 20px;
  align-items: center;
}

.container {
  padding: 10px 20px;
  margin: 20px auto;
  display: flex;
  width: 80%;
  max-width: 1200px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.card1,
.card2,
.card3 {
  width: calc(33.33% - 10px);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.card1 img,
.card2 img,
.card3 img {
  width: 100%;
  height: 300px;
  margin-bottom: 15px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card1 img:hover,
.card2 img:hover,
.card3 img:hover {
  transform: scale(1.05) translateY(-5px);
}

.card1 h4,
.card2 h4,
.card3 h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #0b1d4b;
}

.card1 p,
.card2 p,
.card3 p {
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  line-height: 1;
}

.card1 a,
.card2 a,
.card3 a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  background-color: #0b1d4b;
  padding: 6px 10px;
  border-radius: 15px;
}

.card1 a:hover,
.card2 a:hover,
.card3 a:hover {
  background-color: #ffcc00;
  color: black !important;
  transition: ease-in-out 0.3s all;
}

/* SECTION 3 */
.section3 {
  width: 100%;
  margin: 50px 0;
  align-items: center;
  padding-bottom: 40px;
}

.section3 h1 {
  font-size: 3rem;
  margin: 20px auto;
  font-weight: 600;
  color: #000000;
  justify-content: center;
  display: flex;
}

.section3 p {
  font-size: 20px;
  margin-bottom: 25px;
  color: #000000;
  width: 30%;
  text-align: center;
  margin: 0 auto 25px auto;
  font-weight: 500;
}

.card-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 85%;
  margin: auto;
}

.card-1,
.card-2,
.card-3,
.card-4 {
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  width: 100%;
  margin-top: 6px;
  background-color: #e2f0fa;
  padding: 10px;
  border-radius: 10px;
}

.card-1 img,
.card-2 img,
.card-3 img,
.card-4 img {
  width: 40px;
  height: 40px;
  margin: 5px 0;
  object-fit: contain;
}

.card-1 h4,
.card-2 h4,
.card-3 h4,
.card-4 h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #000000;
  font-weight: 600;
}

.card-1 p,
.card-2 p,
.card-3 p,
.card-4 p {
  font-size: 16px;
  font-weight: 400;
  color: #454242;
  width: 90%;
}

/* SECTION 4 */
.section4 {
  width: 90%;
  margin: 30px auto;
  padding: 0 30px;
}

.section4 .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section4 .title h1 {
  font-size: 2.5rem;
  color: #1e293b;
  font-weight: 700;
}

.section4 .title a:hover {
  color: #1d4ed8;
}

.section4 .title a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease;
}

.section4 .title a:hover::after {
  width: 100%;
}

.trending-grid {
  display: flex;
  gap: 20px;
}

.trending-card {
  border-radius: 10px;
  width: 30%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.trending-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin-bottom: 15px;
}

.trending-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.trending-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.trending-title p {
  font-weight: 600;
  font-size: 16px;
}

.trending-note {
  margin-bottom: 5px;
}

.trending-note h3 {
  font-size: 20px;
  color: #000;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 400;
}

.card-category {
  display: inline-block;
  background: #fff0f0;
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* SECTION5 */
.section5 {
  width: 100%;
  margin: 50px 0;
  align-items: center;
  padding-bottom: 40px;
}

.section5 h1 {
  font-size: 50px;
  margin: 30px auto;
  font-weight: 600;
  color: #000000;
  justify-content: center;
  display: flex;
}

.section5 p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #000000;
  width: 40%;
  text-align: center;
  margin: 0 auto 25px auto;
  font-weight: 500;
}

.card {
  text-align: center;
}

.card img {
  padding: 6px;
}

.card h3 {
  color: #7c7575;
  font-size: 24px;
  font-weight: 700;
}

.card h2 {
  font-size: 24px;
  font-weight: 600;
}

/* SECTION 6 - REVIEWS */
.section6 {
  display: flex;
  gap: 60px;
  padding: 60px 40px;
  max-width: 90%;
  margin: 0 auto;
  align-items: flex-start;
}

.review-left {
  flex: 1;
  min-width: 400px;
}

.review-left h2 {
  font-size: 48px;
  font-weight: 700;
  color: #2e2d2d;
  line-height: 1.2;
  margin-bottom: 20px;
}

.review-left p {
  font-size: 18px;
  font-weight: 400;
  color: #7c7575;
  margin-bottom: 30px;
  line-height: 1.5;
  width: 70%;
}

.review-left a {
  text-decoration: none;
  padding: 12px 24px;
  background-color: #3c83f5;
  border-radius: 25px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.review-left a:hover {
  background-color: #2c73e5;
}

.review-right {
  flex: 1;
  position: relative;
  min-height: 400px;
}

.testimonial-box {
  display: flex;
  background: white;
  padding: 4px;
  border-radius: 20px;
  gap: 8px;
  position: relative;
  max-width: 320px;
}

.box1 {
  position: absolute;
  top: 0;
  right: 0;
  border-left: 6px solid #e0e0e0;
  outline: 1px solid #e0e0e0;
}

.box2 {
  position: absolute;
  top: 100px;
  left: 120px;
  border-left: 6px solid #3c83f5;
  outline: 1px solid #3c83f5;
  align-items: center;
}

.box3 {
  position: absolute;
  top: 200px;
  right: 0;
  border-left: 6px solid #e0e0e0;
  outline: 1px solid #e0e0e0;
}

.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 4px;
}

.profile-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e1e8ed;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-weight: 600;
  font-size: 12px;
  color: #1a1a1a;
  text-align: center;
}

.testimonial-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.testimonial-text {
  font-size: 12px;
  font-weight: 400;
  color: #333;
  margin: 0;
}

.quote-icon {
  align-self: flex-start;
  margin-top: 10px;
  font-size: 24px;
  color: #bababa;
}

.box2 .quote-icon {
  color: #3c83f5;
}

/* SECTION 7 */
.section7 {
  margin: 40px 20px;
}

.section7 h2 {
  margin: 40px auto;
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
  width: 70%;
  padding: 10px;
}

.features-container {
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.feature-card {
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.feature-card h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  line-height: 1.2;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 30px;
  flex-grow: 1;
}

.feature-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.campaign-card {
  background: #e5efff;
}

.campaign-card .feature-btn {
  background-color: #002583;
  color: white;
}

.campaign-card .feature-btn:hover {
  background-color: #2c73e5;
  transform: translateY(-2px);
}

.request-card {
  background: #e1ffef;
}

.request-card .feature-btn {
  background-color: #05572b;
  color: white;
}

.request-card .feature-btn:hover {
  background-color: #1f4a2d;
  transform: translateY(-2px);
}

.professionals-card {
  background: #ffffe1;
}

.professionals-card .feature-btn {
  background-color: #a37d01;
  color: white;
}

.professionals-card .feature-btn:hover {
  background-color: #9a7209;
  transform: translateY(-2px);
}

.talent-card {
  background: #fff3e9;
}

.talent-card .feature-btn {
  background-color: #4c0000db;
  color: white;
}

.talent-card .feature-btn:hover {
  background-color: #723a0f;
  transform: translateY(-2px);
}

/* F-A-Q */
.FAQ-section {
  max-width: 900px;
  margin: 20px auto;
}

.faq-title {
  font-size: 48px;
  font-weight: 700;
  color: #2e2d2d;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}

.faq-item {
  background: white;
  border-radius: 0;
  margin-bottom: 2px;
  overflow: hidden;
  box-shadow: none;
  border: none;
  padding: 5px;
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: white;
  border: none;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: #3c83f5;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #e5e5e5;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question.active {
  background-color: #f0f7ff;
}

.plus-icon {
  font-size: 24px;
  font-weight: 300;
  color: #09a555;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-question.active .plus-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: white;
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  padding: 25px 30px 20px 30px;
}

.cta-section {
  margin: auto;
}

.cta-container {
  background: #001534;
  border-radius: 25px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  max-width: 90%;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 400px;
}

.cta-content {
  flex: 1;
  width: 60%;
  z-index: 2;
}

.cta-content img {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 45%;
  width: 55%;
  padding: 5px;
}

.cta-title {
  font-size: 38px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-weight: 400;
}

.cta-button-container {
  flex-shrink: 0;
  z-index: 2;
  width: 40%;
  text-align: center;
}

.cta-button {
  background-color: #14ae5c;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.cta-button:hover {
  background-color: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* FOOTER SECTION */
.footer {
  background-color: #001534;
  color: white;
  padding: 60px 40px 40px;
}

.footer-container {
  width: 100%;
  max-height: 70%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
  padding: 10px 5px;
}

/* Logo Section */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 120px;
  height: 120px;
}

.footer-logo img {
  width: 100%;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #b8c5d6;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

/* Contact Section */
.contact-info p {
  color: #b8c5d6;
  font-size: 16px;
  margin-bottom: 12px;
}

.contact-info .email {
  color: white;
  font-weight: 500;
}

.contact-info .phone {
  color: white;
  font-weight: 500;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.social-icon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icons img {
  width: 28px;
  height: 28px;
}

.social-icon:hover {
  transform: translateY(-2px);
}

/* Copyright Section */
.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #344a6b;
  text-align: center;
  color: #b8c5d6;
  font-size: 14px;
}

/* MOBILE RESPONSIVE STYLES */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 2.5rem;
    width: 70%;
  }

  .hero p {
    width: 70%;
  }

  .section2 h1 {
    font-size: 2.5rem;
    width: 70%;
  }

  .section3 h1 {
    font-size: 2.5rem;
  }

  .section7 h2 {
    font-size: 3rem;
    width: 90%;
  }

  .features-container {
    gap: 40px;
  }
}

/* Tablets */
@media (max-width: 968px) {
  nav {
    padding: 15px 30px;
  }

  .logo {
    width: 15%;
  }

  .hero h1 {
    font-size: 2.2rem;
    width: 85%;
  }

  .hero p {
    width: 85%;
    font-size: 1rem;
  }

  .search-box {
    max-width: 350px;
  }

  .hero-actions a {
    margin: 0 5px;
  }

  .section2 h1 {
    font-size: 2.2rem;
    width: 85%;
  }

  .container {
    flex-direction: column;
    width: 90%;
    gap: 30px;
  }

  .card1,
  .card2,
  .card3 {
    width: 100%;
    max-width: 400px;
  }

  .section3 h1 {
    font-size: 2.2rem;
  }

  .section3 p {
    width: 60%;
  }

  .card-container {
    flex-wrap: wrap;
    width: 90%;
  }

  .card-1,
  .card-2,
  .card-3,
  .card-4 {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }

  .section4 {
    width: 95%;
    padding: 0 15px;
  }

  .section4 .title {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .section4 .title h1 {
    font-size: 2rem;
  }

  .trending-grid {
    flex-direction: column;
    gap: 30px;
  }

  .trending-card {
    width: 100%;
  }

  .section5 h1 {
    font-size: 3rem;
  }

  .section5 p {
    width: 70%;
  }

  .section6 {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }

  .review-left h2 {
    font-size: 2.5rem;
  }

  .review-left p {
    width: 100%;
  }

  .review-right {
    position: relative;
    min-height: 350px;
  }

  .testimonial-box {
    position: relative !important;
    margin-bottom: 20px;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    max-width: 100%;
  }

  .section7 h2 {
    font-size: 2.5rem;
    width: 90%;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-title {
    font-size: 2.5rem;
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
    padding: 60px 40px;
    gap: 30px;
  }

  .cta-content {
    width: 100%;
  }

  .cta-content img {
    display: none;
  }

  .cta-button-container {
    width: 100%;
  }

  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .footer-logo {
    grid-column: 1 / -1;
    justify-content: center;
    margin-bottom: 20px;
  }
}

/* Small Tablets */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .links {
    order: 3;
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }

  .links a {
    margin: 0 8px;
    font-size: 16px;
  }

  .logo {
    width: 20%;
  }

  .logo img {
    width: 50px;
  }

  .hero {
    top: 15%;
  }

  .hero h1 {
    font-size: 1.8rem;
    width: 95%;
  }

  .hero p {
    width: 95%;
    font-size: 0.95rem;
  }

  .search-box {
    max-width: 300px;
  }

  .btn-primary,
  .btn-outline {
    padding: 6px 12px;
    font-size: 14px;
  }

  .section1 {
    flex-wrap: wrap;
    gap: 15px;
  }

  .section1 img {
    width: 80px;
  }

  .section2 {
    padding: 15px;
  }

  .section2 h1 {
    font-size: 1.8rem;
    width: 95%;
  }

  .container {
    width: 95%;
    padding: 10px;
  }

  .card1 img,
  .card2 img,
  .card3 img {
    height: 200px;
  }

  .section3 h1 {
    font-size: 1.8rem;
  }

  .section3 p {
    width: 85%;
    font-size: 16px;
  }

  .card-1,
  .card-2,
  .card-3,
  .card-4 {
    width: 100%;
    margin-bottom: 15px;
  }

  .section4 .title h1 {
    font-size: 1.6rem;
  }

  .trending-image {
    height: 200px;
  }

  .section5 h1 {
    font-size: 2.2rem;
  }

  .section5 p {
    width: 90%;
    font-size: 16px;
  }

  .review-left h2 {
    font-size: 2rem;
  }

  .review-left p {
    font-size: 16px;
  }

  .section7 h2 {
    font-size: 2rem;
  }

  .feature-card {
    padding: 30px;
  }

  .feature-card h3 {
    font-size: 24px;
  }

  .feature-card p {
    font-size: 15px;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    padding: 20px;
    font-size: 18px;
  }

  .faq-answer.active {
    padding: 20px;
  }

  .cta-container {
    padding: 50px 30px;
    margin: 30px 10px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 16px;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 16px;
  }

  .footer {
    padding: 40px 20px 30px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .footer-logo {
    grid-column: 1 / -1;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  header {
    height: 70dvh;
  }

  nav {
    padding: 10px 15px;
  }

  .logo {
    width: 25%;
  }

  .logo img {
    width: 45px;
  }

  .auth-links a {
    margin: 0 5px;
    font-size: 12px;
  }

  .sign-in,
  .sign-up {
    padding: 6px 8px;
    font-size: 14px;
  }

  .hero {
    top: 10%;
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 1.5rem;
    width: 100%;
    margin-bottom: 10px;
  }

  .hero p {
    width: 100%;
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .search-box {
    max-width: 280px;
    padding: 2px 8px;
  }

  .search-box input {
    padding: 5px 10px;
    font-size: 0.9rem;
  }

  .hero-actions {
    margin-top: 25px;
  }

  .hero-actions a {
    margin: 5px;
    display: inline-block;
  }

  .btn-primary,
  .btn-outline {
    padding: 5px 10px;
    font-size: 13px;
  }

  .section1 {
    padding: 15px 5px;
  }

  .section1 img {
    width: 60px;
  }

  .section2 {
    padding: 10px;
  }

  .section2 h1 {
    font-size: 1.5rem;
    width: 100%;
    margin-bottom: 15px;
  }

  .container {
    width: 100%;
    padding: 5px;
  }

  .card1,
  .card2,
  .card3 {
    padding: 15px;
  }

  .card1 img,
  .card2 img,
  .card3 img {
    height: 180px;
  }

  .card1 h4,
  .card2 h4,
  .card3 h4 {
    font-size: 1.1rem;
  }

  .card1 p,
  .card2 p,
  .card3 p {
    font-size: 0.9rem;
  }

  .section3 {
    margin: 30px 0;
    padding-bottom: 25px;
  }

  .section3 h1 {
    font-size: 1.5rem;
    margin: 15px auto;
  }

  .section3 p {
    width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .card-container {
    width: 100%;
  }

  .card-1 p,
  .card-2 p,
  .card-3 p,
  .card-4 p {
    font-size: 14px;
    width: 100%;
  }

  .section4 {
    width: 100%;
    padding: 0 10px;
    margin: 20px auto;
  }

  .section4 .title {
    margin-bottom: 25px;
  }

  .section4 .title h1 {
    font-size: 1.4rem;
  }

  .section4 .title a {
    font-size: 1rem;
  }

  .trending-image {
    height: 180px;
  }

  .trending-note h3 {
    font-size: 16px;
  }

  .section5 {
    margin: 30px auto;
    padding-bottom: 25px;
  }

  .section5 .card-container {
    margin: auto;
    justify-content: space-evenly;
  }

  .section5 h1 {
    font-size: 1.8rem;
    margin: 20px auto;
  }

  .section5 p {
    width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .section6 {
    padding: 30px 15px;
    margin: 5px auto;
  }

  .review-left {
    text-align: left;
  }

  .review-left h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .review-left p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .review-left a {
    padding: 10px 20px;
    font-size: 14px;
  }

  .testimonial-box {
    max-width: 100%;
    padding: 8px;
    margin-bottom: 15px;
  }

  .testimonial-text {
    font-size: 11px;
  }

  .profile-name {
    font-size: 10px;
  }

  .quote-icon {
    font-size: 18px;
  }

  .section7 {
    margin: 25px 10px;
  }

  .section7 h2 {
    font-size: 1.6rem;
    width: 100%;
    margin: 25px auto 15px;
    padding: 5px;
  }

  .feature-card {
    padding: 20px;
    min-height: 220px;
  }

  .feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .feature-card p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .feature-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .FAQ-section {
    margin: 15px 10px;
  }

  .faq-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 15px;
    font-size: 16px;
  }

  .faq-answer.active {
    padding: 15px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .plus-icon {
    font-size: 20px;
  }

  .cta-container {
    padding: 30px 15px;
    margin: 20px auto;
    border-radius: 20px;
    min-height: 300px;
  }

  .cta-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .cta-subtitle {
    font-size: 14px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 15px;
  }

  .footer {
    padding: 30px 15px 25px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
  }

  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer-section a {
    font-size: 14px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .social-icons {
    justify-content: center;
    gap: 6px;
  }

  .social-icons img {
    width: 24px;
    height: 24px;
  }

  .footer-bottom {
    margin-top: 25px;
    padding-top: 20px;
    font-size: 12px;
  }
}
-left {
  min-width: unset;
  text-align: center;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1000;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile Navigation Styles */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 999;
  padding: 80px 20px 20px;
}

.mobile-nav.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  margin: 15px 0;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.mobile-nav .auth-links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.mobile-nav .sign-in,
.mobile-nav .sign-up {
  border: 1px solid #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 16px;
  color: white;
  text-align: center;
  transition: all 0.3s;
  width: 80%;
  margin: 0 auto;
}

.mobile-nav .sign-up {
  background-color: #2d64ee;
  border-color: #2d64ee;
}

.mobile-nav .sign-in:hover {
  background-color: #ffffff;
  color: #000000;
}

.mobile-nav .sign-up:hover {
  background-color: #193d96;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
    position: relative;
  }

  .logo {
    width: auto;
  }

  .logo img {
    width: 50px;
  }

  /* Hide desktop navigation */
  .links,
  .auth-links {
    display: none;
  }

  /* Show hamburger menu */
  .hamburger {
    display: flex;
  }

  .hero {
    top: 12%;
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 2rem;
    width: 95%;
    margin-bottom: 15px;
  }

  .hero p {
    width: 95%;
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .search-box {
    max-width: 320px;
    padding: 8px 15px;
    margin-top: 25px;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .hero-actions a {
    margin: 5px;
    font-size: 14px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 12px 15px;
    position: sticky;
    top: 0;
  }

  .logo img {
    width: 45px;
  }

  .hamburger span {
    width: 22px;
    height: 2px;
  }

  .mobile-nav {
    padding: 70px 15px 15px;
  }

  .mobile-nav a {
    font-size: 18px;
    margin: 12px 0;
  }

  .hero {
    top: 8%;
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 1.7rem;
    width: 100%;
  }

  .hero p {
    font-size: 0.95rem;
    width: 100%;
  }

  .search-box {
    max-width: 280px;
    padding: 6px 12px;
  }

  .hero-actions a {
    font-size: 13px;
    padding: 6px 14px;
  }
}

body.menu-open {
  overflow: hidden;
}

.mobile-nav {
  z-index: 9999;
}

.hamburger {
  z-index: 10000;
  position: relative;
}
