
.header {
       background: #172443;
    color: white;
    padding: 40px 0;
    text-align: center;
    display: flex;
    height: 20vh;
    margin: 5pc 0px 0px 0px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    justify-content: center;
    align-items: center;
}

.header h1 {
    margin: 0;
    font-size: 36px;
    color: #fff;
}


.newletter-banner-section {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    margin: 10px 0px 0px 0px;
}

.newsletter-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #172443, #172443);
    /* Good Reach Publishing gradient */
    padding: 30px 50px;
    border-radius: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    max-width: 1300px;
    width: 90%;
}

.text-content {
    max-width: 100%;
}

.headline {
    font-size: 2rem;
    color: #fff;
    /* White for contrast on dark gradient */
    margin: 0 0 10px;
}

.headline span {
    color: #cb982b;
    /* Accent gold highlight */
    font-weight: 700;
}


.details {
    font-size: 1rem;
    color: #f0f0f0;
    /* Soft light text */
    line-height: 1.5;
}

.details span {
    color: #cb982b;
    /* Emphasize strong text */
    font-weight: 600;
}

.subscribe-btn {
    background-color: #cb982b;
    /* Gold brand color */
    color: #172443;
    /* Dark text on gold button */
    border: none;
    border-radius: 25px;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.subscribe-btn:hover {
    background-color: #e6b93a;
    /* Lighter gold on hover */
    transform: translateY(-2px);
}

.subscribe-btn span {
    margin-left: 5px;
}

.info-section {
    max-width: 70%;
    margin: 0px auto 60px auto;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

@media (max-width: 768px) {
    .info-section {
        max-width: 90%;
        font-size: 15px;
        line-height: 1.7;
    }
}


.submission-guidelines {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin: 20px 0;
    padding: 15px;

}

.submission-guidelines h2 {
    color: #333;
    margin-bottom: 10px;
}

.submission-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px;
}

.container {
    display: flex;
    max-width: 1200px;
    gap: 60px;
}

.books-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.book-shelf img {
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.book-shelf img:hover {
    transform: translateY(-5px);
}

.content-column {
    flex: 1.5;
    padding: 30px;
    background: #fff;
    border: 1px solid #ddd;
}

.info-box h3 {
    font-size: 26px;
    color: #222;
    font-weight: 600;
    margin-bottom: 20px;
}

.info-box h3 span {
    color: #b08435;
}

.info-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.info-box h4 {
    font-size: 18px;
    color: #222;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.feature-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    color: #b08435;
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 900px) {
    .content-column {
        padding: 20px;
        text-align: center;
    }

    .feature-list li {
        text-align: left;
    }
}


@media (max-width: 900px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .books-column {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .book-shelf {
        gap: 20px;
    }
}

/* Wrapper for your intro heading */
.intro-text {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 38px;
    font-weight: 900;
    color: #172443;
    text-align: left;
    margin-left: 22pc;

    margin-top: 0;
    margin-bottom: -2pc;
}

/* Heading itself uses same style — no need to repeat everything */
.intro-text h2 {
    font: inherit;
    color: inherit;
    text-align: inherit;
    margin: 0;
}

/* Highlighted span in orange */
.intro-text h2 span {
    font-style: oblique;
    color: #cb982b;
}

/* Optional: responsive adjustment for smaller screens */
@media (max-width: 992px) {
    .intro-text {
        margin-left: 5pc;
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .intro-text {
        margin-left: 0;
        text-align: center;
        font-size: 22px;
    }
}


.publishing-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.publishing-card {
    position: relative;
    width: 500px;
    overflow: hidden;

}

.publishing-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.publishing-content {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px;
    position: relative;
    background: #fff;
    border: 2px dotted #000000ff;
    margin: -60px 0px 0px 20px;
    width: 80%;
    height: 40vh;
}

.publishing-card:hover .publishing-content {
    transform: translateY(-10px);
    box-shadow: -18px 20px 20px 0px rgba(0, 0, 0, 0.15);

}

.publishing-content h2 {
    font-size: 1.4rem;
    color: #222;
    margin: 0 0 10px;
    font-weight: 600;
}

.publishing-content h2 span {
    display: block;
    color: #b08435;
    font-weight: 500;
}

.publishing-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .publishing-section {
        gap: 30px;
        flex-wrap: nowrap;
    }

    .publishing-card {
        width:  auto;
    }
}

/* ==========================================================
   🌍 FULL RESPONSIVE DESIGN — Covers 300px up to 1440px+
   ========================================================== */

/* ============================================
   📱 Extra Small Devices (300px - 480px)
   ============================================ */
@media (min-width: 300px) and (max-width: 480px) {
  .header {
    flex-direction: column;
    /* height: auto; */
    margin: 20px 0 0;
    padding: 20px;
  }

  .header h1 {
    font-size: 22px;
    text-align: center;
  }

  .newletter-banner-section {
    height: auto;
    padding: 20px 0;
  }

  .newsletter-banner {
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    padding: 20px;
    text-align: center;
  }

  .text-content {
    max-width: 100%;
  }

  .headline {
    font-size: 1.5rem;
  }

  .details {
    font-size: 0.9rem;
  }

  .subscribe-btn {
    margin-top: 15px;
    width: 100%;
  }

  .info-section {
    max-width: 90%;
    font-size: 14px;
    text-align: left;
  }

  .submission-section {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .container {
    flex-direction: column;
    gap: 30px;
  }

  .books-column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .book-shelf img {
    width: 90%;
    height: auto;
  }

  .content-column {
    width: 100%;
    padding: 20px;
  }

  .intro-text {
    margin: 0;
    text-align: center;
    font-size: 22px;
  }

  .publishing-section {
    flex-direction: column;
    align-items: center;
    margin: 40px auto;
  }

  .publishing-card {
    width: 100%;
  }

  .publishing-card img {
    height: 200px;
  }

  .publishing-content {
            width: auto;
        margin: 0;
        height: auto;
        padding: 20px;
  }
      

}

/* ============================================
   📱 Tablets (481px - 768px)
   ============================================ */
@media (min-width: 481px) and (max-width: 768px) {
  .header {
    /* height: auto; */
    padding: 30px 0;
  }

  .header h1 {
    font-size: 28px;
  }

  .newsletter-banner {
    flex-direction: column;
    text-align: center;
    border-radius: 50px;
    padding: 20px;
  }

  .headline {
    font-size: 1.8rem;
  }

  .subscribe-btn {
    margin-top: 20px;
  }

  .info-section {
    max-width: 85%;
    font-size: 15px;
  }

  .container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .books-column {
    flex-wrap: wrap;
    justify-content: center;
  }

  .book-shelf img {
    width: auto;
  }

  .content-column {
    width: 90%;
    text-align: center;
  }

  .publishing-section {
   
        flex-direction: row;
        flex-wrap: wrap;
  }

  .publishing-card {
    width: 80%;
  }

  .publishing-card img {
    height: 250px;
  }

  .publishing-content {
    width: 85%;
    height: auto;
  }
}

/* ============================================
   💻 Medium Devices (769px - 1024px)
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .header {
    height: 15vh;
  }

  .newsletter-banner {
    flex-direction: row;
    align-items: center;
    border-radius: 60px;
  }

  .headline {
    font-size: 1.9rem;
  }

  .details {
    font-size: 1rem;
  }

  .container {
    flex-direction: row;
    gap: 40px;
  }

  .book-shelf img {
    width: auto;
  }

  .publishing-card img {
    height: 280px;
  }

  .publishing-content {
    height: auto;
    padding: 25px;
  }
}

/* ============================================
   🖥️ Large Screens (1025px - 1440px)
   ============================================ */
@media (min-width: 1025px) and (max-width: 1440px) {
  .header h1 {
    font-size: 34px;
  }

  .newsletter-banner {
    max-width: 1100px;
  }

  .headline {
    font-size: 2rem;
  }

  .container {
    gap: 50px;
  }

  .publishing-card {
    width: 45%;
  }
}

/* ============================================
   🖥️ Extra Large Screens (1441px+)
   ============================================ */
@media (min-width: 1441px) {
  .header h1 {
    font-size: 38px;
  }

  .newsletter-banner {
    max-width: 1300px;
    padding: 40px 60px;
  }

  .headline {
    font-size: 2.2rem;
  }

  .publishing-card img {
    height: 320px;
  }
}


