body {
  margin-top: -32px;
  padding: 0;
    font-family: poppins, sans-serif !important;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(to right, #6739b7, #d1c4e9);
  z-index: 9999;
  transition: width 0.1s ease;
}

.article-hero {
  background: linear-gradient(
    360deg,
    #fefcff 0%,
    #b99ee4 35%,
    #ae90de 65%,
    #6739b7 100%
  );
  padding: 80px 40px;
  color: white;
}

.image-area {
  flex: 1;
  background-image: url("");
}
.graphic-box {
  background-color: rgba(255, 255, 255, 0.1);
  background-image: url("./stocky\ vs\ shodofy-01.webp");
  background-size: cover;       /* Makes the image cover the full box */
  background-position: center;  /* Centers the image */
  background-repeat: no-repeat; /* Prevents image tiling */
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}


.content-area {
  flex: 1.5;
}

.category {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.hero-title {
  font-family: "Caveat", cursive;
  font-size: 3.2rem;
  font-weight: 700;
}
.content-area h1 {
  font-family: "Caveat", cursive;
  font-size: 3.8rem;
  line-height: 1.1;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.author-info {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-size: 1rem;
  font-weight: 500;
  color: #5f468c;
}

.time-details {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.read-time {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #754fbd;
}

.social-share a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  color: #6739B7;
  margin-right: 10px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background-color 0.3s;
}

.social-share a:hover {
  text-decoration: none;
  background-color: #f0f0f0;
}
.sticky-social {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
  transition: opacity 0.3s, visibility 0.3s;
}


.sticky-social.show {
  display: flex;
}
.sticky-social a {
  display: flex;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: white;
  color: #6739B7;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.sticky-social a:hover {
  text-decoration: none;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.article-content {
  background-color: #f9f9f9;
  padding: 60px 40px;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
}

.main-content {
  background-color: none;
  padding: 50px;
  border-radius: 10px;
  line-height: 1.8;
  color: #333;
}

.main-content h2 {
  font-family: "Caveat", cursive;
  font-size: 2.5rem;
  margin: 40px 0 20px 0;
  color: #6739B7;
  scroll-margin-top:100px;
  font-weight: 700;
}

.main-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #444;
}

.main-content a {
  color: #6739b7;
  text-decoration: none;
  border-bottom: 1px solid #6739b7;
}

.main-content a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.sidebar {
  position: sticky !important;
  top: 30px;
  align-self: flex-start;
  height: fit-content;
}

.toc-container {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #333;
}

.toc-toggle {
  transition: transform 0.3s;
}

.toc-toggle.collapsed {
  transform: rotate(180deg);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.toc-list.collapsed {
  max-height: 0;
}

.toc-list li {
  margin-bottom: 15px;
}

.toc-list a {
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.toc-list a:hover {
  color: #6739b7;
  text-decoration: none;
}

.toc-list a.active {
  color: #6739b7;
  font-weight: bold;
}

.toc-list a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ddd;
  transition: background-color 0.3s;
}

.toc-list a.active::before {
  background-color: #6739b7;
}

.cta-box {
  margin-top: 30px;
  background: linear-gradient(135deg, #8554db, #8039b793);
  padding: 30px;
  border-radius: 10px;
  color: white;
  text-align: center;
  position: sticky;
}

.cta-box h3 {
  margin: 0 0 15px 0;
  font-size: 1.5rem;
  font-family: "Caveat", cursive;
  font-weight: 700;
}

.cta-box ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.cta-box li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.cta-box li i {
  color: #4caf50;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: #673bad;
  padding: 15px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: transform 0.3s;
}

.cta-button:hover {
  text-decoration: none;
  color: rgb(60, 34, 122);
}

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

  .toc-container {
    position: relative;
    top: 0;
  }

  .sticky-social {
    right: 15px;
  }
}

.cta-section {
  background: linear-gradient(
    to right,
    #6739b78e 0%,
    #d4c5d8 35%,
    #d4c5d8 65%,
    #6739b78e 100%
  );

  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 860px;

  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-content {
  color: rgb(10, 10, 10);
  max-width: 450px;
  z-index: 1;
}

.cta-content h1 {
  font-size: 2.5em;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: bold;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

.button {
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.1s;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-button {
  background-color: white;
  color: #6739b7;
}

.signup-button:hover {
  text-decoration: none;
  color: #5f468c;
  background-color: #f0f0f0;
}

.sales-button {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.sales-button:hover {
  text-decoration: none;
  color: #5f468c;
  background-color: rgba(255, 255, 255, 0.3);
}

.arrow {
  margin-left: 10px;
  font-size: 1.2em;
  line-height: 1;
}

.mockup-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(20%);
  width: 550px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  mask-image: linear-gradient(to right, transparent 0%, black 30%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
}

@media (max-width: 900px) {
  .cta-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .cta-content {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .cta-buttons {
    justify-content: center;
  }
  .mockup-image {
    position: static;
    transform: none;
    width: 90%;
    height: 250px;
    margin-top: 20px;
  }
}

.articles-container {
  width: 100%;
  margin-top: 30px;
}

.headers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.title-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-box {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6739b7, #6739b7);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px #6739b7c7;
}

.icon-box::before {
  content: "\f14b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.5em;
  filter: none;
  color: white;
}

h2 {
  font-size: 1.8em;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.nav-arrows {
  display: flex;
  gap: 10px;
}

.arrow-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1.2em;
}

.arrow-button:hover {
  background-color: #f0f0f0;
}

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

.article-card {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.article-title {
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  margin-bottom: 20px;
}

.meta-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.author-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e0e0e0;
  border: 2px solid #6739b7;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 0.9em;
  color: #555;
  font-weight: 500;
}

.read-time {
  font-size: 0.85em;
  color: #4f4f4f;
  display: flex;
  align-items: center;
  gap: 5px;
}

.read-time::before {
  /* Font Awesome 5/6 - Solid Clock Icon */
  content: "\f017";
  font-family: "Font Awesome 6 Free"; /* or 'Font Awesome 5 Free' */
  font-weight: 900; /* Use 900 for Solid style */
  font-size: 1.1em;
}

.avatar-pavitra {
  background-image: url("placeholder-avatar-pavitra.png");
}
.avatar-preethi {
  background-image: url("placeholder-avatar-preethi.png");
}

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

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .nav-arrows {
    align-self: flex-end;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
}

.newsletter-section {
  background: linear-gradient(
    90deg,
    #a27be6 0%,
    #d4c5d8 35%,
    #d4c5d8 65%,
    #a27be6 100%
  );
  padding: 60px 80px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(255, 105, 180, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(138, 43, 226, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.newsletter-text h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: caveat;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 0;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.email-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.email-icon {
  position: absolute;
  left: 20px;
  width: 24px;
  height: 24px;
  color: #6739B7;
}

.email-input {
  width: 380px;
  padding: 18px 20px 18px 56px;
  font-size: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: white;
  color: #6b7280;
  outline: none;
  transition: all 0.3s ease;
}

.email-input:focus {
  border-color: #6739B7;
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.subscribe-btn {
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #6739B7 0%, #482486 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(135, 72, 236, 0.3);
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(86, 72, 236, 0.4);
}

.subscribe-btn:active {
  transform: translateY(0);
}

.features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-text {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.4;
}

.feature-text strong {
  color: #1a1a1a;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .newsletter-section {
    padding: 50px 60px;
  }

  .newsletter-text h2 {
    font-size: 40px;
  }

  .email-input {
    width: 320px;
  }
}

@media (max-width: 992px) {
  .newsletter-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    width: 100%;
  }

  .features {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 40px 30px;
  }

  .newsletter-text h2 {
    font-size: 32px;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .email-input {
    width: 100%;
  }

  .subscribe-btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }

  .article-hero {
    padding: 40px 15px;
  }

  .article-content {
    padding: 40px 15px;
  }

  .main-content {
    padding: 20px 10px;
  }

  .articles-container {
    margin: 30px auto;
    padding: 0 15px;
  }

  .content-area h1 {
    font-size: 2.5rem;
  }

  .main-content h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px 0;
  }

  .main-content p {
    font-size: 0.95rem;
  }

  .graphic-box {
    height: 200px;
  }

  .sticky-social {
    right: 10px;
    gap: 10px;
  }

  .newsletter-section {
    padding: 40px 15px;
  }

  .newsletter-text h2 {
    font-size: 32px;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .email-input-wrapper {
    width: 100%;
  }

  .email-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
  }

  .email-icon {
    left: 15px;
    width: 20px;
    height: 20px;
  }

  .subscribe-btn {
    width: 100%;
    padding: 15px 30px;
  }

  .features {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
