

:root {
  --primary: #0077B6;
  --secondary: #48CAE4;
  --accent: #F4A261;
  --background: #F8F9FA;
  --header-height: 90px; /* change if you change header size */
}








/* -------- Global -------- */



/*
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--background);
  color: #333;
  line-height: 1.7;
  margin: 0;
 padding-top: 80px;  
}
*/













a {
  color: var(--primary, #0077B6);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: var(--accent, #F4A261);
}

/* -------- Headings -------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  margin: 0 0 15px;
  color: #222;
}
h1 { font-size: 2.2rem; font-weight: 600; }
h2 { font-size: 1.8rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 500; }


/* -------- Buttons -------- */
.btn,
.read-more {
  display: inline-block;
  padding: 8px 16px;
  background: var(--primary, #0077B6);
  color: #fff;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.btn:hover,
.read-more:hover {
  background: var(--accent, #F4A261);
  color: #000; /* <-- Add this line for contrast */
}


/* hero section */

 .blog-hero {
     
   background: linear-gradient(135deg, var(--primary), var(--secondary, #48CAE4));
   color: #fff;
   padding: 30px 15px;
   text-align: center;
   border-radius: 0 0 0px 0px;
   width: 100% !important;
   padding-top: 5rem;
 }








.blog-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 6px;
}
.blog-hero p {
  font-size: 1.5rem;
  opacity: 0.9;
}










/* ==============================
   Blog Layout
   ============================== */
.blog-container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
  padding: 30px;
  max-width: 1200px;
  margin: auto;
}







/* ==============================
   Blog Posts Grid
   ============================== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.post-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%; /* Equal height cards */
}

.post-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-content h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.post-content h2 a:hover {
  color: var(--accent); /* Highlight blog heading on hover */
}

.post-content p {
  color: var(--text-light);
  flex-grow: 1; /* Push button to bottom */
}

/* ==============================
   Read More Button
   ============================== */
.read-more {
  display: inline-block;
  padding: 8px 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  text-align: center;
  transition: background 0.3s ease;
  margin-top: auto; /* Force button to bottom */
}

.read-more:hover {
  background: var(--accent, #F4A261);
  color: #000; /* <-- Add this line for contrast */
}

/* ==============================
   Sidebar
   ============================== */
.blog-sidebar {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* ==============================
   Pagination
   ============================== */
.pagination {
  margin-top: 30px;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: var(--text-dark);
}

.pagination .current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ==============================
   Responsive Styles
   ============================== */

/* Tablet (<= 1024px) */
@media (max-width: 1024px) {
  .blog-container {
    grid-template-columns: 2fr 1fr;
    padding: 15px;
  }

  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-card {
    margin-bottom: 25px;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .blog-container {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    margin-top: 30px;
  }

  .post-card img {
    height: auto;
  }

  .post-content h2 {
    font-size: 1.2rem;
  }

  .post-content p {
    font-size: 0.9rem;
  }

  .blog-hero h1 {
    font-size: 2rem;
  }

  .blog-hero p {
    font-size: 1rem;
  }
}

/* Small Mobile (<= 480px) */
@media (max-width: 480px) {
  .blog-hero {
    padding: 100px 15px;
  }

  .blog-hero h1 {
    font-size: 1.6rem;
  }

  .blog-hero p {
    font-size: 0.95rem;
  }

  .post-content h2 {
    font-size: 1rem;
  }

  .post-content p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .read-more {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}





/* single.php css */

.single-container {
  max-width: 800px;
  margin: 80px auto; /* header fixed hai isliye top margin */
  padding:  20px;     
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 10px;
}

.post-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.post-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

.post-thumb img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.post-content {
  line-height: 1.7;
  color: #333;
}

.post-comments {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid var(--secondary);
}

.post-comments h2,
.post-comments h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* Individual Comment */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.comment-list li {
  margin-bottom: 25px;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
}

.comment-author {
  font-weight: bold;
  color: var(--accent);
}

.comment-meta {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 10px;
}

/* Comment Form Styling */
.comment-respond {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.comment-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--secondary);
  outline: none;
  box-shadow: 0 0 4px rgba(72,202,228,0.3);
}

.comment-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit Button */
.comment-form input[type="submit"] {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1rem;
}

.comment-form input[type="submit"]:hover {
  background: var(--accent, #F4A261);
  color: #000; /* <-- Add this line for contrast */
}

/* Save my info checkbox fix */
.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 8px; /* space between checkbox and text */
  margin-bottom: 15px;
  font-size: 0.9rem; /* smaller text */
  color: #555;
}

.comment-form-cookies-consent input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
}





/* contact us page styling */




/* Contact Page Styling */
.contact-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-container h1 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-container p {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.contact-form label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form .btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
}

.contact-form .btn-primary:hover {
  background: var(--accent, #F4A261);
  color: #000; /* <-- Add this line for contrast */
}




.hero-section, .terms-hero {
     background: linear-gradient(135deg, var(--primary), var(--secondary, #48CAE4));
   
}



.hero-title, .terms-hero-content {
    text-align: center;
}


.hero-subtitle {
   text-align: center;
   font-size: 1rem;
   font-style: italic;
   color: white;
}



.contact-info {
    text-align: left;
    max-width: 600px;
    margin: 40px auto; /* center block lekin text left aligned */
    padding: 20px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0077B6;
}

.contact-info p {
    text-align: left;
    font-size: 1.1rem;
    margin: 8px 0;
    color: #333;
}

.contact-info a {
    color: #0077B6;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}




/*    CONTACT SOCIAL */


.contact-social {
  display: flex;
  gap: 2rem;
}

.contact-social a {
  color: var(--primary);
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-social a:hover {
  color: var(--accent);
  transform: scale(1.1);
}










/* === Tools Page Styling === */




/* Tools Page Styles */
.hero-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: #fff;
}
.hero-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}







/* Tools Grid Layout */
/* Tools Grid Layout */
/* Tools Grid */
.tools-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important; /* 3 per row */
  gap: 20px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 15px;
}

/* Tool Card */
.tool-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 550px; /* fixed height to align buttons */
}

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

/* Thumbnail */
.tool-thumb img {
  width: 100%;
  height: 220px; /* fixed height */
  object-fit: cover; /* crop nicely */
  border-bottom: 1px solid #ddd;
  display: block;
  margin: 0 auto;
}

/* Card Body */
.tool-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Title */
.tool-title {
  font-size: 1.1rem;
  margin: 0 0 10px;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
  white-space: normal; /* allow full title */
  overflow: visible;   /* no cutting */
  height: auto;        /* auto height */
}

/* Excerpt */
.tool-excerpt {
  font-size: 0.9rem;
  color: #555;
  flex-grow: 1;
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* limit lines (approx 20 words) */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

/* Open Tool Button */
.tool-btn {
  display: block;
  padding: 10px;
  background: #0077B6;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s ease;
  margin-top: auto; /* keeps buttons aligned */
}

.tool-btn:hover {
  background: #005f86;
}



/* Filter Buttons */
/* Filter Button */
.filter-toggle {
  background: #0077B6;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
}
.filter-toggle:hover {
  background: #005f86;
}

/* Dropdown */
.filter-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 110%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 10px;
  min-width: 200px;
  z-index: 100;
}

.filter-dropdown a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #0077B6;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.filter-dropdown a:hover,
.filter-dropdown a.active {
  background: #0077B6;
  color: #fff;
}












/* Pagination */
.tools-pagination {
  margin: 30px auto 60px auto;  /* top-bottom spacing */
  text-align: center;
}
.tools-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 10px;
}
.tools-pagination li {
  display: inline-block;
}
.tools-pagination a,
.tools-pagination span {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: #0077B6;
}
.tools-pagination .current {
  background: #0077B6;
  color: #fff;
  border-color: #0077B6;
}

/* Responsive */
@media (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .tools-grid {
    grid-template-columns: 1fr !important;
  }
}





/* Tools Intro Section */
.tools-intro {
  padding: 3rem 5%;
  background: #f8f9fa;
  text-align: center;
}

.tools-intro-container {
  max-width: 800px;
  margin: 0 auto;
}

.tools-intro h2 {
  font-size: 2rem;
  color: #0077B6; /* theme primary */
  margin-bottom: 1rem;
}

.tools-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}



/* SINGLE-TOOLS.PHP CSS */

/* =========================================================
   SINGLE TOOL PAGE - CLEAN & CENTERED LAYOUT
   ========================================================= */

/* --- Page Wrapper --- */
.single-tool-page {
  padding: 60px 20px;
  background: #f9f9fb;
}

/* --- Article Wrapper --- */
.single-tool {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
}

/* --- Tool Title --- */
.single-tool-page h1.tool-title {
  text-align: center;
  font-size: 2rem;
  color: #0077B6; /* Primary Theme Color */
  margin-bottom: 20px;
}

/* --- Tool Content (Post Description) --- */
.single-tool-page .tool-content {
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #333;
}

/* --- Gallery Section --- */
.tool-gallery {
  margin-bottom: 20px;
  text-align: center;
}
.tool-featured {
  max-width: 280px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.tool-featured:hover {
  transform: scale(1.05);
}

/* --- Download Button --- */
.tool-download {
  text-align: center;
  margin-top: 20px;
}
.tool-download .btn.download-btn {
  background: #48CAE4;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.tool-download .btn.download-btn:hover {
  background: #0077B6;
}

/* =========================================================
   TOOL DISPLAY CLEANUP (Remove Borders, Backgrounds, Shadows)
   ========================================================= */
.single-tool-page .tool-content,
.single-tool-page .tool-gallery,
.single-tool-page .tool-download,
.single-tool-page article.single-tool,
.single-tool-page .tool-live,
.single-tool-page .tool-page-wrapper,
.single-tool-page .tool-page-container {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* =========================================================
   UNIVERSAL TOOL CENTERING (For all embedded shortcodes)
   ========================================================= */
.single-tool-page [id*="-tool"],
.single-tool-page .tool-wrapper,
.single-tool-page .tool-container,
.single-tool-page .tool,
.single-tool-page form,
.single-tool-page iframe,
.single-tool-page > div {
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
}

/* Force form elements and outputs inside tools to center */
.single-tool-page .tool-live,
.single-tool-page .tool-output,
.single-tool-page form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* =========================================================
   RESPONSIVE FIXES
   ========================================================= */
@media (max-width: 768px) {
  .single-tool {
    padding: 20px;
  }
  .tool-featured {
    max-width: 200px;
  }
  .single-tool-page h1.tool-title {
    font-size: 1.6rem;
  }
  .single-tool-page .tool-content {
    font-size: 1rem;
  }
}






/* =========================================================
   Make TextMani Transparent (Match Other Tools)
   ========================================================= */
/* =========================================================
   Make all tools look like TextMani (Glass Card Layout)
   ========================================================= */
.single-tool-page [id*="-tool"] > div {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  padding: 1.5rem;
  width: 92%;
  max-width: 700px;
  margin: 0 auto;
}







/* ARCHIVE-TOOLS.PHP CSS*/ 

.tools-archive {
  padding: 100px 20px 60px;
}

.archive-title {
  text-align: center;
  font-size: 2rem;
  color: #0077B6;
  margin-bottom: 40px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.tool-card {
  background: transparent;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: center;
}

.tool-card h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}

.tool-excerpt {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: #666;
}

.tool-card .btn-primary {
  background: #0077B6;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.tool-card .btn-primary:hover {
  background: #005f8c;
}

.pagination {
  margin-top: 30px;
  text-align: center;
}

/* ABOUT US PAGE CSS   */

/* Hide default WP page titles */
.page .entry-title,
.page-title {
  display: none !important;
}

.about-page {
  padding: 40px 20px;
  max-width: 950px;
  margin: 0 auto;
  line-height: 1.7;
  overflow-x: hidden !important; /* stop scrollbar */
}

.about-page h1, 
.about-page h2 {
  color: #0077B6;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 700;
}

/* ✅ Only indent inside .about-section */
.about-section p,
.about-section ul {
  padding-left: 2rem;
}


/* FULL WIDTH HERO */
.about-hero {
  width: 100%;
  margin: 0;
  padding: 100px 20px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: #fff;
  text-align: center;
  box-sizing: border-box; /* ✅ padding included inside width */
}




.about-hero .hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-hero .tagline {
  font-size: 1.3rem;
  font-weight: 300;
}

/* Lists */
.about-features ul,
.about-why ul {
  list-style: none;
  padding-left: 2rem;
}

.about-features li,
.about-why li {
  background: #f8f9fa;
  margin: 8px 0;
  padding: 10px 15px;
  border-left: 4px solid #0077B6;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.about-features li:hover,
.about-why li:hover {
  background: #eaf7fc;
}

/* Founder */
.about-founder {
  margin: 40px 0;
}

.founder-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Steps */
.about-how .steps {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
  padding-left: 0;
}

.about-how .step {
  flex: 1;
  text-align: center;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.about-how .step:hover {
  transform: translateY(-5px);
  background: #eaf7fc;
}

.about-how .step-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}

/* CTA */
.about-cta {
  text-align: center;
  margin: 50px 0 20px;
}

.about-cta .btn {
  display: inline-block;
  margin: 8px;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.explore-btn {
  background: #F4A261;
  color: #fff;
}

.explore-btn:hover {
  background: #e07a28;
}

.secondary-btn {
  background: #0077B6;
  color: #fff;
}

.secondary-btn:hover {
  background: #005f87;
}

/* Responsive */
@media (max-width: 768px) {
  .about-how .steps {
    flex-direction: column;
  }
}






/* 
=================================================================
                 comments.php CSS
=================================================================
*/



.comments-area {
  margin-top: 40px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
}
.comment-list {
  list-style: none;
  padding: 0;
}
.comment-list li {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.comment-author {
  font-weight: 600;
}
.comment-meta {
  font-size: 13px;
  color: #666;
}
.comment-content {
  margin-top: 8px;
}
.comment-form textarea {
  width: 100%;
  border-radius: 6px;
  min-height: 100px;
}
.btn-comment {
  background: #0077b6;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}
.btn-comment:hover {
  background: #005f8d;
}





/*
=======================================================
                comment by author 
=======================================================





