.elementor-kit-6629{--e-global-color-primary:#56AEFF;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-9611843:#051D40;--e-global-color-506ce36:#000000;--e-global-color-9a36a82:#FFFFFF;--e-global-color-ed5a704:#F5F5F5;--e-global-color-2c469d1:#133753;--e-global-color-e51f930:#1066A7;--e-global-color-4c760ca:#CBCBCB;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6629 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Grid Layout */
/* Grid */
.grid-4x3 {
  background: #FAFAFA;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  align-items: start;
  box-sizing: border-box;
}

/* Card */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 174, 255, 0.2);
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}
.card-top {
  background: linear-gradient(to top, rgba(0, 174, 255, 0.08), #fff);
  box-shadow: 0 0 24px rgba(0, 174, 255, 0.3);
}
.card-top:hover {
  transform: translateY(-8px);
}

/* Ranking Badge */
.ranking-badge {
  position: absolute;
  top: 0;
  left: 0;
  width:40px;
  height: 40px;
  background: grey;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 10;
  overflow: hidden;
}

/* Optional inner shine fold effect */
.ranking-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background: inherit;
  box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.3);
  z-index: -1;
}


/* Optional folded shadow overlay */
.ranking-badge::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-bottom-right-radius: 60px;
  background: inherit;
  z-index: -1;
}

/* Ranking gradient colors */
.rank-1 {
  background: linear-gradient(135deg, #fff8dc, #ffd700);
  color: #000;
}
.rank-2 {
  background: linear-gradient(135deg, #f1f1f1, #c0c0c0);
  color: #333;
}
.rank-3 {
  background: linear-gradient(135deg, #fbe8d3, #cd7f32);
  color: #333;
}
.rank-4, .rank-999 {
  background: linear-gradient(135deg, #eeeeee, #cccccc);
  color: #444;
}

/* Top Row */
.top-row-inline {
  margin: 0 0 10px;
  width: 100%;
  position: relative;
  height: 30px;
}

.top-row-inline .price-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 600;
  padding: 2px 12px;
  background: #f0f0f0;
  border-radius: 8px;
  color: #333;
  white-space: nowrap;
  margin: 0;
}

.top-row-inline .save-icon {
  position: absolute;
  top: 0;
  right: 2px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin: 0;
}
.save-icon:hover {
  transform: scale(1.2);
}
.save-icon.saved {
  filter: hue-rotate(330deg) saturate(2);
}
.save-icon::after {
  content: ' Save';
  font-size: 13px;
  color: #555;
  margin-left: 6px;
}
.save-icon.saved::after {
  content: ' Remove';
  color: red;
}

/* Rating Stars */
.rating-stars {
  margin-top: 6px;
  font-size: 14px;
  color: #f1c40f;
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 12px;
}

/* Logo & Title */
.card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.logo-circle {
  width: 32px;
  height: 32px;
  background: #ddd;
  border-radius: 50%;
  object-fit: cover;
}
.card-title {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
  border-bottom: 2px solid #00aeff;
}
.card-title a {
  color: #333;
  text-decoration: none;
}
.card-title a:hover {
  text-decoration: underline;
}
.verified-icon {
  width: 16px;
  height: 16px;
  background: url('https://cdn-icons-png.flaticon.com/512/1828/1828640.png') no-repeat center;
  background-size: cover;
  position: absolute;
  top: -8px;
  right: -18px;
}

/* Description */
.card-desc {
  font-size: 13px;
  color: #444;
  margin: 12px 0;
  padding: 0 10px;
  line-height: 1.6;
  word-break: break-word;
  max-height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-desc a {
  color: #333;
  text-decoration: none;
}
.card-desc a:hover {
  text-decoration: underline;
}

/* Tags */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}
.card-tag {
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  color: #333;
  text-decoration: none;
}
.card-tag:hover {
  background: #f5f5f5;
}

/* Visit Button */
.card-btn {
  background: #00aeff;
  color: #fff;
  width: 100px; /* fixed width */
  height: 34px;
  padding: 0 12px;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px auto 0; /* 👈 center the button horizontally */
}
.card-btn:hover {
  background: #008ecc;
  color: #fff; /* 👈 Force white text on hover */
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-4x3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-4x3 {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 20px 16px;
  }
  .card-title {
    font-size: 15px;
  }
  .card-desc {
    font-size: 13px;
  }
  .logo-circle {
    width: 28px;
    height: 28px;
  }
  .verified-icon {
    width: 14px;
    height: 14px;
    top: -6px;
    right: -14px;
  }
}

/* Grid Layout END */
.search-minimal {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  gap: 0;
}

.search-minimal input[type="text"] {
  padding:30px 12px 16px;
  font-size: 12px;
  border-radius: 8px 0 0 8px;
  width: 300px;
  outline: none;
}

.search-minimal button {
  padding: 12px 16px;
  background-color: #00AEFF;
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}

.search-minimal i {
  font-size: 16px;
}
#toolSelect {
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #f8f8f8;
  color: #333;
  min-width: 250px;
  outline: none;
  margin-bottom: 30px;
}
.price-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #00AEFF;
  font-size: 12px;
  font-weight: 300;
  padding: 4px 10px;
  z-index: 2;
}

.simple-4x1-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.simple-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* More visible black shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.simple-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12); /* Slightly darker on hover */
}

.simple-icon {
  font-size: 32px;
  color: #00aeff;
  margin-bottom: 12px;
}

.simple-desc {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* Responsive for tablets */
@media (max-width: 1024px) {
  .simple-4x1-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .simple-4x1-cards {
    grid-template-columns: 1fr;
  }
}
.trending-ai-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 20px;
}

.trending-card {
  background: #ffffff;
  border-radius: 8px;
  text-align: center;
  padding: 60px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 220px;
}

.trending-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.category-icon {
  font-size: 44px;
  color: #00aeff;
  margin-bottom: 20px;
}

.category-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* Tablet */
@media (max-width: 1024px) {
  .trending-ai-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .trending-ai-cards {
    grid-template-columns: 1fr;
  }
}
.pagination-wrapper {
  text-align: center;
  margin: 40px 0 20px;
}

.pagination-wrapper button {
  background-color: #00aeff;
  color: white;
  padding: 10px 16px;
  border: none;
  margin: 0 6px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-wrapper button:hover {
  background-color: #008ecc;
}

.pagination-wrapper button.active {
  background-color: #008ecc;
  font-weight: 600;
  box-shadow: 0 0 0 2px rgba(0, 174, 255, 0.2);
}/* End custom CSS */