@import url('colour.css');

body {
  margin: 0;
  font-family: var(--font-primary);
  /* background-color: var(--color-primary-yellow); */
  color: var(--color-black);
}

.cartoon {
  position: fixed;
  bottom: -4px;
  right: -120px;
  /* Start off screen */
  z-index: 1000;
  transition: right 1s ease;
  /* Slide effect */
}

.cartoon img {
  max-width: 100px;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary-yellow) var(--color-light-gray);
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-light-gray);
  /* Light gray track */
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary-yellow);
  /* Yellow thumb */
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-dark-gray);
  /* Dark gray on hover */
}

/* Firefox */



/* Nav */
.nav {
  background-color: var(--color-primary-yellow);
  /* color: var(--color-primary-yellow); */
  padding: .5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.back-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--color-black);
  text-decoration: none;
  transition: var(--transition);
}

.back-icon:hover {
  color: var(--color-white);
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px;
  background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
  color: var(--color-white);
  min-height: 100vh;
  box-sizing: border-box;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 56px;
  margin: 0 0 10px 0;
  /* Slightly less margin to make room for subtitle */
  line-height: 1.2;
  color: var(--color-white);
}

.hero-subtitle {
    font-weight: 700;
    font-style: normal;
    color: rgb(24, 55, 93);
    font-kerning: normal;
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 40px 0;
  color: var(--color-light-gray);
}

.hero-button {
  background: var(--color-accent);
  color: var(--color-black);
  border: none;
  padding: 16px 36px;
  border-radius: var(--radius-large);
  font-weight: bold;
  cursor: pointer;
  font-size: 18px;
  position: relative;
  text-decoration: none;
  transition: var(--transition);
}

.hero-button::after {
  /* content: '→'; */
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.hero-button:hover {
  background: #e6b800;
  /* Slightly darker yellow for hover */
}

.hero-image img {
  max-width: 500px;
  height: auto;
}

.hero__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
  font-size: 20px;
  /* fallback for icons */
}



.hero__socials i {
  font-size: 20px;
  /* adjust size as needed */
  line-height: 1;
}

.seo-score-section {
  /* background: var(--color-black); */
  background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));

  text-align: center;
  padding: 20px 20px;
  font-family: var(--font-primary);
}

.seo-score-subtitle {
  color: var(--color-white);
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.seo-score-title {
  font-size: 48px;
  margin: 0 0 20px 0;
  color: var(--color-white);
  font-weight: bold;
}

.seo-score-title span {
  color: var(--color-primary-yellow);
}

.seo-score-description {
  color: var(--color-light-gray);
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  font-size: 18px;
}

.seo-score-description span {
  color: var(--color-primary-yellow);
  font-weight: bold;
}

.seo-score-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.seo-score-input {
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  width: 300px;
  max-width: 90%;
  outline: none;
  font-size: 16px;
}

.seo-score-input:focus {
  outline: none;
  border-color: var(--color-highlight);
  box-shadow: 0 0 0 3px rgba(251, 207, 3, 0.3);
}

.seo-score-button {
  background: var(--color-primary-yellow);
  color: var(--color-black);
  border: none;
  padding: 16px 36px;
  border-radius: var(--radius-large);
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
}

.seo-score-button:hover {
  background: #e6b800;
  /* darker yellow on hover */
}

/* .services-section {
  background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
  color: var(--color-white);
  text-align: center;
  padding: 80px 20px;
  font-family: var(--font-primary);
}

.services-subtitle {
  color: var(--color-primary-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 10px;
}

.services-title {
  font-size: 42px;
  margin: 0 0 20px 0;
}

.services-description {
  color: var(--color-light-gray);
  max-width: 800px;
  margin: 0 auto 60px auto;
  font-size: 18px;
  line-height: 1.6;
}

.services-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card {
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 20px;
  padding: 40px 30px;
  width: 300px;
  position: relative;
  text-align: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--color-primary-yellow);
}

.service-icon img {
  width: 100px;
}

.service-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-primary-yellow);
}

.service-description {
  color: var(--color-dark-gray);
  line-height: 1.6;
}

.service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: bold;
  color: rgba(251, 207, 3, 0.5);
  opacity: 0.2;
} */


.services-section {
  background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
  color: var(--color-white);
  text-align: center;
  padding: 50px 20px 0 20px;
  font-family: var(--font-primary);
}

.services-subtitle {
  color: var(--color-primary-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 10px;
}
.services-header {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers children horizontally */
}

.services-title {
  width: 70%;
  font-size: 42px;
  margin: 0 0 20px 0;
  color: rgb(24, 55, 93);
}


.services-description {
  color: var(--color-light-gray);
  max-width: 800px;
  margin: 0 auto 60px auto;
  font-size: 18px;
  line-height: 1.6;
}

/* ✅ NEW: Carousel wrapper */
.services-grid-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}


.services-grid {
  display: flex;
  flex-direction: column;
  gap: 30px; /* space between rows */
  max-width: 1200px;
  width: 100%;
  margin: 0 auto; /* centers the grid */
}


.services-row {
  display: flex;
  justify-content: center; /* centers the cards horizontally */
  gap: 20px; /* spacing between cards */
}

.service-card {
  flex: 0 0 220px; /* fixed width for neat boxes */
  border: 2px solid #f4c542;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  text-align: center;
}

.service-card {
  border: 2px solid #f4c542; /* yellow border like screenshot */
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  text-align: center;
  position: relative;
  min-height: 220px;
  transition: all 0.3s ease;
}

.service-card:nth-child(2n) {
  border-color: #0f3a64; /* alternate dark blue border */
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
}

.service-title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.service-description {
  font-size: 20px;
  line-height: 1.5;
  color: #333;
}

.service-number {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 14px;
  font-weight: bold;
  color: #888;
}


  /* Responsive styles */
  @media (max-width: 1024px) {
    .services-row {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .services-row {
      grid-template-columns: 1fr;
    }
    
    .services-grid {
      gap: 15px;
    }
    
    .service-card {
      padding: 20px;
    }
  }
.working-process {
  /* background: var(--color-black); */
  background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));

  color: var(--color-white);
  text-align: center;
  padding: 80px 20px;
  font-family: var(--font-primary);
}

.working-subtitle {
  color: var(--color-primary-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 10px;
}

.working-title {
  font-size: 42px;
  margin: 0 0 20px 0;
}

.working-description {
  color: var(--color-light-gray);
  max-width: 800px;
  margin: 0 auto 60px auto;
  font-size: 18px;
  line-height: 1.6;
}

.working-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step-card {
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 20px;
  padding: 40px 30px;
  width: 300px;
  position: relative;
  text-align: left;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--color-primary-yellow);
}

.step-icon img {
  width: 100px;
}

.step-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-primary-yellow);
}

.step-description {
  color: var(--color-dark-gray);
  line-height: 1.6;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: bold;
  /* color: var(--color-light-gray); */
  color: rgba(251, 207, 3, 0.5);
  opacity: 0.2;
}


.pricing {
  padding: 50px 20px;
  background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
}

.pricing-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;


}

.pricing-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  width: 300px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
  position: relative;
  transform: translateY(-40px);
  border: 2px solid var(--color-primary-yellow);
  /* border-top: 10px solid var(--color-primary-yellow) ; */
}

.packages-header {
  text-align: center;
  margin-bottom: 50px;
}

.packages-subtitle {
  color: var(--color-primary-yellow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.packages-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 10px 0;
  color: var(--color-white);
}

.packages-description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-light-gray);
  line-height: 1.6;
}

.title_popular {
  background-color: var(--color-primary-yellow);
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  font-weight: 700;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  padding: 10px 0;


}

.pricing-name {
  font-size: 1.5rem;
  color: var(--color-black);
  margin-bottom: 10px;
}

.pricing-tagline {
  color: var(--color-dark-gray);
  margin-bottom: 20px;
}

.pricing-price {
  font-size: 2.5rem;
  color: var(--color-primary-yellow);
  font-weight: bold;
}

.price-currency {
  font-size: 1.2rem;
  vertical-align: super;
}

.price-period {
  font-size: 1rem;
  color: var(--color-dark-gray);
}

.pricing-offer {
  color: var(--color-dark-gray);
  margin: 10px 0 20px;
  font-size: 0.9rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.pricing-features li {
  margin: 10px 0;
  color: var(--color-black);
}

.pricing-button {
  background: var(--color-primary-yellow);
  color: var(--color-black);
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.pricing-button:hover {
  background: #e0b800;
  /* Slightly darker yellow */
}



.portfolio-header {
  text-align: center;
  margin-bottom: 50px;
}

.portfolio-subtitle {
  color: var(--color-primary-yellow);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.portfolio-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 15px;
}

.portfolio-description {
  color: var(--color-light-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.portfolio {
  padding: 40px;
  /* background: var(--color-white); */
  background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
}

.shop-templates {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;


}

.shop-card {
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  max-width: 350px;
  /* limit max width */
  flex: 1 1 300px;
  /* grow, shrink, base width */
}


.shop-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.shop-image img {
  display: block;
  width: 100%;
  height: 250px;
  border-bottom: 1px solid var(--color-light-gray);
}

.shop-info {
  padding: 20px;
  position: relative;
}

.shop-title {
  font-size: 1.5rem;
  color: var(--color-white);
  margin: 0;
}

.shop-category {
  color: var(--color-dark-gray);
  font-size: 0.9rem;
  margin: 10px 0 0 0;
}

.shop-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-primary-yellow);
  color: var(--color-black);
  padding: 5px 12px;
  font-size: 0.75rem;
  border-radius: 20px;
  font-weight: bold;
}

.shop-label.trending {
  background: var(--color-primary-yellow);
}

.shop-label.hot {
  background: #f36d21;
  /* your accent orange for HOT label */
  color: var(--color-white);
}


.about-us-section {
  padding: 0px 60px;
  background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));

}

.about-us-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* .about-us-text {
  flex: 1;
  max-width: 600px;
} */
.about-us-text {
  flex: 1;
  max-width: 100%;
}

.about-us-text a {
  text-decoration: none;
}

.about-us-subtitle {
  text-transform: uppercase;
  /* color: var(--color-primary-yellow); */
  color: rgb(24, 55, 93);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.index-about-text {
  align-items: center;
  text-align: center;
}

.index-about-sub {
  font-size: 50px;

}

.index-about-descrip {
  /* width: 80%; */
  text-align: justify;
  margin: 0 auto;
  color: var(--color-light-gray) !important;
}

.index-about-text {
  padding: 0px;
  border-radius: 14px;
  border: 1px solid #f0f0f0 !important;
}

.about-us-title {
  font-size: 1.5em;
  font-weight: 100;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 30px;
}

.about-us-description {
  color: var(--color-dark-gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-us-image {
  flex: 1;
  text-align: center;
}

.about-us-image img {
  max-width: 100%;
  height: auto;
}

.faq-section {
  display: flex;
  justify-content: space-between;
  /* background: var(--color-black); */
  background: linear-gradient(90deg, var(--color-gradient-end), var(--color-gradient-start));

  color: var(--color-white);
  padding: 80px 60px;
  font-family: Arial, sans-serif;
}

.faq-left {
  max-width: 40%;
}

.faq-title {
  color: #0f3a64;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.faq-description {
  color: var(--color-light-gray);
  font-size: 18px;
  font-family: var(--font-primary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.faq-contact-btn {
  background: var(--color-primary-yellow);
  color: var(--color-black);
  border: none;
  padding: 15px 30px;
  border-radius: var(--radius-large);
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.faq-contact-btn:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.faq-right {
  max-width: 50%;
}

.faq-item {
  border-bottom: 1px solid var(--color-dark-gray);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-number {
  color: var(--color-primary-yellow);
  font-weight: bold;
  margin-right: 10px;
}

.faq-text {
  flex: 1;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-primary);
}

.faq-toggle {
  font-size: 24px;
  color: var(--color-primary-yellow);
  transition: var(--transition);
}

.faq-question:hover .faq-toggle {
  transform: rotate(90deg);
}

.faq-question.active .faq-text {
  color: var(--color-primary-yellow);
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
}


.faq-answer {
  max-height: 0;
  font-family: var(--font-primary);
  overflow: hidden;
  /* transition: max-height 0.4s ease, padding 0.4s ease; */
  transition: max-height 1s ease-in-out, padding 0.5s ease;
  padding: 0 20px;
  color: var(--color-dark-gray);
}

.faq-item:hover .faq-answer {
  max-height: 200px;
  /* adjust height to fit your content */
  padding: 15px 20px;

}

.faq-question {
  cursor: pointer;
  /* padding: 15px 20px; */
  /* background: #fff; */
  /* border-bottom: 1px solid #ddd; */
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}


.logo img {
  width: auto;
  height: 50px;
}

.why-choose-section {
  padding: 50px 60px;
  background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
}
.why-choose-main-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-container {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.why-choose-image {
  flex: 1;
  text-align: center;
}

.why-choose-image img {
  max-width:63%;
  height: auto;
  border-radius: 20px;
}

.why-choose-content {
  flex: 1;
  max-width: 600px;
}

.why-choose-title {
  font-size: 3rem;
  font-weight: 800;
  color: rgb(24, 55, 93);
  /* color: var(--color-white); */
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
}

.why-choose-description {
  color: var(--color-dark-gray);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 0;
  margin-bottom: 30px;
}

.why-choose-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-card {
  /* background: var(--color-white); */
  color: var(--color-white);
  border-radius: 12px;

  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 45%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  color: var(--color-primary-yellow);
  font-size: 20px;
}

.feature-text {
  margin: 0;
  font-size: 16px;
  color: var(--color-white);
}

@media (max-width: 768px) {
  .why-choose-container {
    flex-direction: column;
  }

  .why-choose-image,
  .why-choose-content {
    flex: 1 1 100%;
  }

  .feature-card {
    flex: 1 1 100%;
  }
}

.contact-section {
  padding: 50px 60px;
  background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
}

.contact-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-content {
  flex: 1;
  max-width: 600px;
}

.contact-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-description {
  color: var(--color-dark-gray);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.contact-cta {
  font-weight: 700;
  color: var(--color-white);
  margin-top: 20px;
}

.contact-form-container {
  flex: 1;
  max-width: 500px;
  background: var(--color-gradient-start);
  padding: 10px 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--color-primary-yellow);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--color-white);
  color: var(--color-black);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-dark-gray);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background: var(--color-primary-yellow);
  color: var(--color-black);
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: var(--color-white);
  color: var(--color-black);
  border: 2px solid var(--color-primary-yellow);
}


@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-content,
  .contact-form-container {
    max-width: 100%;
  }
}


/* Section */
.section {
  text-align: center;
  padding: 5rem 2rem;
  background-color: var(--color-white);
  color: var(--color-black);
}

.section__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section__content {
  font-size: 1.2rem;
  color: var(--color-dark-gray);
  max-width: 600px;
  margin: 0 auto;
}

.cta {
  background-color: var(--color-black);
  color: var(--color-white);
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta h2 span {
  color: var(--color-primary-yellow);
}

.cta p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--color-light-gray);
  line-height: 1.6;
}

.cta__form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cta__form input[type="email"] {
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  width: 300px;
  max-width: 90%;
  outline: none;
  font-size: 16px;
}

.cta__form button {
  background-color: var(--color-primary-yellow);
  color: var(--color-black);
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.cta__form button:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

.footer {
  background-color: var(--color-primary-yellow);
  color: var(--color-white);
  padding: 10px 20px;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer__logo img {
  height: 50px;
  width: auto;
}

.footer__logo .footer__desc {
  color: var(--color-light-gray);
  line-height: 1.6;
}

.footer__socials a {
  display: inline-block;
  background: var(--color-primary-yellow);
  color: var(--color-black);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  transition: 0.3s;
}

.footer__socials svg {
  vertical-align: middle;
}


.footer__socials a:hover {
  background: var(--color-white);
}

.footer__links h3,
.footer__categories h3,
.footer__contact h3 {
  margin-bottom: 15px;
  color: var(--color-white);
}

.footer__links ul,
.footer__categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links ul li,
.footer__categories ul li {
  margin-bottom: 10px;
}

.footer__links ul li a,
.footer__categories ul li a {
  color: var(--color-light-gray);
  text-decoration: none;
  transition: 0.3s;
}

.footer__links ul li a:hover,
.footer__categories ul li a:hover {
  color: var(--color-primary-yellow);
}

.footer__contact p {
  color: var(--color-light-gray);
  margin: 8px 0;
}

.footer__contact i {
  margin-right: 8px;
  color: var(--color-primary-yellow);
}

.footer__bottom {
  border-top: 1px solid var(--color-dark-gray);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--color-light-gray);
}

.footer__bottom a {
  color: var(--color-white);
  text-decoration: none;
  margin: 0 5px;
}

.footer__bottom a:hover {
  text-decoration: underline;
}

.footer__contact .material-icons {
  margin-right: 8px;
  color: var(--color-primary-yellow);
  vertical-align: middle;
}


/* about us/////////////////////// */

.what-we-do {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 60px;
  background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));

}

.what-we-do__content {
  flex: 1;
  max-width: 600px;
  font-family: var(--font-primary);
}

.what-we-do__subtitle {
  color: var(--color-accent);
  /* your bright yellow */
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.what-we-do__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--color-white);
  /* heading in black */
}

.what-we-do__description {
  color: var(--color-dark-gray);
  /* paragraph in dark gray */
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.what-we-do__image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-large);
}

@media (max-width: 991px) {
  .what-we-do {
    flex-direction: column;
    text-align: center;
  }

  .what-we-do__content {
    max-width: 100%;
  }
}

.who-we-are {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 60px;
  background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));

}

.who-we-are__image img {
  max-width: 100%;
  height: auto;
}

.who-we-are__content {
  flex: 1;
  max-width: 600px;
}

.who-we-are__subtitle {
  color: var(--color-accent);
  /* Your brand yellow */
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.who-we-are__title {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.who-we-are__description {
  color: var(--color-dark-gray);
  font-size: 18px;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .who-we-are {
    flex-direction: column;
    text-align: center;
  }

  .who-we-are__content {
    max-width: 100%;
  }
}


.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  /* background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-end) 100%); */
  font-family: var(--font-primary);
}

.contact-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  gap: 30px;
}

.contact-left,
.contact-right {
  flex: 1;
}

.glass-card {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  padding: 2.5rem;
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background:var(--color-black);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-description {
  color: var(--color-light-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-details {
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.contact-details li {
  margin-bottom: 1.5rem;
  color: var(--color-light-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-details strong {
  color: var(--color-white);
}

.contact-details i {
  color: var(--color-accent);
  width: 24px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 3rem;
}

.social-icon {
  color: var(--color-black);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icon:hover {
  color: var(--color-black);
  transform: translateY(-3px);
}

/* Form Styles */
.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 0 1rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  border-radius: calc(var(--radius-large) / 2);
  color: var(--color-white);
  font-family: var(--font-primary);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(251, 207, 3, 0.2);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-btn {
  width: 100%;
  padding: 1rem;
  background: var(--color-accent);
  color: var(--color-black);
  border: none;
  border-radius: calc(var(--radius-large) / 2);
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-btn:hover {
  background: #ffdc3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(251, 207, 3, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .glass-card {
    padding: 1.5rem;
  }
}

/* Icons (using Font Awesome classes as example) */
.icon-envelope:before {
  content: "\f0e0";
}

.icon-phone:before {
  content: "\f095";
}

.icon-map-marker:before {
  content: "\f041";
}

.icon-twitter:before {
  content: "\f099";
}

.icon-linkedin:before {
  content: "\f08c";
}

.icon-dribbble:before {
  content: "\f17d";
}

.icon-github:before {
  content: "\f09b";
}

.icon-paper-plane:before {
  content: "\f1d8";
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo img {
  max-height: 50px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: relative;
}

.logo img {
  max-height: 50px;
}

.hero-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 50px;
  list-style: none;
}

.hero-nav li {
  list-style: none;
}

.hero-nav li a {
  text-decoration: none;
  color: var(--color-black);
  transition: var(--transition);
}

.hero-nav li a:hover {
  color: var(--color-white);
}

.hamburger,
.close-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hero-nav {
    position: absolute;
    top: 80px;
    right: 0;
    background: var(--color-black);
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    padding: 20px;
    display: none;
    z-index: 1000;
    border-radius: 14px;
  }

  .hero-nav li a {
    color: var(--color-white);
    padding: 10px 0;
  }

  .hamburger {
    display: block;
  }

  .close-icon {
    display: none;
  }

  .hero-nav.active {
    display: flex;
  }

  .hamburger.hide {
    display: none;
  }

  .close-icon.show {
    display: block;
  }
}




/* Medium screens (tablets) */
@media (max-width: 1024px) {
  .hero-section {
    flex-direction: column-reverse;
    /* stack vertically */
    text-align: center;
    padding: 60px 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-button {
    font-size: 16px;
    padding: 14px 30px;
    text-decoration: none;

  }

  .hero-button::after {
    right: 14px;
  }

  .hero-image img {
    max-width: 400px;
    margin-bottom: 40px;
  }
}

/* Small screens (phones) */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-button {
    font-size: 15px;
    padding: 12px 24px;
  }

  /* .hero-section{
    min-height: auto;
  }
.hero-image{
    display: none;
}
  .hero-image img {
    display: none;
  } */
  .pricing-card.popular {
    transform: translateY(0px)
  }




  .seo-score-title {
    font-size: 28px;
  }

  .seo-score-subtitle {
    font-size: 16px;
  }

  .seo-score-description {
    font-size: 15px;
  }

  .seo-score-input {
    width: 100%;
  }

  .seo-score-form {
    flex-direction: column;
    gap: 12px;
  }

  .seo-score-button {
    width: 100%;
  }




  .working-title {
    font-size: 28px;
  }

  .working-subtitle {
    font-size: 16px;
  }

  .working-description {
    font-size: 15px;
  }

  .working-steps {
    flex-direction: column;
    gap: 20px;
  }

  .step-card {
    max-width: 100%;
    text-align: center;
  }

  .step-number {
    top: 20px;
    right: 20px;
  }



  .packages-title {
    font-size: 28px;
  }

  .packages-subtitle {
    font-size: 16px;
  }

  .packages-description {
    font-size: 15px;
  }

  .pricing-section {
    flex-direction: column;
    gap: 20px;
  }

  .pricing-card {
    max-width: 100%;
  }

  .pricing-name {
    font-size: 20px;
  }

  .pricing-price {
    font-size: 28px;
  }

  .price-currency {
    font-size: 18px;
  }

  .price-period {
    font-size: 14px;
  }

  .pricing-features li {
    font-size: 14px;
  }

  .pricing-button {
    width: 100%;
    font-size: 15px;
  }




  .portfolio-title {
    font-size: 28px;
  }

  .portfolio-subtitle {
    font-size: 16px;
  }

  .portfolio-description {
    font-size: 15px;
  }

  .shop-title {
    font-size: 16px;
  }

  .shop-category {
    font-size: 12px;
  }

  .about-us-section {
    padding: 60px 20px;
  }

  .about-us-title {
    font-size: 28px;
  }

  .about-us-subtitle {
    font-size: 16px;
  }

  .about-us-description {
    font-size: 15px;
  }

  .about-us-image img {
    max-width: 300px;
  }


  .faq-title {
    font-size: 28px;
  }

  .faq-description {
    font-size: 15px;
  }

  .faq-contact-btn {
    width: 100%;
  }

  .faq-text {
    font-size: 15px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .faq-section {
    padding: 60px 20px;
    flex-direction: column;
  }

  .faq-left,
  .faq-right {
    max-width: 100%;
  }



  .cta h2 {
    font-size: 24px;
  }

  .cta p {
    font-size: 15px;
  }

  .cta__form {
    flex-direction: column;
    align-items: center;
  }

  .cta__form input[type="email"] {
    width: 100%;
  }


}




.seo-score-progress-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 8px;
  background: #f0f0f0;
}

.seo-score-preview-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* ✅ This clips the iframe */
}

.seo-score-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  border: none;
  filter: blur(5px) brightness(0.7);
  z-index: 1;
  pointer-events: none;
}

.seo-score-progress-text {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  line-height: 300px;
  font-size: 100px;
  color: var(--color-primary-yellow);
}

.seo-score-progress-text strong {}

.hidden {
  display: none;
}




.happy-stories {
  text-align: center;
  padding: 40px 20px;
  background: #f4f4f4;
}

.happy-stories h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.happy-stories .subtitle {
  font-size: 1.1em;
  color: #23395b;
  margin-bottom: 40px;
}

.reviews {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  gap: 20px;
}

.google-rating {
  /* background: white; */
  padding: 20px;
  /* border-radius: 8px; */
  flex: 0 0 200px;
  text-align: center;
}
.google-rating p{
  font-size: 2.4em;
  margin: 0;
}
.google-rating h3 {
  margin: 0;
  font-size:2.4em;
  color: #23395b;
}

.google-rating .stars {
  color: gold;
  font-size: 2.2em;
}

.review-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 280px;
  text-align: left;
  border: 2px solid #f4c542;
}

.review-card .card-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.review-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.review-card strong {
  font-size: 1em;
}

.review-card span {
  font-style: italic;
  font-size: 0.85em;
  color: #666;
}

.review-card .stars {
  color: gold;
  margin: 8px 0;
}

.review-card p {
  font-size: 0.95em;
  line-height: 1.4;
  color: #333;
}
