/* -------------------------
 Global Styles #fe5b6c
--------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #1c1c1e;
  background: #fff;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* -------------------------
 Header
--------------------------*/
.site-header {
  background: #fff;
  color: #1e293b;
  padding: 20px 0;
  /*border-bottom: 1px solid #e2e8f0;*/
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h2 {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6a3d, #ff4b9f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav a {
  text-decoration: none;
  margin-left: 25px;
  font-weight: 600;
  color: #1e293b;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #ff6a3d;
}

/* Navbar Button */
.nav .btn-primary {
  background: linear-gradient(135deg, #ff6a3d, #ff4b9f); /* Gradient colors */
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none; /* Remove underline */
}

.nav .btn-primary:hover {
  background: linear-gradient(135deg, #ff4b9f, #ff6a3d); /* Hover gradient */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255,75,159,0.4); /* Soft glow */
}


/* Dropdown Nav */
.nav .dropdown {
  position: relative;
  display: inline-block;
}

.nav .dropbtn {
  cursor: pointer;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  padding: 10px 15px;
  transition: color 0.3s;
}

.nav .dropbtn:hover {
  color: #ff6a3d;
}

.nav .dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-radius: 8px;
  margin-top: 5px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.nav .dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: #1e293b;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav .dropdown-content a:hover {
  background-color: #fd5f6d;
  color: #fff;
}

/* Show dropdown on hover */
.nav .dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}

/* -------------------------
 Mobile Responsive Header
------------------------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #1e293b;
}

@media screen and (max-width: 991px) {
  .header-container {
    flex-wrap: wrap;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 15px;
  }

  .nav a {
    margin: 10px 0;
  }

  .nav .dropdown {
    width: 100%;
  }

  .nav .dropdown-content {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    margin: 0;
    border-radius: 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav.active {
    display: flex;
  }

  /* Make dropdown expand/collapse on mobile click */
  .nav .dropdown-content {
    display: none;
    flex-direction: column;
  }

  .nav .dropdown.active .dropdown-content {
    display: flex;
  }
}





/* -------------------------
 Hero Section
--------------------------*/

.hero {
  background: linear-gradient(135deg, #ff6a3d, #ff4b9f);
  color: #fff;
  text-align: left;
  padding: 120px 20px;
  border-radius: 0 0 50px 50px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero-image {
  flex: 1;
  min-width: 100px;
  text-align: right;
}

.hero-image img {
  max-width: 80%;
  border-radius: 20px;
  box-shadow: 0 0px 0px rgba(0,0,0,0.15);
}

/* Hero Button */
.hero .btn-primary,
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;                 /* White text for contrast */
  background: #1e293b;  
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 106, 61, 0.3);
}

.hero .btn-primary:hover,
.btn-primary:hover {
  background: #0f1a2a;   
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 91, 46, 0.5);
}
/* -------------------------
 Features Section
--------------------------*/
.features {
  padding: 6rem 0;
  text-align: center;
  background: #ffffff;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #f9f9fb;
  padding: 2rem;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card h3 {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: #fe5b6c;
}

.feature-icon {
  font-size: 3rem;
  color: #007aff;
  margin-bottom: 1rem;
  display: block;
}
/* -------------------------
 Tools Section
--------------------------*/
.tools {
  padding: 6rem 0;
  background: #f2f7ff;
  text-align: center;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}



.tool-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #1e293b;
}

.tool-card i {
  color: #fe5b6c; /* Icon color */
}

.tool-card:hover {
  border-color: #fe5b6c;
  transform: translateY(-5px);
}

/* -------------------------
 Pricing Section
--------------------------*/
.pricing {
  padding: 6rem 0;
  text-align: center;
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background: #f9f9fb;
  padding: 2rem;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.price-card.highlight {
  background: linear-gradient(135deg, #007aff, #34c759);
  color: #ffffff;
}

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

.price-card i {
  display: block;
  font-size: 3rem;
  margin-bottom: 15px;
}

.price-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.price-card p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.price-card ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.price-card ul li {
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.price-card ul li i {
  color: #fe5b6c;
  font-size: 1rem;
}

.price-card a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.price-card a.btn-primary {
  background: #ff4b9f;
  color: #fff;
}

.price-card.highlight a.btn-primary {
  background: #ffffff;
  color: #007aff;
}

.price-card a.btn-secondary {
  background: #e0e0e0;
  color: #1e293b;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------
 Example Section
--------------------------*/
.examples {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  text-align: center;
}

.examples h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.examples p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #4b5563;
}

/* Swiper Slides */
.examples-slider {
  padding: 2rem 0;
}

.example-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.example-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.example-card h3 {
  margin: 1rem 0 0.5rem;
  color: #fe5b6c;
}

.example-card p {
  font-size: 1rem;
  color: #1e293b;
  line-height: 1.5;
}

.example-card i {
  margin-bottom: 1rem;
}



/* -------------------------
 Testimonials
--------------------------*/
.testimonials {
  padding: 6rem 0;
  background: #f0f4f8;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.testimonials p {
  margin-bottom: 3rem;
  color: #6b7280;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff, #fefefe);
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.testimonial-card .avatar {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.testimonial-card .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff6a3d;
}

.testimonial-card p {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 1rem;
}

.testimonial-card cite {
  font-size: 0.9rem;
  color: #6b7280;
  display: block;
}
/* -------------------------
 FAQ
--------------------------*/
.faq {
  padding: 6rem 0;
  background: #f9f9fb;
  text-align: center;
}

.faq h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.faq p {
  margin-bottom: 3rem;
  color: #6b7280;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  outline: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #ff6a3d;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #fefefe;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 1rem 2rem;
}

.faq-answer p {
  margin: 0;
  color: #4b5563;
}

/* -------------------------
CTA Buttun
--------------------------*/
.cta {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #ff6a3d, #ff4b9f);
  color: #fff;
  border-radius: 2rem;
  text-align: center;
}

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

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cta-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.cta-icons {
      justify-content: flex-start; 
  display: flex;

  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cta-icons .icon-item i {
  font-size: 3rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.cta-icons .icon-item i:hover {
  transform: scale(1.2);
  color: white;
}

.btn-primary {
  background: #fff;
  color: #ff4b9f;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

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

/* Responsive */
@media (min-width: 768px) {
  .cta-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .cta-text {
    text-align: left;
  }
}

/* -------------------------
 Footer
--------------------------*/
.site-footer {
  background: #1e293b;
  color: #f1f5f9;
  padding: 5rem 0 2rem;
  font-family: sans-serif;
}

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

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  color: #cbd5e1;
  font-size: 0.9rem;
  max-width: 250px;
}

.footer-links h4,
.footer-social h4,
.footer-newsletter h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fe5b6c;
}

.footer-newsletter p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: none;
  outline: none;
}

.newsletter-form button {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  background: #fe5b6c;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #ff4b9f;
}

.footer-social .social-icons a {
  display: inline-block;
  margin-right: 0.8rem;
  font-size: 1.2rem;
  color: #cbd5e1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #ff6a3d;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #334155;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #94a3b8;
}


/* Generator Section */
.generator {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}

.generator h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ff5b6a;
}

.generator p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.generator form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.generator textarea {
  width: 100%;
  min-height: 120px;
  padding: 15px 20px;
  font-size: 1rem;
  border-radius: 15px;
  border: 1px solid #ddd;
  resize: vertical;
  transition: all 0.3s ease;
}

.generator textarea:focus {
  outline: none;
  border-color: #ff5b6a;
  box-shadow: 0 4px 12px rgba(255, 91, 106, 0.3);
}

.generator .btn-primary {
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: #ff5b6a;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.generator .btn-primary:hover {
  background: #e14d5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 91, 106, 0.4);
}

.caption-result {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px 25px;
  border-radius: 15px;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #333;
  min-height: 60px;
  line-height: 1.6;
  word-wrap: break-word;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .generator h2 {
    font-size: 2rem;
  }

  .generator textarea {
    min-height: 100px;
  }
}


/* Blog Section */
.blog-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.blog-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #222;
  font-weight: 700;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #111;
}

.blog-content h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.blog-content h3 a:hover {
  color: #007bff; /* highlight color */
}

.blog-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  font-weight: 600;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #0056b3;
}

/* -------------------------
   Categories Section
--------------------------*/
.categories-section {
  padding: 6rem 0;
  background: #fefefe;
  text-align: center;
}

.categories-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.category-card {
  display: block;
  padding: 1.2rem 1.5rem;
  background: #f9f9fb;
  border-radius: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
  background: #ff5b6a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Blog Search Bar */
.blog-search {
  display: flex;
  justify-content: center;
  margin: 10px 0 40px;
}
.blog-search input {
  padding: 10px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
}
.blog-search button {
  padding: 10px 20px;
  border: none;
  background: #fe5b6c;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.blog-search button:hover {
  background: #005f8d;
}

/* Blog Grid - 3 Columns */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-content {
  padding: 15px;
}
.blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #0073aa;
  font-weight: bold;
  text-decoration: none;
}
.read-more:hover {
  text-decoration: underline;
}


.single-post {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}
.post-header-img {
  width: 100%;
  border-radius: 8px;
}
.post-header-content h1 {
  font-size: 2.5rem;
  margin-top: 20px;
}
.post-meta {
  color: #777;
  margin-top: 10px;
}
.post-content {
  margin-top: 30px;
  line-height: 1.8;
  font-size: 1.1rem;
}
.newsletter-cta {
  background: #f9f9f9;
  padding: 30px;
  text-align: center;
  margin: 60px 0;
  border-radius: 8px;
}


/* --- Write for Us Page --- */
#write-hero {
background: linear-gradient(135deg, #ff6a3d, #ff4b9f);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

#write-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

#write-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.write-for-us {
  padding: 80px 20px;
  background: #f9fafb;
}

.write-for-us h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #0d1b2a;
}

.write-for-us h3 {
  margin-top: 40px;
  font-size: 1.6rem;
  color: #fe5b6c;
  border-left: 4px solid #0077ff;
  padding-left: 10px;
}

.write-for-us p {
  margin: 15px 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

.write-for-us ul {
  margin: 15px 0 25px 20px;
  padding: 0;
  list-style-type: disc;
}

.write-for-us ul li {
  margin: 8px 0;
  font-size: 1rem;
  color: #444;
}

.write-for-us a {
  color: #fe5b6c;
  text-decoration: none;
}

.write-for-us a:hover {
  text-decoration: underline;
}

/* Call-to-Action Button */
.write-for-us .btn-primary {
  display: inline-block;
  background: #fe5b6c;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1.1rem;
  margin-top: 20px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.write-for-us .btn-primary:hover {
  background: #005fcc;
}


/* Tools Section */
/* =========================
   Tools Section Styles
========================= */
/* Trending Tools Section */
.trending-tools {
  padding: 60px 0;
  background: #fafafa;
}

.trending-tools h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.trending-tools p {
  color: #555;
  margin-bottom: 30px;
}

/* Card Layout */
.trending-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.trending-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.trending-card:hover {
  transform: translateY(-5px);
}

/* Image Styles */
.trending-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 10px 18px;
  background: #007bff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #0056b3;
}

/* Highlight for new tool */
.highlight-card {
    border: 2px solid #f59e0b; /* amber border */
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    background-color: #fff7ed; /* subtle highlight */
}

.badge-new {
    display: inline-block;
    background-color: #f59e0b;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

/* Prompt Sample Box CSS */
.prompt-sample-box {
  width: 90%;                   /* Keep section width 90% of container */
  margin: 20px auto;            /* Center section with spacing */
  padding: 20px;                /* Inner spacing */
  background-color: #F7FAFC;    /* Light gray background */
  border: 1px solid #E2E8F0;   /* Soft border */
  border-radius: 12px;          /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0,0,0,0.05); /* Subtle shadow */
  color: #4A5568;               /* Dark gray text */
  font-size: 0.875rem;          /* Small text size */
  line-height: 1.6;             /* Improve readability */
}

.prompt-title {
  font-size: 1rem;              /* Slightly larger for title */
  margin-bottom: 12px;
  color: #2D3748;               /* Darker gray for title */
}

.prompt-list {
  list-style-type: disc;         /* Show bullets */
  padding-left: 20px;           /* Indent bullets */
}

.prompt-list li {
  margin-bottom: 10px;          /* Space between each example */
  word-wrap: break-word;        /* Wrap long lines */
}



/* Individual Tool Card */
/* General Tools Section */
#tools {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

#tools h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

#tools p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Tool Cards Container */
.tool-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Individual Tool Card */
.tool-card {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 300px; /* ensures all cards have equal height */
}

.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Tool Card Header */
.tool-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
}

.tool-card h3 i {
  font-size: 1.6rem;
  color: #ff3b3f; /* Optional: customize icon color based on brand */
}

/* Tool Card Description */
.tool-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1; /* makes all cards equal height */
}

/* Button */
.tool-card .btn-primary {
  display: inline-block;
  background-color: #ff3b3f;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.tool-card .btn-primary:hover {
  background-color: #e03134;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #tools h2 {
    font-size: 2rem;
  }
  
  #tools p {
    font-size: 1rem;
  }
  
  .tool-card {
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  .tool-card {
    padding: 20px 15px;
  }
  
  .tool-card h3 {
    font-size: 1.2rem;
  }
  
  .tool-card p {
    font-size: 0.95rem;
  }
  
  .tool-card .btn-primary {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Generated IMG */
#figure-result {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dashed #ddd;
  padding: 15px;
  min-height: 300px; /* Keeps space before image loads */
}

#figure-result img {
  max-width: 100%;
  max-height: 400px; /* Control image height */
  width: auto;
  height: auto;
  object-fit: contain; /* Keeps aspect ratio */
  border-radius: 12px; /* Optional: rounded corners */
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2); /* Optional: shadow */
}

/* Why Use Section - Sociolyzer */
.why-use {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 48px 0;
  color: #0f1724;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.why-use .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-use h2 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #0b2540;
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* Card wrapper */
.why-use > .container {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(12, 32, 63, 0.08);
  padding: 28px;
  border: 1px solid rgba(15, 37, 61, 0.04);
}

/* Intro paragraphs */
.why-use p {
  font-size: 15px;
  line-height: 1.7;
  color: #344154;
  margin-bottom: 16px;
}

/* Subheading */
.why-use h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  margin-top: 18px;
  margin-bottom: 12px;
  color: #0b2540;
  font-weight: 600;
}

/* Add a subtle icon pill before the h3 using pseudo-element (uses emoji fallback) */
.why-use h3::before {
  content: "☑️";
  display: inline-block;
  font-size: 18px;
  transform: translateY(-1px);
}

/* Ordered list styling */
.why-use ol {
  margin: 12px 0 18px 0;
  padding-left: 20px;
}

.why-use ol li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #2f3f4f;
}

/* Emphasized strong text */
.why-use strong {
  color: #0b2540;
  font-weight: 700;
}

/* Make the content column-friendly on wide screens */
@media (min-width: 900px) {
  .why-use .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-use p {
    font-size: 16px;
  }

  .why-use h2 {
    font-size: 32px;
  }
}

/* Reduce padding for mobile */
@media (max-width: 520px) {
  .why-use {
    padding: 28px 0;
  }
  .why-use > .container {
    padding: 18px;
    border-radius: 12px;
  }
  .why-use h2 {
    font-size: 22px;
  }
  .why-use h3 {
    font-size: 18px;
  }
  .why-use p,
  .why-use ol li {
    font-size: 14px;
  }
}

.auth-message {
  text-align: center;
  font-size: 16px;
  margin-top: 20px;
  color: #333;
}

.btn-auth {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 8px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: all 0.3s ease;
}

.login-btn {
  background: #1d3557; /* deep blue */
  color: #fff;
}

.login-btn:hover {
  background: #16324f;
}

.register-btn {
  background: #e63946; /* festive red */
  color: #fff;
}

.register-btn:hover {
  background: #b22234;
}


/* About Generator Section */
.about-generator {
  background: #f9f9f9;         /* light background for contrast */
  padding: 60px 20px;
  margin-top: 40px;
  border-top: 1px solid #eee;
}

.about-generator .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-generator h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
  text-align: center;
}

.about-generator h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #444;
}

.about-generator p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.about-generator ul {
  margin: 15px 0 25px 20px;
  padding-left: 20px;
}

.about-generator ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-generator {
    padding: 40px 15px;
  }

  .about-generator h2 {
    font-size: 24px;
  }

  .about-generator h3 {
    font-size: 20px;
  }

  .about-generator p,
  .about-generator ul li {
    font-size: 15px;
  }
}

.start-btn-container {
  text-align: center;
  margin-top: 20px;
}

.start-btn {
  display: inline-block;
  background: #e63946; /* festive red */
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.start-btn:hover {
  background: #b22234; /* darker red on hover */
}


html {
  scroll-behavior: smooth;
}


<!-- Business Tools Section -->
<section id="business-tools" class="business-tools">
  <div class="container">
    <div class="section-header">
      <h2>💼 Business Tools</h2>
      <p>Explore AI-powered tools designed to enhance your business posts, campaigns, and social media presence.</p>
    </div>

    <div class="business-cards-wrapper">

      <!-- Festival Post Generator Card -->
      <div class="business-card">
        <div class="business-image">
          <img src="/img/festival-post-generator.png" alt="Festival Post Generator">
        </div>
        <div class="business-content">
          <h3>Festival Post Generator</h3>
          <p>Upload your logo or image, select the festival theme, and generate vibrant, ready-to-share social media posts instantly. Perfect for businesses and brands!</p>
          <ul>
            <li>Quick and easy-to-use interface</li>
            <li>Add company names, logos, and festive greetings</li>
            <li>High-resolution download for social media</li>
            <li>Compatible with Instagram, Facebook, LinkedIn & WhatsApp</li>
          </ul>
          <a href="/festival-post-generator" class="btn-primary">Try Festival Generator</a>
        </div>
      </div>

      <!-- Ad Generator Card -->
      <div class="business-card">
        <div class="business-image">
          <img src="/img/ad-generator.png" alt="Ad Generator">
        </div>
        <div class="business-content">
          <h3>Ad Generator</h3>
          <p>Create professional ad creatives in seconds! Upload your product images, choose templates, and generate ads optimized for social media campaigns.</p>
          <ul>
            <li>Multiple ad templates for Instagram, Facebook & LinkedIn</li>
            <li>AI-driven text suggestions for higher engagement</li>
            <li>Download high-quality visuals for campaigns</li>
            <li>Fast and user-friendly workflow</li>
          </ul>
          <a href="/ad-generator" class="btn-primary">Try Ad Generator</a>
        </div>
      </div>

    </div>
  </div>
</section>

<style>
/* Business Tools Section Styles */
.business-tools {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.business-tools .section-header {
  text-align: center;
   padding: 50px 0 0px 0; /* Top padding 120px, bottom 80px */
  margin-bottom: 50px;
}

.business-tools .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.business-tools .section-header p {
  font-size: 1.1rem;
  color: #555;
}

.business-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.business-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 500px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.business-image img {
  width: 100%;
  height: auto;
  display: block;
}

.business-content {
  padding: 25px 20px;
}

.business-content h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.business-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.business-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.business-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}

.business-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

.business-content .btn-primary {
  display: inline-block;
  padding: 10px 25px;
  background-color: #4caf50;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.business-content .btn-primary:hover {
  background-color: #43a047;
}

/* Responsive */
@media (max-width: 768px) {
  .business-cards-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

/* Coming Soon Badge & Disabled Button */
.business-card.coming-soon h3 .badge-soon {
  background-color: #ff9800;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 10px;
}

.business-card.coming-soon .btn-primary.disabled {
  background-color: #ff9800;
  cursor: not-allowed;
  pointer-events: none;
  color: white;
}
