.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}
#main {
    margin-bottom: 80px;
}
h2 {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 25px;
}
h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

/* ====================== HERO ====================== */
.hero-section {
    padding: 200px 20px 200px 20px;
    text-align: center;
}
.hero-section h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
}
.hero-search {
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================== FEATURED CARDS ====================== */
.featured-cards {
    background: #f4c430;
    padding: 50px 0;
}
.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.fc-item {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    display: block;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    transition: 0.3s;
}
.fc-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
}
.fc-item:hover {
    transform: translateY(-4px);
}

/* ====================== TOOL GRID ====================== */
.tool-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.tool-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    text-decoration: none;
    display: block;
    color: #000;
    box-shadow: 0 4px 14px rgb(0 0 0 / 6%);
    transition: 0.3s;
    border: 1px solid #eee;
}
.tool-card:hover {
    transform: translateY(-5px);
}
.tool-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}
.tool-card p {
    margin-top: 10px;
    color: #4b4b4b;
}

/* ====================== BLOG GRID ====================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    display: block;
    text-decoration: none;
    color: #000;
}
.blog-card img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 12px;
    object-fit: cover;
}

/* ====================== CATEGORY SECTION ====================== */
.category-box {
  display: flex;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  gap: 30px;
  align-items: center;
  border: 1px solid #eee;
  margin-bottom: 40px;
}

.category-left {
  background: #e7c31c;
  width: 230px;
  height: 180px;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.category-icon-wrap {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

.category-right {
  flex: 1;
}

.category-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
}

.category-viewall {
  background: #e7c31c;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.category-desc {
  color: #555;
  margin-top: 10px;
  margin-bottom: 20px;
  max-width: 650px;
}

.category-tools {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.tool-item {
  text-align: center;
  width: 100px;
}

.tool-item img {
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eee;
}

.tool-item span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}
/* ===================== WHO WE ARE IMAGE + TEXT SECTION ===================== */
.who-we-are-sec {
    padding: 80px 0;
}

.who-we-are-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.ww-left {
    display: flex;
    justify-content: center;
}

.ww-grid-img {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
}

.ww-right h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 18px;
}

.ww-right p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    max-width: 520px;
}

.ww-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.ww-btn:hover {
    background: #333;
}

/* Responsive */
@media (max-width: 900px) {
    .who-we-are-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ww-right p {
        margin-left: auto;
        margin-right: auto;
    }
    .ww-left {
        order: -1;
    }
}

/* ===================== FEATURED CATEGORIES ===================== */
.featured-categories-sec {
    background: #f4c430;
    padding: 80px 0;
}

.featured-categories-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.fc-left {
    display: flex;
    justify-content: center;
}

.fc-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
}

.fc-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.fc-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000;
    color: #fff;
    border-radius: 14px;
    padding: 25px 0;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 700;
    text-align: center;
}

.fc-card:hover {
    transform: translateY(-5px);
}

.fc-card span {
    margin-top: 10px;
    display: block;
    font-size: 16px;
}

.fc-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

/* Special styling for "View All" card */
.fc-view-all {
    background: #f4c430;
    color: #000;
    border: 2px solid #000;
}
/*.hero-search .tnp-subscription-minimal input.tnp-submit {
    width: 15% !important;
}*/
#main-hero.hero-section {
    background-image: url('https://lemonsight.com/wp-content/uploads/2024/02/home-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Full-width background wrapper */
#popular-tools-wrapper {
    width: 100%;
    background: #F5F5F5;
    padding: 60px 0;
}

/* Inner container stays narrow and centered */
.popular-tools-container {
    max-width: 1250px;
    width: 90%;
    margin: 0 auto;
}

/* Header */
.pts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.pts-header h2 {
    font-size: 32px;
    font-weight: bold;
    text-decoration: underline;
}
.pts-subtitle {
    margin-top: 8px;
    color: #555;
    max-width: 600px;
}

.pts-viewall {
    background: #000;
    color: #fff;
    padding: 10px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* Grid */
.pts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

/* Card */
.pts-card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 24px;
    border: 2px solid #000;
    border-radius: 16px;
    text-decoration: none;
    color: #000;
    transition: .25s ease;
}
.pts-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Icon */
.pts-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

/* Content */
.pts-content h3 {
    font-size: 22px;
    font-weight: bold;
}
.pts-content p {
    color: #555;
    margin-top: 6px;
}

/* Tags */
.pts-tags {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.pts-tag {
    background: #EFCB00;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.blogs-section{margin-top:50px;}
/* Responsive */
/* Tablet */
@media (max-width: 991px) {
    .pts-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .pts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media(max-width: 992px) {
    .featured-categories-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .fc-right {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
    }
}

@media(max-width: 600px) {
    .fc-right {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive */
@media (max-width: 992px) {
  .category-box {
    flex-direction: column;
    text-align: center;
  }

  .category-left {
    width: 100%;
    height: auto;
    padding: 30px 0;
  }

  .category-tools {
    justify-content: center;
  }
}

/* ====================== RESPONSIVE ====================== */
@media(max-width: 992px) {
    .feature-card-grid,
    .tool-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-row {
        grid-template-columns: 1fr;
    }
}
@media(max-width: 600px) {
    .feature-card-grid,
    .tool-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
	.hero-section h1{font-size:32px;}
}