:root {
  --primary-color: #0066ff;
  --secondary-color: #f4f7fc;
  --text-color: #333;
  --white-color: #fff;
  --shadow-color: rgba(0, 0, 0, 0.08);
  --border-color: #e0e0e0;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: var(--secondary-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

header {
  background-color: var(--white-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  text-decoration: none;
  color: var(--primary-color);
  font-size: 22px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #0044cc;
}

.breadcrumb {
  margin: 15px 0;
  color: #555;
  font-size: 14px;
}

.tool-box {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow-color);
  text-align: center;
}

.tool-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

.description {
  max-width: 700px;
  margin: 0 auto 25px;
  color: #666;
}

.text-areas {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

textarea {
  width: 100%;
  height: 200px;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(0, 102, 255, 0.2);
  outline: none;
}

#outputText {
  background-color: #f9f9f9;
}

.options {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background-color: var(--white-color);
}

button {
  background: linear-gradient(45deg, var(--primary-color), #0044cc);
  color: var(--white-color);
  border: none;
  padding: 12px 25px;
  margin: 20px 5px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.3s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 102, 255, 0.3);
}

.adsense {
  text-align: center;
  background-color: #e9e9e9;
  padding: 20px;
  margin: 25px 0;
  border-radius: 8px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.card {
  background-color: var(--white-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px var(--shadow-color);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px var(--shadow-color);
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.card button {
  background: var(--primary-color);
  font-size: 14px;
  padding: 8px 18px;
}

.faq {
  margin-top: 40px;
}

.faq-item {
  background-color: var(--white-color);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px var(--shadow-color);
}

footer {
  text-align: center;
  padding: 25px;
  background-color: var(--white-color);
  margin-top: 40px;
  box-shadow: 0 -2px 8px var(--shadow-color);
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 10px;
}

#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media(max-width: 768px){
  .text-areas {
    flex-direction: column;
  }
}
/* style.css */

/* --- Global Styles & Variables --- */
:root {
  --primary: #0056ff;
  --secondary: linear-gradient(135deg, #00E0FF, #00FFFF); /* Bright Cyan Gradient */
  --text: #222;
}

body {
  font-family: Poppins, sans-serif;
  margin: 0;
  background: var(--secondary);
  color: var(--text);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* --- Header Styles --- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #0056ff, #00aaff);
  padding: 15px 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-img {
  margin-right: 12px;
  filter: brightness(1) invert(0.9) sepia(0.8) saturate(3) hue-rotate(45deg);
}

.logo-text {
  font-size: 24px;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
  font-weight: 700;
}

/* Navbar links */
#navbar {
  display: flex;
  align-items: center;
  gap: 20px;
}

#navbar a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
}

#navbar a:hover {
  color: #fffa;
  transform: scale(1.1);
}

/* Hamburger Icon */
#hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1002;
}

#hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  font-family: Poppins, sans-serif;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0056ff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  min-width: 180px;
  z-index: 999;
  border: 1px solid #004acb;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #004acb;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* --- Mobile Responsive Menu --- */
@media screen and (max-width: 768px) {
  #hamburger {
    display: flex;
  }

  #navbar {
    position: fixed;
    top: 80px;
    right: 15px;
    width: 250px;
    background: linear-gradient(180deg, #0056ff, #00399d);
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    gap: 0;
    box-shadow: -5px 5px 15px rgba(0,0,0,0.25);
    z-index: 1001;
    border-radius: 12px;
    transform: translateX(110%);
    transition: transform 0.3s ease-in-out;
  }

  #navbar.show {
    display: flex;
    transform: translateX(0);
  }

  #navbar a, .dropdown {
    padding: 15px 25px;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
  }

  .dropdown-content {
    position: static;
    display: none;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    border-radius: 0;
    border: none;
    min-width: 100%;
  }

  .dropdown-content a {
    color: #e0f7ff;
    font-weight: normal;
    padding-left: 40px;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }
}

/* --- Footer Styles --- */
footer a {
  text-decoration: none;
  color: var(--primary);
  margin-right: 15px;
}

footer a:hover {
  color: #0039c1;
}

/* Social media icon hover effect */
.footer-social a:hover {
    transform: scale(1.15);
}
/* =========================================
   BASE TYPOGRAPHY & RESET
   ========================================= */
:root {
    --primary-color: #2c3e50; /* Dark Blue */
    --accent-color: #27ae60;  /* Green for Growth/Editing */
    --bg-color: #fdfdfd;
    --text-color: #333333;
    --light-gray: #f4f4f4;
    --border-color: #e0e0e0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 18px; /* Readable base size */
    width: 100%;
    overflow-x: hidden;
}

/* =========================================
   LAYOUT CONTAINER (Fluid & Responsive)
   ========================================= */
.article-container {
    width: 100%;
    max-width: 1200px; /* Limits width on large screens */
    margin: 0 auto;    /* Centers the container */
    padding: 40px 20px;
    background-color: #ffffff;
}

/* =========================================
   TYPOGRAPHY STYLES
   ========================================= */
h1, h2, h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 15px;
    margin-bottom: 35px;
}

h2 {
    font-size: 2rem;
    margin-top: 45px;
    border-left: 5px solid var(--accent-color);
    padding-left: 15px;
}

h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    text-align: justify; /* Clean newspaper look */
}

ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

li {
    margin-bottom: 12px;
}

/* =========================================
   COMPONENTS (Tables, Boxes, Buttons)
   ========================================= */
/* Feature Highlights Box */
.feature-box {
    background-color: #f0f9f4; /* Light green tint */
    border: 1px solid #ccebd6;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

/* Responsive Table Wrapper */
.table-wrapper {
    overflow-x: auto; /* Critical for mobile scrolling */
    margin: 35px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Prevents squishing */
}

th, td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

tr:nth-child(even) {
    background-color: var(--light-gray);
}

/* Call to Action Section */
.cta-section {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 50px;
    text-align: center;
    border-radius: 12px;
    margin-top: 60px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 25px;
    transition: background 0.3s, transform 0.2s;
    font-size: 1.1rem;
}

.cta-btn:hover {
    background-color: #219150;
    transform: translateY(-2px);
}

/* =========================================
   MOBILE RESPONSIVENESS (Media Queries)
   ========================================= */
@media (max-width: 768px) {
    /* Layout Adjustments */
    .article-container {
        padding: 20px 15px;
    }

    /* Typography Adjustments */
    body {
        font-size: 16px; /* Smaller base size */
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    h2 {
        font-size: 1.5rem;
        margin-top: 35px;
        border-left-width: 4px;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        text-align: left; /* Easier to read on small screens */
    }

    /* Component Adjustments */
    .feature-box {
        padding: 20px;
    }

    th, td {
        padding: 12px;
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .cta-btn {
        width: 100%; /* Full width button on mobile */
        padding: 15px;
    }
}
/* =========================================
   FAQ SECTION STYLES
   ========================================= */

:root {
    --faq-primary: #2c3e50;    /* Dark Blue for Headings */
    --faq-accent: #27ae60;     /* Green for Growth/Editing */
    --faq-bg: #ffffff;         /* White Background */
    --faq-text: #444444;       /* Dark Gray Text */
    --faq-light-bg: #f9f9f9;   /* Light Gray for Table/Box */
    --faq-border: #e0e0e0;     /* Subtle Borders */
}

/* Main Container */
.faq-container {
    width: 100%;
    max-width: 1200px; /* Matches standard article width */
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--faq-text);
    box-sizing: border-box;
}

/* Intro & Summary Boxes */
.faq-intro, .faq-summary {
    background-color: #f0f9f4;
    border-left: 5px solid var(--faq-accent);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.faq-summary {
    background-color: #eef7fb; /* Blue tint for summary */
    border-left-color: #3498db;
    margin-top: 40px;
}

/* Headings */
.faq-section-title {
    font-size: 2.2rem;
    color: var(--faq-primary);
    border-bottom: 2px solid var(--faq-border);
    padding-bottom: 15px;
    margin-bottom: 30px;
    margin-top: 40px;
}

.faq-question {
    font-size: 1.3rem;
    color: var(--faq-primary);
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Answers */
.faq-answer {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
    text-align: left;
}

/* Responsive Table Styling */
.table-responsive-wrapper {
    overflow-x: auto; /* Enables scrolling on mobile */
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensures table doesn't crush on mobile */
    background-color: var(--faq-bg);
}

.comparison-table th, 
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--faq-border);
}

.comparison-table th {
    background-color: var(--faq-primary);
    color: #ffffff;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--faq-light-bg);
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    .faq-container {
        padding: 15px;
    }

    .faq-section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .faq-question {
        font-size: 1.15rem; /* Slightly smaller for mobile screens */
        margin-top: 25px;
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 0.95rem; /* Readable text size */
    }

    /* Adjust padding for touch targets */
    .comparison-table th, 
    .comparison-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
    
    .faq-intro, .faq-summary {
        padding: 15px;
    }
}
/* =========================================
   FAQ SECTION STYLES
   ========================================= */

:root {
    --faq-primary: #2c3e50;    /* Dark Blue for Headings */
    --faq-accent: #27ae60;     /* Green for Growth/Editing */
    --faq-bg: #ffffff;         /* White Background */
    --faq-text: #444444;       /* Dark Gray Text */
    --faq-light-bg: #f9f9f9;   /* Light Gray for Table/Box */
    --faq-border: #e0e0e0;     /* Subtle Borders */
}

/* Main Container */
.faq-container {
    width: 100%;
    max-width: 1200px; /* Matches standard article width */
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--faq-text);
    box-sizing: border-box;
}

/* Intro & Summary Boxes */
.faq-intro, .faq-summary {
    background-color: #f0f9f4;
    border-left: 5px solid var(--faq-accent);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.faq-summary {
    background-color: #eef7fb; /* Blue tint for summary */
    border-left-color: #3498db;
    margin-top: 40px;
}

/* Headings */
.faq-section-title {
    font-size: 2.2rem;
    color: var(--faq-primary);
    border-bottom: 2px solid var(--faq-border);
    padding-bottom: 15px;
    margin-bottom: 30px;
    margin-top: 40px;
}

.faq-question {
    font-size: 1.3rem;
    color: var(--faq-primary);
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Answers */
.faq-answer {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
    text-align: left;
}

/* Responsive Table Styling */
.table-responsive-wrapper {
    overflow-x: auto; /* Enables scrolling on mobile */
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensures table doesn't crush on mobile */
    background-color: var(--faq-bg);
}

.comparison-table th, 
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--faq-border);
}

.comparison-table th {
    background-color: var(--faq-primary);
    color: #ffffff;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--faq-light-bg);
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    .faq-container {
        padding: 15px;
    }

    .faq-section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .faq-question {
        font-size: 1.15rem; /* Slightly smaller for mobile screens */
        margin-top: 25px;
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 0.95rem; /* Readable text size */
    }

    /* Adjust padding for touch targets */
    .comparison-table th, 
    .comparison-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
    
    .faq-intro, .faq-summary {
        padding: 15px;
    }
}
/* --- GRID LAYOUT --- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* --- CARD DESIGN (Green Background) --- */
.card {
  background: linear-gradient(160deg, #00e600, #00ff00); /* Bright Green Gradient */
  border-radius: 30px;
  padding: 20px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

/* --- BLUE ENERGY ANIMATION EFFECT --- */
@keyframes blueEnergyAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 224, 255, 0.4), rgba(0, 255, 255, 0.6), rgba(0, 224, 255, 0.4), rgba(0, 255, 255, 0.6), rgba(0, 224, 255, 0.4));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
  opacity: 1;
  animation: blueEnergyAnimation 4s linear infinite;
}

.card > * {
  position: relative;
  z-index: 1;
}

/* --- IMAGES & TEXT --- */
.card img {
  width: 80px; /* Thoda adjust kiya taake fit rahe */
  height: 80px;
  margin: 0 auto 15px auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.card h2 {
  color: #ffffff;
  font-size: 1.35rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
  margin: 0 0 10px 0;
  font-family: 'Poppins', sans-serif;
}

.card p {
  color: #f5f5f5;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  font-family: 'Poppins', sans-serif;
}

/* --- BUTTON STYLE (Cyan with Black Border) --- */
.card a {
  text-decoration: none;
}

.card button {
  background: linear-gradient(45deg, #00BFFF, #00FFFF);
  color: #ffffff;
  border: 2px solid black;
  border-radius: 12px;
  padding: 14px 25px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 200, 255, 0.4);
  transition: all 0.3s ease;
}

.card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 200, 255, 0.6);
}