
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f4fff4;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px 0;
  text-align: center;
}

/* HEADER */
header {
    background: #004d00;
    color: white;
    padding: 10px 0;
  }

  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 10px 0;
  }

  nav a {
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    transition: background 0.3s;
    font-weight: bold;
  }

  nav a:hover {
    background: #006600;
    border-radius: 4px;
  }

  .hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  @media (max-width: 768px) {
    nav ul {
      display: none;
      flex-direction: column;
      width: 100%;
      background: #004d00;
    }

    nav ul.show {
      display: flex;
    }

    .hamburger {
      display: block;
    }
  }


/* HERO SECTION */
.hero-section {
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/s1(2).webp');
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  text-align: center;
  color:#fff;
}

.hero-section h2 {
  font-size: 36px;
}

.hero-section p {
  font-size: 18px;
  margin-top: 10px;
}

/* ABOUT SECTION */
.about-section {
  margin-top: 40px;
  text-align: left;
}

.about-section p {
  margin: 12px 0;
  color: #333;
}

.about-image {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  justify-content: center;
}

/*desktop view */
.circle-wrapper {
  background-color: #d4edda;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: inline-block;
  transition: all 0.3s ease;
}

.circle-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  transition: all 0.3s ease;
}

/* reponsive  */
@media (max-width: 768px) {
  .circle-wrapper {
    width: 160px;
    height: 160px;
    background-color: #a5d6a7;
    border-radius: 50%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .circle-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;      
    object-position: top center;
    border-radius: 50%;
  }
}


/* SKILLS SECTION */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
}

.skill-box {
  background: #e6ffe6;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
}

.skill-box img {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
  object-fit: contain;
}

.skill-box h3 {
  font-size: 1.1rem;
  color: #004d00;
}

/* WRITING CATEGORIES */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.category-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #4CAF50;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.category-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

.category-card h3 {
  margin-bottom: 10px;
  color: #004d00;
}

.category-card p {
  font-size: 0.95rem;
  color: #333;
}

.category-card {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.category-card:hover {
  transform: translateY(-5px);
}


/* WORK SECTION */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.work-item {
  background: #f0fff0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}


.book-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .book-image {
    max-width: 80%;
  }
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-left: 5px solid #25a244;
  border-radius: 10px;
  font-style: italic;
}

/* BLOG SECTION */
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.blog-post-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.blog-post-box img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.blog-post-box h3 {
  color: #004d00;
  font-size: 1.1rem;
}

.blog-post-box p {
  font-size: 0.9rem;
  color: #444;
  margin: 8px 0;
}

.blog-post-box a {
  margin-top: auto;
  color: #0077cc;
  font-weight: bold;
  text-decoration: none;
}

.blog-post-box a:hover {
  text-decoration: underline;
}


.view-all-btn-wrapper {
  text-align: center;
  margin-top: 30px;
}

.view-all-btn {
  display: inline-block;
  background: linear-gradient(135deg, #4CAF50, #2E7D32);

  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.view-all-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ff758c, #ff7eb3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ SECTION */
.faq-item {
  background: #eaffea;
  margin: 10px auto;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  max-width: 700px;
}

/* FOOTER */
footer {
  background: #004d00;
  color: white;
  padding: 30px 20px;
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
}



/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #006600;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  display: none;
  z-index: 999;
}



/*buy button*/

.buy-button {
  display: inline-block;
  background-color: #ff9900;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.buy-button:hover {
  background-color: #e68a00;
}

/* Contact Info */
#contact-info {
  background: #e6ffe6;
  padding: 60px 20px;
  text-align: center;
}

#contact-info h2 {
  color: #004d00;
  margin-bottom: 30px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.contact-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-box h4 {
  color: #006600;
  margin-bottom: 10px;
}

.contact-box a {
  color: #0077cc;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}


/* Connect with Deeksha Section - Green Theme */
.deeksha-connect {
  padding: 60px 20px;
  background: #e6ffe6;
  color: #2d4a28; /* गहरा हरा */
  font-family: 'Segoe UI', sans-serif;
}

.deeksha-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.deeksha-image {
  flex: 1;
  text-align: center;
}

.deeksha-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.deeksha-content {
  flex: 1;
  min-width: 300px;
}

.deeksha-content h2 {
  font-size: 26px;
  color: #1e3d2f;
  margin-bottom: 20px;
}

.deeksha-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.deeksha-content ul {
  margin: 15px 0 20px 20px;
}

.deeksha-content ul li {
  font-size: 15px;
  margin-bottom: 8px;
}

/* Responsive */
  @media (max-width: 768px) {
  .deeksha-container {
    flex-direction: column;
    text-align: center;
  }

  .deeksha-content {
    padding: 10px;
  }

  .deeksha-content h2 {
    font-size: 22px;
  }

  .deeksha-image img {
    width: 80%;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Mobile-friendly list styling */
  .deeksha-content ul {
    list-style-position: inside;
    padding-left: 0;
    margin: 0 auto 20px;
    text-align: left;
    max-width: 320px;
  }

  .deeksha-content ul li {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.5;
  }
}
