    body, h1, h2, h3, h4, h5, h6, p, ul, li, a, button {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Noto Sans", serif;
      scroll-behavior: smooth;
    }
.tool{
    padding:20px 50px;
    background:#fff;
    overflow:hidden;
    margin-bottom:50px;
    margin-top:-45px;
    width:80%;
    margin-left:auto;
    margin-right:auto;
    background-color: #fff;
    border: 1px dashed #2e83fb;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .3);
    border-radius: 10px;
    z-index:1;
    position:relative;
    align-items:center;
    text-align:center;
}
.ads{
    margin:20px auto;
    text-align:center;
    max-width:100%;
}
   
 /* Hero Section Styling */
.multiple-templates {
  background: linear-gradient(135deg, #3BCEB3, #191970); /* Light gradient */
  height: 300px; /* Full viewport height */
  position: relative;
  overflow: hidden;
  display: flex; /* Enable Flexbox */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  text-align: center; /* Center align text */
  z-index: 0;
}

/* Background Images Styling */
.multiple-templates .section-bg img {
  position: absolute;
  opacity: 1;
  transition: transform 10s ease-in-out, opacity 10s ease-in-out;
}

.multiple-templates .section-bg img:first-child {
  left: 0;
  top: 0;
  z-index: -1;
  animation: moveImage1 0s infinite alternate;
  height:300px;
}
.multiple-templates .section-bg img:nth-child(2) {
  right: 0;
  top: 0;
  height:300px;
  animation: moveImage2 0s infinite alternate;
}

.multiple-templates .section-bg img:nth-child(3) {
  right: 60px;
  top: 220px;
  animation: moveImage3 8s infinite alternate;
}
.multiple-templates .section-bg img:nth-child(4) {
  left: 160px;
  top: 40px;
  animation: moveImage3 8s infinite alternate;
}
.multiple-templates .section-bg img:nth-child(5) {
  left: 81%;
  top: 50px;
  animation: moveImage3 8s infinite alternate;
}
.multiple-templates .section-bg img:nth-child(6) {
  right: 48%;
  top: -35px;
  animation: moveImage3 0s infinite alternate;
}
.multiple-templates .section-bg img:last-child {
  left: 80px;
  top: 70%;
  transform: translateY(-50%);
  animation: moveImage4 15s infinite alternate;
}

/* Hero Content Styling */
.multiple-templates .section-content {
  max-width: 800px; /* Limit content width */
  padding: 20px;
  z-index: 1;
}

.multiple-templates .badge {
  display: inline-block;
  background: #4BC1C9;
  color: navy;
  font-size: 1rem;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.multiple-templates .title-bar h2 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
  background: linear-gradient(90deg, #fff, #FFD700, #fff, #36C0F4); /* Gradient colors */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.multiple-templates .title-bar h2 span img {
    display: block;
    text-align: right;
    line-height: 0;
}
  

.multiple-templates p {
  font-size: 1.4rem;
  color: #00FFFF;
  margin-top: 0;
}

/* Animation Keyframes */
@keyframes moveImage1 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(20px, 20px) scale(1.1);
  }
}

@keyframes moveImage2 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-20px, -10px) scale(1.1);
  }
}

@keyframes moveImage3 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(15px, -15px) scale(1.1);
  }
}

@keyframes moveImage4 {
  from {
    transform: translate(0, -50%) scale(1);
  }
  to {
    transform: translate(10px, -60%) scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .multiple-templates {
    padding: 20px;
  }

  .multiple-templates .title-bar h2 {
    font-size: 2rem;
  }

  .multiple-templates p {
    font-size: 1rem;
  }
}
/*-------------------------features----------------------------------*/
/* General Styling */
.features-section {
  padding: 50px 20px;
  background-color: #EDEDED;
  text-align: center;
}

.f-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.section-description {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Feature Grid Styling using CSS Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 items per row */
  gap: 30px;
  margin-bottom: 50px;
}

.feature-box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Gradient Feature Title */
.feature-title {
  font-size: 1.4rem;
  font-weight: bold;
  background: linear-gradient(90deg, #673AB7, #4012E0, #06AD50);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

/* Icon Styling */
.feature-icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

/* Feature Description */
.feature-description {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

/* Responsive Design for Smaller Devices */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row on tablets and smaller screens */
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr; /* 1 item per row on mobile screens */
  }
}

/*-------------------------faq----------------------------------*/
/* FAQ Section Styling */
.faq-section {
  padding: 50px 20px;
  background-color: #F8FAFC;
  text-align: center;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

/* FAQ Item Styling */
.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.faq-toggle {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 1.2rem;
  background-color: inherit;
  color: inherit;
  text-align: left;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.faq-toggle:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.faq-answer {
  padding: 20px;
  background-color: #ffffff;
  display: none; /* Hidden by default */
  color: rgba(0, 0, 0, 0.7);
  text-align:left;
}

/* Show the answer when the FAQ is active */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-item {
    margin-bottom: 15px;
  }

  .faq-toggle {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}

/*-------------------------footer----------------------------------*/
/* Footer Styling */
.footer {
  background-color: #2C2C2C;
  color: white;
  padding: 40px 20px;
}

.footer .ft-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  margin-bottom: 20px;
  margin-right: 10px;
}

.footer-left {
  flex: 0 0 35%;
}

.footer-menu {
  flex: 0 0 18%;
}

.footer-contact {
  flex: 0 0 20%;
}

.footer-logo {
  max-width: 70px;
  margin-bottom: 15px;
}

.footer-about h4,
.footer-menu h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #FF6F61; /* Accent color for headers */
}

.footer-about p,
.footer-menu ul,
.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
}

.footer-menu ul li {
  margin: 8px 0;
}

.footer-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
  color: #FF6F61; /* Hover color */
}

.footer-social {
  margin-top: 20px;
}

.social-icon {
  margin-right: 10px;
  display: inline-block;
}

.social-icon img {
  width: 25px;
  height: 25px;
  padding:5px;
  border-radius:100%;
  border:1px solid #ddd;
  background:white;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
  }

  .footer-left,
  .footer-menu,
  .footer-contact {
    flex: 0 0 100%;
    text-align: center;
  }

  .footer-logo {
    max-width: 120px;
    margin-bottom: 15px;
  }

  .footer-social {
    text-align: center;
    margin-top: 15px;
  }

  .footer-social a {
    margin-right: 12px;
  }
}
.footer-rows {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
}

/* Left Section (Copyright) */
.footer-copyright {
  flex: 1;
  background-color: #FFC107;
  padding: 20px 50px;
  text-align: left;
  font-size: 1rem;
  color:#333;
}

/* Right Section (Credits) */
.footer-love {
  flex: 1;
  background-color: #3F51B5;
  padding: 20px;
  text-align: center;
  font-size: 1rem;
  color: white;
}

/* Heart Styling */
.footer-love .heart {
  color: red;
  font-size: 1rem;
}

/*-------------------------back----------------------------------*/
/* Styling for the Back to Top button */
#backToTopBtn {
  position: fixed;
  bottom: 50px;
  right: 20px;
  background-color: #FFC107;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
  display: none; /* Hidden by default */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

/* Hover effect */
#backToTopBtn:hover {
  background-color: #FF6F61;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Show button when scrolled down */
#backToTopBtn.show {
  display: block;
}
/*-------------------------info----------------------------------*/
  /* Content Section Styling */
.content-section {
  padding: 50px 20px;
  background-color: transparent;
  text-align: center;
}

.i-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title Styling */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

/* Section Description Styling */
.section-description {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Paragraphs */
.content-paragraphs {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.content-paragraph {
  flex: 1 1 30%; /* 3 items per row */
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}

.paragraph-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #FF6F61;
  margin-bottom: 15px;
}

.content-paragraph p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

/* Steps Section */
.steps {
  margin-bottom: 50px;
}

.step {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #29B6BF;
  margin-bottom: 15px;
}

.step p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

/* Responsive Design for Smaller Devices */
@media (max-width: 1024px) {
  .content-paragraphs {
    flex-direction: column; /* Stack paragraphs vertically */
  }

  .content-paragraph {
    flex: 1 1 100%; /* Full width for smaller devices */
  }
}

a {
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: none;
}

/* General styles for the content section */
.content-section1 {
  padding: 50px 15px;
  background-color: #fff;
  color: #333;
}

.content-section .containerc {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.content-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #007BFF; /* Adjust the color as needed */
}

.content-article {
  text-align: left;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #0056b3; /* Adjust the color as needed */
}

.content-article p {
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555;
}
  .blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto; /* Center the container */
  }

  .blog-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

 .blog-item img {
  width: 100%; /* Ensures the image fits the container width */
  height: 200px; /* Keeps the height uniform */
  object-fit: cover; /* Ensures the image fills the box while maintaining aspect ratio */
  border-bottom: 1px solid #ddd; /* Keeps the border at the bottom */
}


  .blog-content {
    padding: 15px;
  }

  .blog-content h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: #007BFF;
    text-transform: capitalize;
  }

  .blog-content p {
    margin: 5px 0;
    color: #555;
  }

  .blog-content p strong {
    color: #333;
  }

  .read-more {
    display: inline-block;
    margin-top: 10px;
    background: #007BFF;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
  }

  .read-more:hover {
    background: #0056b3;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .blog-item img {
      height: 150px; /* Smaller image height on smaller screens */
    }

    .read-more {
      padding: 8px 15px;
    }
  }
  
.blog-post {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-post h1 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 15px;
  text-align: center;
}

.blog-post p {
  font-size: 1rem;
  color: #555;
  margin: 10px 0;
}

.blog-post img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border-radius: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-post p strong {
  color: #333;
}

@media (max-width: 768px) {
  .blog-post {
    padding: 15px;
  }

  .blog-post h1 {
    font-size: 1.75rem;
  }

  .blog-post p {
    font-size: 0.95rem;
  }
}
 .blogs{
        margin:10px auto;
        padding:50px;
        width:90%;
        border:2px solid #ddd;
    }
    .blog-image {
  width: 100%; /* Full width of the container */
  height: auto; /* Set a fixed height */
  object-fit: cover; /* Ensures the image covers the container without distortion */
  border-radius: 10px; /* Adds rounded corners */
  border: 1px solid #ddd; /* Optional: border for better visual separation */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for aesthetics */
  display: block; /* Ensures proper alignment */
  margin: 20px auto; /* Centers the image horizontally within the section */
}
