/*
Theme Name: My Custom Theme
Theme URI: https://yourwebsite.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: Wisernotify Social Proof Theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
Tags: custom-background, responsive
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #f9fafb;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2563eb;
}

/* Navigation Styles */
.site-header {
    border-bottom: 1px solid #e5e7eb;
}

.site-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.site-title a {
    text-decoration: none;
    color: #1f2937;
}

.site-description {
    margin-top: 0;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Menu Styles */
.menu {
    /* border-top: 1px solid #e5e7eb; */
}

.menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.menu ul li a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu ul li a:hover {
    color: #1f2937;
}

/* Layout */
.site-content {
    /* max-width: 1280px; */
    margin: 0 auto;
    padding: 2rem;
}

article {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.sidebar {
    margin-top: 2rem;
}

.widgettitle {
    border-top: 2px solid #3b82f6;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.5rem 0;
    font-size: 1.25rem;
}

.widget {
    margin-bottom: 3rem;
}

label {
    display: block;
}

.commentlist {
    list-style: none;
    padding-left: 0;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes starAnimate {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Animation Classes */
.animate-on-load {
    opacity: 0;
    animation-fill-mode: forwards;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

.slide-down {
    animation: slideDown 0.3s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

.star-animate {
    animation: starAnimate 2s ease-in-out infinite;
}

.icon-bounce {
    animation: bounce 2s ease-in-out infinite;
}

.checkmark-pop {
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Delay Classes */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* Card Styles */
.float-card-1, .float-card-2, .float-card-3, .float-card-4 {
    transition: transform 0.3s ease;
}

.notification-animate {
    animation: slideInUp 0.6s ease-out 0.8s forwards;
    opacity: 0;
}

.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-card-hover {
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card-hover:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

/* Button Styles */
.btn-primary {
    font-weight: 600;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Hamburger Menu */
.hamburger-line {
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* Browser Mockup */
.browser-mockup {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.browser-mockup::before {
    content: '';
    display: block;
    height: 0px;
    background: #374151;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Mobile Cards Grid */
@media (max-width: 1024px) {
    .mobile-cards-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .float-card-1, .float-card-2, .float-card-3, .float-card-4 {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        bottom: auto !important;
    }
}

/* Responsive Typography */
@media (max-width: 640px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .site-content {
        padding: 1rem;
    }
    .menu ul {
        flex-wrap: wrap;
        flex-direction: column;
    }
    #mobile-menu {
        position: absolute;
        z-index: 1;
        background: #fff;
        width: 100%;
        left: 0px;
        padding: 8px 16px;
    }
}

/* Utility Classes for Tailwind */
.bg-gray-50 { background-color: #f9fafb; }
.bg-white { background-color: #ffffff; }
.text-gray-600 { color: #4b5563; }
.text-gray-900 { color: #1f2937; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.rounded-full { border-radius: 9999px; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition-property: color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.hover\:scale-110:hover { transform: scale(1.1); }

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, #f97316, #3b82f6);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Blog Post Styles */
.article-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #374151;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1f2937;
}

.article-content h1 {
    font-size: 2.25rem;
}

.article-content h2 {
    font-size: 1.875rem;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 0.5rem;
}

.article-content h3 {
    font-size: 1.5rem;
}

/* .article-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
} */

.article-content ul,
.article-content ol {
    margin-bottom: 1.25rem;
    margin-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content a {
    color: #3b82f6;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.article-content a:hover {
    color: #2563eb;
    text-decoration: none;
}

.article-content blockquote {
    border-left: 4px solid #f97316;
    padding-left: 1.5rem;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1.25rem;
    font-style: italic;
    color: #6b7280;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
}

.article-content code {
    background-color: #f3f4f6;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875em;
    color: #d97706;
}

.article-content pre {
    background-color: #1f2937;
    color: #f3f4f6;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1.25rem;
}

.article-content pre code {
    background: none;
    padding: 0;
    color: #f3f4f6;
}


article h3 {
    font-weight: 500;
    font-size: 20px;
}
article h3 + h4 {
    margin-top: -5px;
}
article h4 + p, article h3 + p {
    margin-top: 8px;
}
article :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)) {
    list-style-type: disc;
    margin-bottom: 1.25em;
    margin-top: 1.25em;
    padding-inline-start: 1.625em;
    font-size: 16px;
}
article :is(ul, ol) {
    margin:0px;
}
article p + p {
    margin-top: 8px !important
}
article p+h3 {
    margin: 1.5em 0 1em !important;
}
article h2 + p {
    margin: 0 0 10px;
}
article h2{
    font-size: 28px;
    font-weight: 700;
}
article p {
    line-height: 22px;
    font-size: 16px;
}

/* Blog Card Styles */
.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-5px);
}

.blog-card .img-zoom {
    overflow: hidden;
    display: flex;
}

.blog-card .img-zoom img {
    transition: transform 0.3s ease;
}

.blog-card:hover .img-zoom img {
    transform: scale(1.05);
}

/* Table of Contents */
.toc-link {
    display: block;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: #4b5563;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.toc-link:hover {
    background-color: #f3f4f6;
}

.toc-link.active {
    background-color: #eef2ff;
    color: #3b82f6;
    font-weight: 600;
}

/* Bookmark Pulse Animation */
@keyframes bookmarkPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
}

.bookmark-pulse {
    animation: bookmarkPulse 2s infinite;
}

/* Product Float Animation */
@keyframes productFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.product-float {
    animation: productFloat 3s ease-in-out infinite;
}

.product-float-delay-1 { animation-delay: 0.2s; }
.product-float-delay-2 { animation-delay: 0.4s; }
.product-float-delay-3 { animation-delay: 0.6s; }
.product-float-delay-4 { animation-delay: 0.8s; }

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease-out forwards;
    opacity: 0;
}

/* Blog Prose Styles */
.prose {
    max-width: 100%;
}

.prose ul {
    list-style-position: inside;
}

.prose ol {
    list-style-position: inside;
}

/* Newsletter Input */
.newsletter-input {
    padding: 0.75rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Button Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-shine:hover::before {
    width: 300px;
    height: 300px;
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 6rem;
}

/* Pros & Cons Styling */
.pros-cons-item {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.pros-cons-item:nth-child(1) { animation-delay: 0.1s; }
.pros-cons-item:nth-child(2) { animation-delay: 0.2s; }
.pros-cons-item:nth-child(3) { animation-delay: 0.3s; }
.pros-cons-item:nth-child(4) { animation-delay: 0.4s; }

/* Line Clamp for Text */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Print Styles */
@media print {
    .site-header,
    .hamburger-menu,
    .btn-primary,
    .progress-bar,
    aside,
    .newsletter-input {
        display: none;
    }
}


/* Footer Styles */
.site-footer {
    background-color: #f8f9fa;
    margin-top: 4rem;
    clear: both;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}

/* Newsletter Section */
.footer-newsletter {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-content h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.newsletter-btn {
    background: #fbbf24;
    color: #111827;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background: #f59e0b;
}

.newsletter-consent {
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.newsletter-consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    line-height: 1.4;
}

.newsletter-consent input[type="checkbox"] {
    margin-top: 0.2rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fbbf24;
    color: #111827;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    color: #111827;
}

/* Footer Navigation */
.footer-navigation {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer-column a:hover {
    color: #111827;
}

/* Footer Bottom */
.footer-bottom {
    background: #f3f4f6;
    border-top: 1px solid #e5e7eb;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    margin: 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #111827;
}

/* Footer Mobile Responsive */
@media screen and (max-width: 768px) {
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .footer-newsletter {
        padding: 1.5rem;
        order: 2;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .footer-navigation {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        order: 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}




.main-menu{
    list-style: none;
}
  /* .hero-noti-1 {
    animation-name: animation-5;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: all 0.4s ease-in-out;
  } */

  .hero-noti-1, .hero-noti-3  {
    animation-name: animation-2;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }

   .hero-noti-2,  .hero-noti-4 {
    animation-name: animation-3;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }

@media (min-width: 1024px) {
    .hero-noti-1.lg\:w-64 {
      width: 25.3rem;
    }
     .hero-noti-2.lg\:w-72 {
      width: 25.3rem;
    }
    .hero-noti-3{
      width: 25.3rem;
      top: 15rem;
    }
    .hero-noti-4 {
        top: 24rem;
        width: 23.3rem;
    }

}
.hero-noti-4 .min-w-0{
    padding-left: 6px;
}
.hero-noti-4 .ml-2{
    padding-left: 6px;
}
.hero-noti-4 .gap-3{
    padding-left: 10px;
}
.hero-noti-4 .rounded-full{
    background-color: #3eac47;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 16px auto;
    border-radius: 50% !important;
    height: 10px;
    margin: 0;
    margin: 0;
    padding: 0;
    position: relative;
    width: 10px;
}

.hero-noti-4 .rounded-full::after{
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: notidot-scale;
    background-color: inherit;
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 50%;
    opacity: .7;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
}

@keyframes notidot-scale {
  0% {
    opacity: .7;
    transform: translate(-50%,-50%) scale(1);
  }
  50% {
    opacity: .2;
    transform: translate(-50%,-50%) scale(3.7);
  }
  80% {
    opacity: .2;
    transform: translate(-50%,-50%) scale(3.7);
  }
  100% {
    opacity: 0;
    transform: translate(-50%,-50%) scale(3.7);
  }
}

  @keyframes animation-5 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
    }
  }
  @keyframes animation-2 {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(50px);
    }
  }

    @keyframes animation-3 {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50px);
    }
  }
  
  
  /* @keyframes animation-3 {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(60px);
    }
  } */

    @media (width >= 64rem) {
        .lg\:grid-cols-12 {
            grid-template-columns: repeat(12, minmax(0, 1fr));
        }
        .lg\:col-span-3 {
             grid-column: span 3 / span 3;
        }
        .lg\:col-span-7 {
             grid-column: span 7 / span 7;
        }
    }


@media (max-width: 1699px) {
       
    .max-w-7xl {
        max-width: 90rem;
    }

}




