/*
Theme Name: Profityy
Theme URI: https://profityy.com
Author: Sammy
Author URI: https://fiverr.com/sameerkh123
Description: A clean, modern WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: profityy
*/

/* =========================================
   PREMIUM AGENCY DESIGN SYSTEM
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');



* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #ffffff;
    color: #333333;

    font-family: 'Helvetica', sans-serif !important;
	line-height: 1.6;
}
h1,h2,h3,h4,h5,h6,p,a,span,stong,button{
	    font-family: 'Helvetica', sans-serif !important;
}
/* =========================================
   TOP BAR (More Premium)
========================================= */

/* ===== SCKit Banner (Scoped) ===== */

.sckit-banner {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(to right, #dc2626, #b91c1c);
  padding:0;
	    line-height: 1;
  font-family: inherit;
}

/* Hover */
.sckit-banner:hover {
  background: linear-gradient(to right, #b91c1c, #991b1b);
}

/* Pattern overlay */
.sckit-banner .sckit-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIuMSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIGN4PSIzIiBjeT0iMyIgcj0iMSIvPjxjaXJjbGUgY3g9IjEzIiBjeT0iMTMiIHI9IjEiLz48L2c+PC9zdmc+");
}

/* Layout */
.sckit-banner .sckit-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

/* Icon */
.sckit-banner .sckit-icon-wrap {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sckit-banner .sckit-clock {
  position: relative;
  width: 90%;
  height: 90%;
}
.pf-header-inner {
    display: flex;
    width: 1200px;
    justify-content: space-between;
    align-items: center;
}
/* Clock parts */
.sckit-banner .sckit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
}

.sckit-banner .sckit-hand {
  position: absolute;
  left: 50%;
  width: 2px;
  background: #fff;
  border-radius: 999px;
  transform-origin: center bottom;
  margin-left: -1px;
}

.sckit-banner .sckit-hour {
  height: 35%;
  top: 17%;
}

.sckit-banner .sckit-minute {
  height: 50%;
  top: 0;
}

.sckit-banner .sckit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Text */
.sckit-banner .sckit-text {
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.sckit-banner .sckit-old {
  margin-left: 4px;
  text-decoration: line-through;
  opacity: .75;
}

.sckit-banner .sckit-new {
  margin-left: 4px;
  font-weight: 700;
}

/* Responsive (scoped) */
@media (min-width: 640px) {
  .sckit-banner .sckit-icon-wrap { width: 22px; height: 22px; }
  .sckit-banner .sckit-text { font-size: 13px; }
}

@media (min-width: 1024px) {
  .sckit-banner .sckit-icon-wrap { width: 24px; height: 24px; }
}


.pf-top-bar {
    background: #e01717;
    color: #ffffff;
    text-align: center;
    padding: 9px 16px;
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
    position: relative;
    z-index: 1000;
}

/* =========================================
   HEADER
========================================= */
.pf-header {
    background: #0c0c0c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 999;
}

.pf-logo img {
    height: 50px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.pf-header-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* =========================================
   NAV MENU (Premium)
========================================= */
.pf-nav {
    display: block;
}

.pf-menu {
    display: flex;
    gap: 42px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pf-menu li {
    margin: 0;
}

.pf-menu li a {
    color: #e8e8e8;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 0;
    transition: 180ms ease;
    position: relative;
    letter-spacing: 0.2px;
}

/* Underline animation */
.pf-menu li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #e01717;
    left: 0;
    bottom: -5px;
    transition: 180ms ease;
    border-radius: 2px;
}

.pf-menu li a:hover {
    color: #ffffff;
}

.pf-menu li a:hover::after {
    width: 100%;
}

/* =========================================
   CTA BUTTON (More Premium)
========================================= */
.pf-premium-btn {
    background: #e01717;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: 180ms ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 14px rgba(224,23,23,0.25);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.pf-premium-btn:hover {
    background: #bb1313;
    box-shadow: 0 6px 22px rgba(224,23,23,0.45);
    transform: translateY(-1px);
    color: #ffffff;
}

/* =========================================
   LOGIN ICON (More Beautiful)
========================================= */
.pf-login-icon {
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pf-icon-user {
    width: 36px;
    height: 37px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    position: relative;
    display: inline-block;
}

/* Head */
.pf-icon-user::before {
    content: "";
    width: 11px;
    height: 11px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
}

/* Body */
.pf-icon-user::after {
    content: "";
    width: 18px;
    height: 9px;
    background: #ffffff;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 12px 12px 0 0;
    position: absolute;
}

/* =========================================
   HAMBURGER
========================================= */
.pf-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 15px;
}

.pf-hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #ffffff;
    margin: 6px 0;
    border-radius: 6px;
    transition: 180ms ease;
}

/* =========================================
   MOBILE MENU
========================================= */
.pf-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #0c0c0c;
    padding: 90px 30px 30px;
    transition: 180ms ease;
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
    z-index: 1001;
    overflow-y: auto;
}

.pf-mobile-nav.active {
    right: 0;
}

.pf-mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pf-mobile-menu li {
    margin-bottom: 24px;
}

.pf-mobile-menu li a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: 180ms ease;
}

.pf-mobile-menu li a:hover {
    color: #e01717;
}

/* Mobile menu close button */
.pf-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   RESPONSIVE HEADER
========================================= */
@media (max-width: 980px) {
    .pf-header {
        padding: 18px 26px;
    }



    .pf-hamburger {
        display: block;
    }

    .pf-logo img {
        height: 52px;
    }
    
    .pf-header-actions {
        gap: 15px;
    }
    
    .pf-premium-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .pf-header {
        padding: 15px 20px;
    }
    
    .pf-logo img {
        height: 45px;
    }
    
    .pf-premium-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .pf-icon-user {
        width: 32px;
        height: 33px;
    }
}

/* =========================================
   PREMIUM FOOTER
========================================= */
.pf-footer {
    background: #121212;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid #1d1d1d;
}

.pf-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.pf-footer-copy {
    color: #d3d3d3;
    font-size: 15.5px;
    font-weight: 500;
    margin-bottom: 18px;
    letter-spacing: 0.25px;
}

.pf-footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pf-footer-links a {
    color: #4b8cff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.25s ease;
}

.pf-footer-links a:hover {
    color: #6fa4ff;
    text-shadow: 0 0 6px rgba(111,164,255,0.25);
}

/* MOBILE FOOTER */
@media (max-width: 600px) {
    .pf-footer {
        padding: 40px 16px;
    }

    .pf-footer-links {
        gap: 18px;
        flex-direction: column;
    }
    
    .pf-footer-links a {
        font-size: 14px;
    }
}

/* =========================================
   BLOG PAGE WRAPPER
========================================= */
.pf-blog-container {
    max-width: 1150px;
    margin: 60px auto 80px;
    padding: 0 20px;
}

.pf-blog-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.4px;
}

/* =========================================
   BLOG GRID
========================================= */
.pf-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 34px;
}

/* =========================================
   BLOG CARD (Premium Look)
========================================= */
.pf-blog-card {
    background: #111;
    border: 1px solid #1c1c1c;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: 200ms ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.pf-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 26px rgba(0,0,0,0.4);
    border-color: #2a2a2a;
}

/* =========================================
   IMAGE
========================================= */
.pf-blog-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

/* =========================================
   CONTENT
========================================= */
.pf-blog-content {
    padding: 20px 22px 26px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pf-blog-heading {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.35;
}

.pf-blog-excerpt {
    color: #bbbbbb;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
    flex-grow: 1;
}

/* Read more */
.pf-blog-readmore {
    color: #4b8cff;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    transition: 200ms ease;
    align-self: flex-start;
}

.pf-blog-card:hover .pf-blog-readmore {
    color: #6fa4ff;
    transform: translateX(3px);
}

/* =========================================
   NO POSTS
========================================= */
.pf-no-posts {
    color: #aaa;
    font-size: 18px;
    text-align: center;
    padding: 40px 0;
    grid-column: 1 / -1;
}

/* =========================================
   BLOG MOBILE
========================================= */
@media (max-width: 768px) {
    .pf-blog-container {
        margin: 40px auto 60px;
        padding: 0 16px;
    }
    
    .pf-blog-title {
        font-size: 34px;
        margin-bottom: 30px;
    }
    
    .pf-blog-grid {
        gap: 24px;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .pf-blog-image img {
        height: 180px;
    }
}

@media (max-width: 550px) {
    .pf-blog-title {
        font-size: 28px;
    }
    
    .pf-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pf-blog-content {
        padding: 18px 20px 22px;
    }
    
    .pf-blog-heading {
        font-size: 18px;
    }
}

/* =========================================
   LIQUID CODE BOXES
========================================= */
.lc-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 28px;
}

.lc-box {
    background: #111;
    padding: 22px 26px;
    border-radius: 14px;
    border: 1px solid #1d1d1d;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: 0.25s ease;
}

.lc-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.45);
}

.lc-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.lc-desc {
    color: #bdbdbd;
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.55;
    height: 70px;
}

/* Code Block */
.lc-code-block {
    background: #0a0a0a;
    border: 1px solid #262626;
    padding: 14px;
    border-radius: 10px;
    overflow-x: auto;
    margin-bottom: 10px;
}

.lc-code-block pre {
    margin: 0;
    color: #00e676;
    font-family: "Fira Code", monospace;
    font-size: 14px;
    white-space: pre-wrap;
    word-break: break-all;
}

/* Copy Code Button */
.lc-copy-btn {
    margin-top: 14px;
    width: 100%;
    padding: 10px 0;
    background: #1f1f1f;
    border: 1px solid #333;
    color: #e5e5e5;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s ease;
}

.lc-copy-btn:hover {
    background: #2a2a2a;
    border-color: #444;
}

/* success animation */
.lc-copy-btn.copied {
    background: #00c853;
    border-color: #00c853;
    color: #fff;
}

/* LIQUID CODE RESPONSIVE */
@media (max-width: 768px) {
    .lc-wrapper {
        margin: 40px auto;
        padding: 0 16px;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .lc-box {
        padding: 18px 20px;
    }
    
    .lc-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .lc-wrapper {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------
   HERO SECTION
------------------------------ */

.main_body_wrapper{
	padding:20px;
	border-top-left-radius: 32px;
	border-top-right-radius: 32px;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-section {
    padding: 0 20px 40px;
/*     text-align: center;
    background: linear-gradient(#fff7f1, #fef2e9); */
    border-radius: 0 0 50px 50px;
}

.hero-top-s {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-top-badges .badge {
    text-align: center;
    font-size: 14px;
    color: #333;
}

.hero-top-badges .stars {
    font-size: 18px;
    margin-top: 5px;
    color: #ffc107;
}

.hero-top-badges .rank {
    font-size: 22px;
    font-weight: bold;
    margin-top: 5px;
    color: #333;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-top: 5px;
    color: #222;
    line-height: 1.3;
}

.hero-sub-links {
    margin-top: 15px;
    margin-bottom: 35px;
}

.hero-sub-links a {
    margin: 0 10px;
    color: #222;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease;
}

.hero-sub-links a:hover {
    color: #e01717;
}

/* -----------------------------
   SEARCH BAR
------------------------------ */
.search-container {
    position: relative;
    width: 640px;
    max-width: 90%;
    margin: 0 auto;
}

#lc-search {
    width: 100%;
    padding: 14px 55px 14px 18px;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    font-size: 16px;
    background: #fff;
    transition: 0.2s ease;
}

#lc-search:focus {
    outline: none;
    border-color: #e01717;
    box-shadow: 0 0 0 3px rgba(224,23,23,0.1);
}

.shortcut {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    padding: 4px 7px;
    border-radius: 6px;
    background: #f2f2f2;
    color: #555;
    border: 1px solid #e0e0e0;
}

/* Autocomplete */
.autocomplete-box {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    max-height: 240px;
    overflow-y: auto;
    z-index: 20;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.autocomplete-box.show {
    display: block;
}

.ac-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    transition: 0.2s ease;
}

.ac-item:hover {
    background: #fafafa;
}

.ac-item:last-child {
    border-bottom: none;
}

/* -----------------------------
   CATEGORY FILTER BUTTONS
------------------------------ */
.filters {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.filter-btn {
    padding: 7px 14px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    background: #fff;
    cursor: pointer;
    transition: 0.2s;
    color: #333;
}

.filter-btn.active {
    background: #222;
    color: #fff;
    border-color: #222;
}

.filter-btn:hover {
    background: #eee;
}

.filter-btn.active:hover {
    background: #333;
}

/* HERO RESPONSIVE */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 16px 30px;
        border-radius: 0 0 30px 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-top-badges {
        gap: 30px;
    }
    
    .hero-sub-links {
        margin-bottom: 25px;
    }
    
    .hero-sub-links a {
        display: inline-block;
        margin: 5px 10px;
    }
    #lc-search {
    width: auto;
    }
    .lc-copy-btn{
        padding: 9px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-top-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* =============================
   PROFITYY STEPS SECTION
============================= */
.profityy-steps {
    background: #f5ffe9;
    padding: 80px 20px;
    border-radius: 0 0 40px 40px;
}

.steps-container {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
}

.steps-title {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
}

.steps-subtitle {
    font-size: 17px;
    color: #444;
    max-width: 720px;
    margin: 0 auto 50px;
    line-height: 1.55;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 26px;
    margin-top: 30px;
}

.step-box {
    background: #fff;
    border: 1px solid #e6e6e6;
    padding: 30px 28px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: 0.2s ease;
}

.step-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
}

.step-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}

.step1 { background: #d7ebff; color: #0059c9; }
.step2 { background: #ffe9c3; color: #c27900; }
.step3 { background: #d8ffd8; color: #118411; }

.step-heading {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.steps-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pf-btn-dark,
.pf-btn-light {
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #000;
    transition: 0.2s ease;
    display: inline-block;
}

.pf-btn-dark {
    background: #000;
    color: #fff;
}

.pf-btn-dark:hover {
    background: #333;
    border-color: #333;
}

.pf-btn-light {
    background: #fff;
    color: #000;
}

.pf-btn-light:hover {
    background: #f5f5f5;
}

/* STEPS RESPONSIVE */
@media (max-width: 768px) {
    .profityy-steps {
        padding: 60px 16px;
        border-radius: 0 0 30px 30px;
    }
    
    .steps-title {
        font-size: 32px;
    }
    
    .steps-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .steps-grid {
        gap: 20px;
    }
    
    .step-box {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .steps-title {
        font-size: 28px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pf-btn-dark,
    .pf-btn-light {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ============================
   WHY CHOOSE PROFITYY SECTION
============================= */
.pf-why {
    background: #ffffff;
    padding: 90px 20px;
}

.pf-why-container {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
}

.pf-why-title {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 14px;
}

.pf-why-sub {
    font-size: 18px;
    color: #555;
    margin-bottom: 55px;
    line-height: 1.6;
}

.pf-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.second-row {
    margin-top: 28px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.pf-why-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 34px 22px;
    border-radius: 14px;
    transition: 0.25s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.pf-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.pf-why-icon {
    font-size: 40px;
    margin-bottom: 14px;
    display: block;
}

.pf-why-heading {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.pf-why-text {
    font-size: 16px;
    color: #555;
    line-height: 1.55;
}

/* WHY CHOOSE RESPONSIVE */
@media (max-width: 768px) {
    .pf-why {
        padding: 60px 16px;
    }
    
    .pf-why-title {
        font-size: 32px;
    }
    
    .pf-why-sub {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .pf-why-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .pf-why-card {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .pf-why-title {
        font-size: 28px;
    }
    
    .pf-why-grid {
        grid-template-columns: 1fr;
    }
    
    .second-row {
        max-width: 100%;
    }
}

/* =========================================
   FAQ SECTION
========================================= */
.pf-faq {
    background: #f9f9f9;
    padding: 80px 20px;
}

.pf-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.pf-faq-title {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 50px;
}

.pf-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
}

.pf-faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    transition: 0.2s ease;
}

.pf-faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.pf-faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.4;
}

.pf-faq-answer {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.pf-faq-cta {
    text-align: center;
}

/* =========================================
   RESPONSIVE FAQ
========================================= */
@media (max-width: 768px) {
    .pf-faq {
        padding: 60px 16px;
    }
    
    .pf-faq-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .pf-faq-item {
        padding: 22px 24px;
    }
    
    .pf-faq-question {
        font-size: 18px;
    }
    
    .pf-faq-answer {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .pf-faq-title {
        font-size: 28px;
    }
    
    .pf-faq-grid {
        gap: 18px;
        margin-bottom: 40px;
    }
    
    .pf-faq-item {
        padding: 18px 20px;
    }
}

/* =========================================
   LIVE PREVIEW FIXES
========================================= */
.lc-live-preview {
    margin-bottom: 18px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.lc-live-preview > * {
    max-width: 100%;
}

/* =========================================
   ACCESSIBILITY & UTILITIES
========================================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid #e01717;
    outline-offset: 2px;
}

/* Loading states */
.pf-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Back to top button */
.pf-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #e01717;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
    transition: 180ms ease;
    z-index: 99;
    border: none;
    cursor: pointer;
}

.pf-back-to-top:hover {
    background: #e01717;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .pf-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* =========================================
   LIQUID CODE IMAGE PREVIEW STYLES
========================================= */
.lc-image-preview {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #1d1d1d;
    position: relative;
}

.lc-preview-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.lc-box:hover .lc-preview-image {
    transform: scale(1.02);
}

/* No Image Placeholder */
.lc-no-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.lc-placeholder {
    text-align: center;
    color: #666;
}

.lc-placeholder-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
    opacity: 0.7;
}

.lc-placeholder-text {
    font-size: 14px;
    font-weight: 500;
    color: #888;
}

/* Code Toggle Section */
.lc-code-section {
    display: none;
    margin: 20px 0;
}

.lc-code-toggle {
    text-align: center;
    margin-bottom: 15px;
}

.lc-toggle-btn {
    background: transparent;
    border: 1px solid #333;
    color: #bdbdbd;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lc-toggle-btn:hover {
    background: #1f1f1f;
    border-color: #444;
    color: #fff;
}

.lc-toggle-icon {
    font-size: 16px;
}

.lc-code-block {
    background: #0a0a0a;
    border: 1px solid #262626;
    padding: 14px;
    border-radius: 10px;
    overflow-x: auto;
    margin-top: 10px;
    animation: fadeIn 0.3s ease;
}

.lc-code-block pre {
    margin: 0;
    color: #00e676;
    font-family: "Fira Code", monospace;
    font-size: 14px;
    white-space: pre-wrap;
    word-break: break-all;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Copy Button */
.lc-copy-btn {
    margin-top: 14px;
    width: 100%;
    padding: 12px 0;
    background: #1f1f1f;
    border: 1px solid #333;
    color: #e5e5e5;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lc-copy-btn:hover {
    background: #2a2a2a;
    border-color: #444;
}




.lc-copy-btn.copied {
    background: #00c853;
    border-color: #00c853;
    color: #fff;
}

.lc-copy-btn.copied::before {
    content: "✅";
}

/* Responsive Image Preview */
@media (max-width: 768px) {
    .lc-preview-image {
        height: 180px;
    }
    
    .lc-no-image {
        height: 180px;
    }
    
    .lc-placeholder-icon {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .lc-preview-image {
        height: 150px;
    }
    
    .lc-no-image {
        height: 150px;
    }
    
    .lc-toggle-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}
/* -----------------------------
   UPDATED HERO SECTION BADGES
------------------------------ */
.hero-top-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge {
    text-align: center;
    padding: 20px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    min-width: 160px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.badge-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.stars {
    font-size: 18px;
    color: #ffb400;
    letter-spacing: 2px;
}

.rank {
    font-size: 28px;
    font-weight: 800;
    color: #e01717;
    background: linear-gradient(135deg, #e01717, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 2px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 10px 0 25px 0;
    color: #222;
    line-height: 1.3;
    text-align: center;
	padding-bottom:40px
}

.hero-sub-links {
    margin-top: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.hero-sub-links a {
    margin: 0 12px;
    color: #222;
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: inline-block;
}

.hero-sub-links a:hover {
    color: var(--pf-red);
}
.hero-how-it-works img,
.pf-btn-primary img{
	
    width: 18px;
    margin-bottom: -4px;

}
.hero-sub-links a {

    padding: 4px 8px;
    border-radius: 8px;
 
}

.hero-sub-links a:hover {
    background: #e9ecef;
    color: var(--pf-red);
}

/* -----------------------------
   RESPONSIVE HERO BADGES
------------------------------ */
@media (max-width: 768px) {
    .hero-top-badges {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .badge {
        padding: 18px 24px;
        min-width: 140px;
    }
    
    .badge-title {
        font-size: 14px;
    }
    
    .stars {
        font-size: 16px;
    }
    
    .rank {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 32px;
        margin: 5px 0 20px 0;
    }
    
    .hero-sub-links {
        margin-bottom: 25px;
    }
    
    .hero-sub-links a {
        margin: 5px 8px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-top-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .badge {
        padding: 16px 20px;
        min-width: 160px;
        width: 100%;
        max-width: 200px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.4;
    }
    
    .hero-sub-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-sub-links a {
        margin: 0;
    }
    
    .hero-sub-links a:first-child {
        align-self: center;
    }
}
/* =========================================
   POLARIS BUTTON – 1:1 STYLE OVERRIDE
========================================= */

/* Base Polaris Button */
.Polaris-Button {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    height: 40px;
    padding: 0 16px;

    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;

    cursor: pointer;
    user-select: none;
    white-space: nowrap;

    transition:
        background-color 120ms ease,
        box-shadow 120ms ease,
        transform 120ms ease;
}

/* FULL WIDTH */
.Polaris-Button--fullWidth {
    width: 100%;
}

/* PRIMARY (BLACK) */
.Polaris-Button--variantPrimary {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 0 1px 0 rgba(0,0,0,0.12);
}

.Polaris-Button--variantPrimary:hover {
    background-color: #111111;
}

.Polaris-Button--variantPrimary:active {
    background-color: #000000;
    box-shadow: inset 0 1px 0 rgba(0,0,0,0.2);
}

/* SECONDARY (WHITE) */
.Polaris-Button--variantSecondary {
    background-color: #ffffff;
    color: #202223;
    border: 1px solid #c9cccf;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.Polaris-Button--variantSecondary:hover {
    background-color: #f6f6f7;
}

.Polaris-Button--variantSecondary:active {
    background-color: #f1f2f3;
    box-shadow: inset 0 1px 0 rgba(0,0,0,0.08);
}

/* ICON */
.Polaris-Button__Icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* TEXT */
.Polaris-Button .Polaris-Text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}
/* =========================================
   FAQ → WHY CHOOSE SCKIT STYLE MATCH
========================================= */

.pf-faq {
    background: #ffffff !important;
    padding: 80px 20px;
}

.pf-faq-container {
    max-width: 1150px;
    margin: 0 auto;
}

/* Title same scale */
.pf-faq-title {
    font-size: 32px;
    font-weight: 700;
    color: #1c1c1c;
    text-align: center;
    margin-bottom: 50px;
}

/* Grid → vertical cards like Why Choose */
.pf-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* FAQ Card = Why Choose Card */
.pf-faq-item {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 26px 28px;
    box-shadow: none;
    transition: none;
}

/* Question */
.pf-faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
}

/* Answer */
.pf-faq-answer {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

/* Remove hover animation (Why choose has none) */
.pf-faq-item:hover {
    transform: none;
    box-shadow: none;
}

/* Tablet */
@media (max-width: 900px) {
    .pf-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .pf-faq {
        padding: 60px 16px;
    }

    .pf-faq-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .pf-faq-item {
        padding: 22px 24px;
    }

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

    .pf-faq-answer {
        font-size: 14px;
    }
}
section.pf-faq {
    border-radius: 20px;
    border: 1px solid #ddd;
}
.pf-why-cta {
    display: none !important;
}
/* ==============================
   GLOBAL SECTION TYPOGRAPHY FIX
============================== */

/* SECTION HEADINGS */
.pf-why-title,
.pf-faq-title,
.pf-steps-title {
    font-size: 30px !important;
    line-height: 1.25;
    font-weight: 700;
    color: #303030 !important;
}

/* SECTION SUB HEADINGS */
.pf-why-subtitle,
.pf-steps-subtitle {
    font-size: 14px !important;
    line-height: 1.6;
    font-weight: 400;
    color: #616161 !important;
}

/* Mobile – keep SAME size (reference behavior) */
@media (max-width: 768px) {
    .pf-why-title,
    .pf-faq-title,
    .pf-steps-title {
        font-size: 30px !important;
    }

    .pf-why-subtitle,
    .pf-steps-subtitle {
        font-size: 14px !important;
    }
}
/* =====================================
   STEPS SECTION – TYPOGRAPHY MATCH
===================================== */

/* STEP BADGE (Step 1, Step 2, Step 3) */
.pf-step-badge {
    font-size: 12px !important;
    line-height: 16px !important;
    font-weight: 450 !important;
    color: #003a5a !important;
}

/* STEP HEADING */
.pf-step-card h3 {
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 650 !important;
    color: #303030 !important;
}

/* STEP SUB HEADING / DESCRIPTION */
.pf-step-card p {
    font-size: 13px !important;
    line-height: 20px !important;
    font-weight: 450 !important;
    color: #616161 !important;
}

/* Mobile – keep SAME sizes (reference behavior) */
@media (max-width: 768px) {
    .pf-step-badge {
        font-size: 12px !important;
        line-height: 16px !important;
    }

    .pf-step-card h3 {
        font-size: 14px !important;
        line-height: 20px !important;
    }

    .pf-step-card p {
        font-size: 13px !important;
        line-height: 20px !important;
    }
}
/* =====================================
   WHY CHOOSE – TYPOGRAPHY MATCH
===================================== */

/* Card Heading */
.pf-why-card h3 {
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 650 !important;
    color: #303030 !important;
}

/* Card Description */
.pf-why-card p {
    font-size: 13px !important;
    line-height: 20px !important;
    font-weight: 450 !important;
    color: #616161 !important;
}

/* Icon – keep clean & subtle */
.pf-why-icon {
    font-size: 20px;
    line-height: 1;
    color: #303030;
    opacity: 0.85;
    margin-bottom: 14px;
}

/* Mobile – same typography (reference behavior) */
@media (max-width: 768px) {
    .pf-why-card h3 {
        font-size: 14px !important;
        line-height: 20px !important;
    }

    .pf-why-card p {
        font-size: 13px !important;
        line-height: 20px !important;
    }
}
/* =====================================
   FAQ – TYPOGRAPHY MATCH (FINAL)
===================================== */

/* Question */
.pf-faq-question {
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 650 !important;
    color: #303030 !important;
    margin-bottom: 6px;
}

/* Answer */
.pf-faq-answer {
    font-size: 13px !important;
    line-height: 20px !important;
    font-weight: 450 !important;
    color: #616161 !important;
}

/* Mobile – keep same as desktop */
@media (max-width: 768px) {
    .pf-faq-question {
        font-size: 14px !important;
        line-height: 20px !important;
    }

    .pf-faq-answer {
        font-size: 13px !important;
        line-height: 20px !important;
    }
}
.pf-btn-primary {
    padding: 6px !important;
	font-weight: 600 !important;
	font-size: 13px !important;
	line-height: 1.3em !important;
}
/* =====================================
   CARD TITLE & SUBTITLE – TYPOGRAPHY MATCH
===================================== */

/* Card Title */
.lc-title {
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 650 !important;
    color: #303030 !important;
    margin-bottom: 6px;
}

/* Card Subtitle / Description */
.lc-desc {
    font-size: 13px !important;
    line-height: 20px !important;
    font-weight: 450 !important;
    color: #616161 !important;
}

/* Mobile – keep identical */
@media (max-width: 768px) {
    .lc-title {
        font-size: 14px !important;
        line-height: 20px !important;
    }

    .lc-desc {
        font-size: 13px !important;
        line-height: 20px !important;
    }
}
/* ===============================
   BLACK BUTTON – NORMAL
=============================== */
.lc-copy-btn {
    background-color: rgb(48, 48, 48);
    background-image: linear-gradient(
        180deg,
        rgba(48, 48, 48, 0) 63.53%,
        rgba(255, 255, 255, 0.15) 100%
    );

    color: #ffffff;
    border: 1px solid rgb(48, 48, 48);

    box-shadow:
        0rem -0.0625rem 0rem 0.0625rem rgba(0, 0, 0, 0.8) inset,
        0rem 0rem 0rem 0.0625rem rgba(48, 48, 48, 1) inset,
        0rem 0.03125rem 0rem 0.09375rem rgba(255, 255, 255, 0.25) inset;
}

/* ===============================
   BLACK BUTTON – HOVER
=============================== */
.lc-copy-btn:hover {
    background:
        linear-gradient(
            180deg,
            rgba(48, 48, 48, 0) 63.53%,
            rgba(255, 255, 255, 0.15) 100%
        ),
        rgba(26, 26, 26, 1);

    color: #ffffff;

    box-shadow:
        0rem -0.0625rem 0rem 0.0625rem rgba(0, 0, 0, 0.8) inset,
        0rem 0rem 0rem 0.0625rem rgba(48, 48, 48, 1) inset,
        0rem 0.03125rem 0rem 0.09375rem rgba(255, 255, 255, 0.25) inset;
}