.close-btn {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;  /* Adjust position if needed */
    color: var(--clr-black);
    font-size: 28px;
    transform: rotate(45deg);
    cursor: pointer;
  }
  

  .hidden-text {
    display: none;
  }
  



  /* Hide on desktop (show only on mobile) */
.hide_desktop {
    display: none;
  }
  
  @media screen and (max-width: 768px) {
    .hide_desktop {
      display: block;
    }
  }
  
  /* Hide on mobile (show only on desktop) */
  .hide_mobile {
    display: block;
  }
  
  @media screen and (max-width: 768px) {
    .hide_mobile {
      display: none;
    }
  }
  
  /* new header module */

  
/* new category header module */


/* new category header model end */

/* new author */
/* General Styles */
.author-info {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1250px;
    margin: 20px auto;
    transition: all 0.3s ease-in-out;
}

/* Author Image */
.author-image {
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    width: 90px;
    height: 90px;
    border: 3px solid #d9232d;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Author Name */
.author-name {
    font-size: 1.3rem;
    color: #d9232d;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Author Bio */
.author-bio {
    font-size: 1rem;
    color: #555;
    margin: 0;
}


/* Responsive */
@media (max-width: 480px) {
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin-bottom: 10px;
    }
}






/* copy footer right css */


/* Footer Title Styling */
/* Footer Title Styling */
/* Footer Title Styling */
/* Footer Title Styling */
.footer-title {
    color: white; /* Title in white */
    font-size: 20px;
    font-weight: bold;
    position: relative; /* Ensure the underline is positioned correctly */
    padding-bottom: 5px; /* Add some padding to create space for the underline */
    text-align: left; /* Align left on desktop */
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #efffa8; /* Underline color */
    bottom: 0;
    left: 0;
}

.footer-title span {
    color: #efffa8; /* Make span pink inside the title */
}

/* Footer Paragraph Styling */
.footer-widget p {
    color: white; /* Paragraph in white */
    font-size: 16px;
    line-height: 1.5;
    text-align: left; /* Align left on desktop */
}

/* Optional: Add some padding for better spacing */
.footer-widget {
    padding: 10px 0;
}

/* Footer Content Styling */
.footer-content {
    max-width: 600px;
    margin: 10px auto; /* Reduced vertical margin */
    padding: 10px;
    text-align: center;
    background-color: #222;
    border-radius: 6px;
    line-height: 1.4; /* Adjusted line height */
    color: #fff;
}

.footer-content p {
    margin: 5px 0; /* Reduced vertical spacing */
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* Reduced spacing between icon and text */
}

.footer-content i {
    color: #007bff;
    font-size: 16px; /* Slightly smaller icons */
}

.footer-content a {
    text-decoration: none;
    color: #efffa8; /* Link color pink */
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.footer-content a:hover {
    text-decoration: underline;
    color: #efffa8; /* Darker pink on hover */
}

/* Responsive Design */
@media (max-width: 480px) {
    .footer-title {
        text-align: center; /* Center align on mobile */
    }

    .footer-widget p {
        text-align: center; /* Center align on mobile */
    }

    .footer-content {
        max-width: 90%;
        padding: 8px;
    }

    .footer-content p {
        font-size: 14px;
        flex-direction: column;
        text-align: center; /* Center align on mobile */
        gap: 4px; /* Reduce spacing further on mobile */
    }

    .footer-content i {
        margin-bottom: 2px;
    }
}

/* Close Button */
.close-btn {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;  /* Adjust position if needed */
    color: var(--clr-black);
    font-size: 28px;
    transform: rotate(45deg);
    cursor: pointer;
}

/* Hidden Text */
.hidden-text {
    display: none;
}

/* Hide on desktop (show only on mobile) */
.hide_desktop {
    display: none;
}

@media screen and (max-width: 768px) {
    .hide_desktop {
        display: block;
    }
}

/* Hide on mobile (show only on desktop) */
.hide_mobile {
    display: block;
}

@media screen and (max-width: 768px) {
    .hide_mobile {
        display: none;
}

/* new header module */

/* new category header module */

/* new category header model end */

/* new author */
/* General Styles */
.author-info {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1250px;
    margin: 20px auto;
    transition: all 0.3s ease-in-out;
}

/* Author Image */
.author-image {
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    width: 90px;
    height: 90px;
    border: 3px solid #d9232d;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Author Name */
.author-name {
    font-size: 1.3rem;
    color: #d9232d;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Author Bio */
.author-bio {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 480px) {
    .author-info {
        flex-direction: column;
        text-align: center;
    }

    .author-image {
        margin-bottom: 10px;
    }
}
/* skip ads */

		



		