/*
Theme Name: MarketPro
Theme URI: https://example.com/marketpro
Author: Your Name
Author URI: https://example.com
Description: A professional, responsive WordPress theme designed for marketing blogs with sidebar and custom menu support
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: marketpro
Tags: blog, two-columns, right-sidebar, custom-menu, responsive, marketing
*/

/* === CSS Variables - Marketing Color Scheme === */
:root {
  --primary-color: #0066FF;
  --primary-dark: #0052CC;
  --secondary-color: #FF6B35;
  --secondary-dark: #E5522E;
  --accent-color: #00D9FF;
  --success-color: #10B981;
  --text-dark: #1A202C;
  --text-medium: #4A5568;
  --text-light: #718096;
  --bg-light: #F7FAFC;
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
  --gradient-secondary: linear-gradient(135deg, #FF6B35 0%, #FFB340 100%);
}

/* === Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === Header === */
.site-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--primary-color);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
}

.site-title a {
  color: var(--primary-color);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.site-title a:hover {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-description {
  font-size: 14px;
  color: var(--text-medium);
  margin: 5px 0 0 0;
  font-weight: 500;
}

/* === Navigation === */
.main-navigation {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: var(--gradient-primary);
  color: var(--bg-white);
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.primary-menu li {
  position: relative;
}

.primary-menu a {
  color: var(--text-dark);
  font-weight: 600;
  padding: 8px 0;
  display: block;
  transition: color 0.3s ease;
  position: relative;
}

.primary-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item a::after {
  width: 100%;
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
  color: var(--primary-color);
}

/* Submenu */
.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  list-style: none;
  padding: 15px 0;
  margin: 10px 0 0 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.primary-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.primary-menu .sub-menu a {
  padding: 12px 24px;
}

.primary-menu .sub-menu a::after {
  display: none;
}

/* === Main Content === */
.site-content {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
}

/* === Posts === */
.post {
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  margin-bottom: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.post:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.post-thumbnail {
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
}

.post-thumbnail::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.post:hover .post-thumbnail::after {
  opacity: 1;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post:hover .post-thumbnail img {
  transform: scale(1.08);
}

.post-content-wrapper {
  padding: 40px;
}

.entry-header {
  margin-bottom: 25px;
}

.entry-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.entry-title a {
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.entry-title a:hover {
  color: var(--primary-color);
}

.entry-meta {
  display: flex;
  gap: 25px;
  font-size: 14px;
  color: var(--text-light);
  flex-wrap: wrap;
  font-weight: 500;
}

.entry-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.entry-meta a {
  color: var(--text-medium);
  font-weight: 600;
}

.entry-meta a:hover {
  color: var(--primary-color);
}

.entry-content {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 17px;
}

.entry-content p {
  margin-bottom: 18px;
}

.more-link {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--bg-white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.more-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--bg-white);
}

.entry-footer {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid var(--border-color);
  font-size: 14px;
  color: var(--text-medium);
}

.entry-footer span {
  margin-right: 20px;
}

.entry-footer a {
  color: var(--primary-color);
  font-weight: 600;
}

/* === Sidebar === */
.sidebar {
  position: sticky;
  top: 110px;
  height: fit-content;
}

.widget {
  background: var(--bg-white);
  padding: 30px;
  margin-bottom: 35px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.widget:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.widget-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary-color);
  color: var(--text-dark);
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-secondary);
}

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

.widget ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.widget ul li:last-child {
  border-bottom: none;
}

.widget ul li a {
  color: var(--text-medium);
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.widget ul li a::before {
  content: '→';
  margin-right: 10px;
  color: var(--primary-color);
  font-weight: 700;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.widget ul li a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.widget ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Search Widget */
.widget_search form {
  display: flex;
  gap: 10px;
}

.widget_search input[type="search"] {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.widget_search input[type="search"]:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.widget_search button {
  background: var(--gradient-primary);
  color: var(--bg-white);
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.widget_search button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* === Pagination === */
.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  padding: 12px 20px;
  background: var(--bg-white);
  border-radius: 8px;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  font-weight: 600;
  border: 2px solid var(--border-color);
}

.pagination a:hover {
  background: var(--gradient-primary);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.pagination .current {
  background: var(--gradient-primary);
  color: var(--bg-white);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

/* === Footer === */
.site-footer {
  background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
  color: #E2E8F0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
}

.footer-widgets {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 30px 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.footer-widget {
  color: #E2E8F0;
}

.footer-widget-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--bg-white);
  position: relative;
  padding-bottom: 15px;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-secondary);
  border-radius: 3px;
}

.footer-widget p {
  line-height: 1.8;
  color: #CBD5E0;
  margin-bottom: 15px;
}

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

.footer-widget ul li {
  margin-bottom: 12px;
}

.footer-widget ul li a {
  color: #CBD5E0;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}

.footer-widget ul li a::before {
  content: '▸';
  margin-right: 8px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
  color: var(--bg-white);
  padding-left: 8px;
}

.footer-widget ul li a:hover::before {
  color: var(--accent-color);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--bg-white);
  font-size: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.footer-social a:hover {
  background: var(--gradient-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-color);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #CBD5E0;
  font-size: 15px;
}

.footer-bottom a {
  color: var(--accent-color);
  font-weight: 600;
}

.footer-bottom a:hover {
  color: var(--bg-white);
}

/* === Single Post === */
.single .post {
  margin-bottom: 50px;
}

.single .entry-content h2,
.single .entry-content h3,
.single .entry-content h4 {
  margin-top: 35px;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 800;
}

.single .entry-content h2 {
  font-size: 28px;
}

.single .entry-content h3 {
  font-size: 24px;
}

.single .entry-content ul,
.single .entry-content ol {
  margin-left: 25px;
  margin-bottom: 20px;
}

/* === Comments === */
.comments-area {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.comments-title {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--text-dark);
  font-weight: 800;
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment {
  padding: 25px 0;
  border-bottom: 2px solid var(--border-color);
}

.comment-author {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 16px;
}

.comment-content {
  color: var(--text-medium);
  line-height: 1.8;
}

/* === Page Header === */
.page-header {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  border-left: 6px solid var(--primary-color);
}

.page-title {
  margin: 0;
  color: var(--text-dark);
  font-size: 36px;
  font-weight: 800;
}

/* === Responsive === */
@media (max-width: 968px) {
  .site-content {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .header-container {
    padding: 0 20px;
  }
  
  .main-navigation {
    width: 100%;
  }
  
  .primary-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-xl);
    padding: 25px;
    gap: 0;
  }
  
  .primary-menu.active {
    display: flex;
  }
  
  .primary-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
  }
  
  .primary-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding-left: 25px;
    margin-top: 10px;
  }
  
  .header-container {
    flex-wrap: wrap;
  }
  
  .entry-title {
    font-size: 26px;
  }
  
  .post-thumbnail {
    height: 300px;
  }
  
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 20px 30px;
  }
  
  .site-content {
    padding: 0 20px;
    margin: 30px auto;
  }
}

@media (max-width: 480px) {
  .post-content-wrapper {
    padding: 25px;
  }
  
  .entry-title {
    font-size: 22px;
  }
  
  .widget {
    padding: 25px;
  }
  
  .site-title {
    font-size: 24px;
  }
}

/* Custom comments form */

/* Bizsutra custom comment form styling */
.bizsutra-comment-form {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 1.5rem;
  font-family: "Hind Siliguri", "Noto Sans Bengali", sans-serif;
}

.bizsutra-comment-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  color: #111;
}

.bizsutra-comment-form input,
.bizsutra-comment-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.6rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.bizsutra-comment-form input:focus,
.bizsutra-comment-form textarea:focus {
  border-color: #0b74de;
  outline: none;
  box-shadow: 0 0 0 2px rgba(11,116,222,0.1);
}

.bizsutra-comment-submit {
  background: #0b74de;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease;
}
.bizsutra-comment-submit:hover {
  background: #094e9c;
}

/* Custom */

.blk-edf6f9-p-1em {
	padding: 1em;
	background: url('https://bizsutra.in/wp-content/uploads/2025/10/Screenshot_80-removebg-preview-1.png');
	background-repeat: no-repeat;
    background-position: 15px 13px; /* aligns to top-left corner */
    background-size: 32px 32px;    /* optional: resize icon */
    border: 1px solid #ccc;
	background-color: #edf6f9;
}

.le-50 {
	text-indent: 2.4em !important;
}
