/**
 * Custom CSS for the application
 */

/***
 * Font Faces
*/
/* @font-face {
    font-family: 'Anek Devanagari';
    src: url('/assets/fonts/AnekDevanagari-ExtraLight.woff') format('woff');
    font-weight: 200; 
    font-style: normal;
}

@font-face {
    font-family: 'Anek Devanagari';
    src: url('/assets/fonts/AnekDevanagari-Light.woff') format('woff');
    font-weight: 300; 
    font-style: normal;
}

@font-face {
    font-family: 'Anek Devanagari';
    src: url('/assets/fonts/AnekDevanagari-Regular.woff') format('woff');
    font-weight: 400; 
    font-style: normal;
} */

@font-face {
    font-family: 'Anek Devanagari';
    src: url('/assets/fonts/AnekDevanagari-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Anek Devanagari';
    src: url('/assets/fonts/AnekDevanagari-SemiBold.woff2') format('woff2');
    font-weight: 600; 
    font-style: normal;
}

@font-face {
    font-family: 'Anek Devanagari';
    src: url('/assets/fonts/AnekDevanagari-Bold.woff2') format('woff2');
    font-weight: 700; /* Bold */
    font-style: normal;
}

/* @font-face {
    font-family: 'Anek Devanagari';
    src: url('/assets/fonts/AnekDevanagari-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
} */


/***
 * Home Page Styles
*/
h1,h2{
    font-family: "Anek Devanagari", serif;
    font-weight: 600;
}
.font-h{
    font-family: "Anek Devanagari", serif;
    font-weight: 600;
}
.card{
    padding: 15px !important;
    border: 1px solid #efefef;
    border-radius: 8px; /* Optional: Adds rounded corners for a modern look */
}
.card-title {
    font-family: "Anek Devanagari", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    font-size: 1.6em !important;
}
.category-heading {
    margin-top: 30px;
    font-family: "Anek Devanagari", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    font-size: 3.2em !important;
}

.tools {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.tool-card {
    position: relative;
    width: 300px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
    z-index: 0;
    background-color: #ffffff;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
}
.bi-youtube{
    color: #de2a08;
}
.width-100{
    width: 100% !important;
}
.height-90{
    height: 90px !important;
}
.mt-5px{
    margin-top: 5px
}
.ip-card{
    border: 1px solid rgb(236, 236, 236);
    border-radius: 2px;
    padding: 10px 15px 10px 15px;
}
.table-bordered{
    border: 1px solid rgb(236, 236, 236);
    border-radius: 5px !important;
}

/* Green Card */
.green {
    border-left: 6px solid #66bb6a;
}

/* Blue Card */
.blue {
    border-left: 6px solid #2f8dff;
}

/* Peach Card */
.peach {
    border-left: 6px solid #ffb480;
}

/* Purple Card */
.purple {
    border-left: 6px solid #9c27b0;
}

/* Pink Card */
.pink {
    border-left: 6px solid #ff4081;
}

/* Hover card effect */
.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15),
        0px 10px 30px rgba(0, 0, 0, 0.1);
}

/* Soft Green Gradient */
.tool-card.green:hover {
    background: linear-gradient(
        135deg,
        #d0f8e3,
        #f3fdf5
    ); /* Soft light green to off-white */
    box-shadow: 0px 20px 40px rgba(102, 187, 106, 0.3); /* Green shadow */
}

/* Soft Blue Gradient */
.tool-card.blue:hover {
    background: linear-gradient(
        135deg,
        #cce7ff,
        #f3fdfd
    ); /* Soft light blue to off-white */
    box-shadow: 0px 20px 40px rgba(47, 141, 255, 0.3); /* Blue shadow */
}

/* Soft Peach Gradient */
.tool-card.peach:hover {
    background: linear-gradient(
        135deg,
        #ffe1b3,
        #fdf3f0
    ); /* Soft peach to off-white */
    box-shadow: 0px 20px 40px rgba(255, 180, 128, 0.3); /* Peach shadow */
}

/* Soft Purple Gradient */
.tool-card.purple:hover {
    background: linear-gradient(
        135deg,
        #f3e5f5,
        #fdf3f9
    ); /* Soft light purple to off-white */
    box-shadow: 0px 20px 40px rgba(156, 39, 176, 0.3); /* Purple shadow */
}

/* Soft Pink Gradient */
.tool-card.pink:hover {
    background: linear-gradient(
        135deg,
        #f8bbd0,
        #fdf3f6
    ); /* Soft light pink to off-white */
    box-shadow: 0px 20px 40px rgba(255, 64, 129, 0.3); /* Pink shadow */
}

/* Title and description styles */
.tool-card .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.tool-card h3 {
    font-size: 1.3em !important;
    margin: 0;
    color: black; /* Default title color remains black */
    transition: color 0.3s ease; /* Transition for color change on hover */
}

.tool-card p {
    font-size: 0.9em;
    color: #555;
    margin-top: 0px;
    max-width: 100%; /* Limit the width of the description */
}

/* Image on right side */
.tool-card img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    z-index: 99;
    border-radius: 10px;
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.15); */
}

.tool-sm-img {
    width: 40px !important;
    height: 40px !important;
    object-fit: cover;
    z-index: 99;
    border-radius: 7px !important;
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.15); */
}

/* Semi-circle effect on hover */
.tool-card::before,
.tool-card::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
    opacity: 0; /* Hide semi-circles initially */
}

/* Position the semi-circles on the corners */
.tool-card::before {
    top: -40px;
    left: -40px;
}

.tool-card::after {
    bottom: -40px;
    right: -40px;
}

/* Expand the bottom-right semi-circle on hover */
.tool-card:hover::after {
    bottom: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
}

/* Show the top-left semi-circle and expand it on hover */
.tool-card:hover::before {
    opacity: 1; /* Make the top-left semi-circle visible */
    top: -60px;
    left: -60px;
    width: 120px;
    height: 120px;
}

/* Match semi-circle colors on hover */
.tool-card.green:hover::before {
    background-color: rgba(102, 187, 106, 0.3); /* Light green */
}

.tool-card.green:hover::after {
    background-color: rgba(102, 187, 106, 0.3); /* Light green */
}

.tool-card.blue:hover::before {
    background-color: rgba(47, 141, 255, 0.3); /* Light blue */
}

.tool-card.blue:hover::after {
    background-color: rgba(47, 141, 255, 0.3); /* Light blue */
}

.tool-card.peach:hover::before {
    background-color: rgba(255, 180, 128, 0.3); /* Light peach */
}

.tool-card.peach:hover::after {
    background-color: rgba(255, 180, 128, 0.3); /* Light peach */
}

.tool-card.purple:hover::before {
    background-color: rgba(156, 39, 176, 0.3); /* Light purple */
}

.tool-card.purple:hover::after {
    background-color: rgba(156, 39, 176, 0.3); /* Light purple */
}

.tool-card.pink:hover::before {
    background-color: rgba(255, 64, 129, 0.3); /* Light pink */
}

.tool-card.pink:hover::after {
    background-color: rgba(255, 64, 129, 0.3); /* Light pink */
}

/* Category container */
.category-container {
    background: #ffffff;
    padding: 30px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1050px;
    margin: 40px auto;
    text-align: center;
    border-top: 5px solid #b928ed;
}
/* Category container */
.search-container {
    background: #ffffff;
    padding: 10px 0px;
    border-radius: 12px;
    max-width: 1050px;
    margin: 0px auto;
    text-align: center;
    display: none;
}

/* Category heading */
.category-heading {
    font-family: "Anek Devanagari", serif;
    font-size: 3.4em;
    font-weight: 700;
    color: transparent;
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-transform: capitalize;
    background: linear-gradient(120deg, #b928ed, #4107a6);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Simple HR */
.category-heading hr {
    display: none;
    width: 10%; /* Smaller HR width */
    border: 0;
    height: 5px;
    /* margin: -10px auto; */
    opacity: 1 !important;
    background: linear-gradient(90deg, #dc28ed, #4e04ee); /* Subtle gradient */
    
}

/* Category description */
.category-description {
    font-size: 18px;
    line-height: 1.7;
    color: #373737;
    margin-top: 15px;
    padding: 0px 70px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .category-heading {
        font-size: 32px !important;
    }

    .category-description {
        font-size: 16px;
        padding: 0px 0px;
    }
}

/***
 * Siderbar Styles
*/

/* Sidebar container */
.sidebar-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Individual sidebar card */
.sidebar-card {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit text color */
    cursor: pointer;
}

/* Hover effect */
.sidebar-card:hover {
    background: linear-gradient(145deg, #4107a6, #b928ed);
    /* background: linear-gradient(145deg, #4107a6e8, #b928edfc);  */
    color: #ffffff; /* White text on hover */
    transform: scale(1.03); /* Slight zoom effect */
    /* box-shadow: 0px 6px 15px rgba(65, 7, 166, 0.4); */
    box-shadow: 0px 6px 15px rgb(115 5 248 / 40%);
}

/* Hover effect */
.most-visited-card:hover {
    background: linear-gradient(145deg, #5d02ff, #29eed4) !important;
    /* background: linear-gradient(145deg, #4107a6e8, #b928edfc);  */
    color: #ffffff; /* White text on hover */
    transform: scale(1.03); /* Slight zoom effect */
    box-shadow: 0px 6px 15px rgb(45 221 215 / 35%) !important;
}

/* Card icon */
.sidebar-icon {
    font-size: 22px;
    color: #4007a5; /* Primary theme color */
    margin-right: 12px;
    transition: color 0.3s ease;
}

/* Icon hover effect */
.sidebar-card:hover .sidebar-icon {
    color: #ffffff; /* White icon on hover */
}

/* Card title */
.sidebar-title {
    font-family: "Anek Devanagari";
    font-size: 20px;
    font-weight: 500;
    margin-top: 6px;
    color: #4007a5; /* Neutral text color */
    transition: color 0.3s ease;
}

/* Title hover effect */
.sidebar-card:hover .sidebar-title {
    color: #ffffff; /* White text on hover */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .sidebar-container {
        max-width: 100%;
        padding: 0px;
    }

    .sidebar-card {
        padding: 10px 10px;
        box-shadow: none;
    }

    .sidebar-icon {
        font-size: 20px;
    }

    .sidebar-title {
        font-size: 16px;
    }

    .sidebar-image {
        width: 100%;
    }

}

@media (min-width: 769px) and (max-width: 1024px) {
    .sidebar-image {
        width: 100%;
    }
    #right-sidebar{
        width: 100%;
        max-width: 275px;
    }
}

/***
 * Footer Styles
*/
/* Footer Links List */
.footer-list > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 15px !important;
}

.footer-list > ul li {
    margin-bottom: 7px;
}

.footer-list > ul li a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #363636; /* Neutral grey color */
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px; /* Adds space for underline */
}

.footer-list > ul li a i {
    font-size: 12px;
    color: #4107a6; /* Theme color for icon */
    margin-right: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Effects */
.footer-list > ul li a:hover {
    color: #b928ed; /* Theme color for text */
    transform: translateX(5px); /* Smooth slide effect */
}

.footer-list > ul li a:hover i {
    color: #b928ed; /* Theme color for icon */
    transform: translateX(8px); /* Icon slides further */
}

/* Stylish Underline Effect (extends halfway) */
.footer-list > ul li a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0px;
    width: 0; /* Start with no underline */
    height: 2px;
    background: linear-gradient(90deg, #4107a6, #b928ed);
    transition: width 0.3s ease;
}

.hr-footer{
    border-top: 2px solid #ddd; 
    margin: 20px 0;
}

/* On hover, the underline will extend dynamically */
.footer-list > ul li a:hover::after {
    width: 90%; /* Underline extends to the width of the text */
}


/* Gradient icon text */
.gradient-icon {
    display: inline-block;
    background: linear-gradient(90deg, #4107a6, #b928ed); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Makes the gradient visible initially */
    transition: background 0.4s ease-in-out, -webkit-text-fill-color 0.4s ease-in-out; /* Smooth transition */
}
.social-icon {
    display: inline-block;
    background: linear-gradient(90deg, #f0f0f0, #ffffff); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Makes the gradient visible initially */
    transition: background 0.4s ease-in-out, -webkit-text-fill-color 0.4s ease-in-out; /* Smooth transition */
}

/* Icon container with professional shadow effect */
.icon-container {
    /* background-color: #fff; */
    background: linear-gradient(45deg, #b928ed, #4107a6);
    border-radius: 50%; /* Circular shape */
    width: 35px; /* Adjusted size */
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12),
                0 6px 20px rgba(0, 0, 0, 0.08);  */
    transition: box-shadow 0.4s ease-in-out, transform 0.3s ease-in-out; /* Smooth transition for shadow and scale */
}

/* Hover effect with a clean shadow and gradient background */
.contact-item:hover .icon-container {
    background: linear-gradient(45deg, #b928ed, #4107a6); /* Gradient background */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.16), /* Slightly larger and softer shadow */
                0 10px 24px rgba(0, 0, 0, 0.12); /* Softer outer glow */
    transform: scale(1.1); /* Slight scale up for more impact */
    transition: background 0.4s ease-in-out, box-shadow 0.4s ease-in-out, transform 0.3s ease-in-out; /* Smooth transition */
}
.contact-item:hover .no-decoration {
    color: #b928ed; /* Theme color for icon */
}

/* Icon color changes to gradient smoothly */
.contact-item:hover .gradient-icon {
    background: linear-gradient(90deg, #fff, #fff); /* Change to white gradient for icon */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Makes the gradient visible */
    transition: background 0.4s ease-in-out, -webkit-text-fill-color 0.4s ease-in-out; /* Smooth transition */
}

.contact-item p {
    font-size: 16px;
    margin-left: 2px;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-sugg-text{
    font-family: "Anek Devanagari", serif;
    font-size: 1.8rem;
}


/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-item p {
        margin-left: 0;
        margin-top: 10px !important;
    }
}

/* Hero Section */
.tc-hero {
    background: linear-gradient(135deg, #4107a6, #b928ed);
    padding: 50px 0;
    color: #fff;
}

.tc-hero-heading {
    font-family: "Anek Devanagari", serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.tc-hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.tc-hero-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2 !important;
}

.tc-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tc-image-container::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 60%); */
    background: radial-gradient(circle, rgb(216 165 255 / 66%) 0%, rgb(255 255 255 / 10%) 60%);
    z-index: 1;
    border-radius: 60%;
    filter: blur(30px);
}

@media (max-width: 768px) {
    .tc-hero-heading {
        font-size: 2rem;
    }

    .tc-hero-description {
        font-size: 1rem;
    }
}

/* Search Bar Wrapper */
.tc-search-wrapper {
    position: relative;
    width: 90%; /* Set wrapper width to 70% */
}

/* Search Input Field */
.tc-search-input {
    padding: 12px 20px 12px 50px; /* Add padding on the left for the icon */
    border: 1px solid #ddd;
    border-radius: 25px;
    width: 90%; /* Full width inside the wrapper */
    outline: none;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.87);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Focus animation with glowing shadow */
.tc-search-input:focus {
    border-color: #b928ed; /* Highlight border on focus */
    background-color: rgba(255, 255, 255, 1); /* Brighten background */
    box-shadow: 0 0 15px rgba(185, 40, 237, 0.8); /* Glowing shadow effect */
    transform: scale(1.04); /* Slightly scale the input field for emphasis */
}

/* Search Icon */
.tc-search-icon {
    position: absolute;
    left: 17px; /* Position the icon on the left */
    top: 50%;
    transform: translateY(-50%);
    color: #4107a6; /* Icon color */
    font-size: 17px; /* Icon size */
    z-index: 99;
}
/* Move the search icon slightly to the left when the input is focused */
.tc-search-input:focus + .tc-search-icon {
    left: 5px; /* Move the icon slightly to the left */
}

@media (max-width: 768px) {
    .tc-search-wrapper {
        width: 100%; /* Full width on smaller screens */
    }
    .tc-search-input{
        width: 80%;
    }
}
/* Scroll button styling */
.scroll-down {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4007a5; /* Blue background */
    color: white;
    font-size: 18px;
    border: none;
    cursor: pointer;
    display: none; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    animation: blinkUpDown 2s infinite ease-in-out;
}

/* Animation for blinking and moving up/down */
@keyframes blinkUpDown {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-10px); /* Move up */
    }
}

/* Hover effect for the button */
.scroll-down:hover {
    background-color: #680bff; /* Darker blue when hovered */
}


/* Container for the category */
.category-container {
    background-color: #ffffff; /* Optional background color */
    z-index: 1; /* Ensure text is on top */
}

/* Add SVG circle gradient as a background */
.category-container::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 10%;
    width: 200px; /* Adjust the size as per requirement */
    height: 200px; /* Adjust the size as per requirement */
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"%3E%3Ccircle cx="100" cy="100" r="90" fill="none" stroke="%23b928ed" stroke-width="15" opacity="0.04" /%3E%3C/svg%3E');
    background-size: cover;  /* Adjust image size */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Ensure the image doesn't repeat */
    transform: translate(-50%, -50%); /* Center the circle */
    z-index: -1; /* Place the circle behind the text */
}


.search-btn-text{
    font-style: normal;
}

/* Optional for responsive adjustments */
@media (max-width: 768px) {
    .category-container::before {
        width: 150px;  /* Adjust size for smaller screens */
        height: 150px;
    }
    .search-btn-text{
        display: none;
    }
}


.border-red{
    border: 1px solid red;
}

.stylish-line {
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 50px !important;
    margin-bottom: 30px !important;
    position: relative;
}

.stylish-line::before,
.stylish-line::after {
    content: '';
    flex: 1;
    height: 1.2px;
    background: linear-gradient(to right, transparent 5%, #ff4343 30%, #6044ff 70%, transparent 95%);
    /* background: linear-gradient(to right, transparent, #ff4343, #6044ff, transparent); */
}

.stylish-line span {
    /* margin-top: 50px; */
    /* margin-bottom: 10px; */
    font-size: 18px;
    color: #333;
    font-weight: bold;
    background-color: #fff; /* Adjust to match your background */
    z-index: 1;
}

/* Text Convert Styles */
.text-convert-buttons > button{
    margin-right: 0px !important;
}

/* Icon Styling */
.icon {
    font-size: 36px;
    color: #4007a5;
    margin-right: 10px; /* Spacing between icon and text */
    display: flex;
    align-items: center; /* Ensure icon and text are vertically centered */
}

.file-icon {
    display: none;
    font-size: 36px;
    color: #4007a5;
    margin-right: 10px; /* Spacing between icon and text */
    align-items: center; /* Ensure icon and text are vertically centered */
}


/*End Card CSS*/

/*Nav Item CSS*/

nav ul li a,
.dropdown-menu-item li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500 !important;
}

.white {
    color: #fff !important;
}

.black {
    color: #000 !important;
}

.center-box {
    max-width: 800px; /* Set the max width of the box */
    margin: 50px auto; /* Center the box horizontally and add margin on top */
    padding: 20px; /* Padding inside the box */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Add a slight shadow */
    background-color: #fff; /* White background */
}

.text-sm {
    font-size: 14px;
}

.star-container {
    position: relative;
    display: inline-block;
    font-size: 2em; /* Adjust the size of the stars */
}

.star {
    display: inline-block;
    color: #ccc; /* Color for unfilled stars */
    position: relative;
}

.star::before {
    content: "\2605"; /* Unicode star character (★) */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #ccc; /* Color for unfilled stars */
}

.star::after {
    content: "\2605"; /* Unicode star character (★) */
    position: absolute;
    top: 0;
    left: 0;
    color: #ffcc00; /* Color for filled stars */
    overflow: hidden;
    width: 0%; /* This will be dynamically set */
}

.highlight {
    border: 2px solid #00ff00; /* Green border for highlight */
    background-color: #e6ffe6; /* Light green background for highlight */
}
.bordered-textarea {
    border: 2px solid #ced4da; /* Standard border color */
    border-radius: 0.25rem; /* Standard border radius */
}
.btn {
    /* width: 150px; */
    /* font-size: 16px; */
    /* font-weight: 400; */
    color: #fff;
    cursor: pointer;
    margin: 10px;
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.btn:hover {
    background-position: 100% 0;
    moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #fff;
}

.btn:focus {
    outline: none;
}

.btn-primary {
    background-image: linear-gradient(
        to right,
        #ed76f8,
        #b443fd,
        #b443fd,
        #7000ba
    );
    box-shadow: 0 4px 15px 0 rgba(234, 127, 255, 0.75);
}

.btn-secondary {
    background-image: linear-gradient(
        to right,
        #667eea,
        #764ba2,
        #6b8dd6,
        #8e37d7
    );
    box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
}

.btn-success {
    /* background-image: linear-gradient(to right, #0ba360, #3cba92, #30dd8a, #2bb673); */
    background-image: linear-gradient(
        to right,
        #30dd8a,
        #2bb673,
        #0ba360,
        #3cba92
    );
    box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.49);
}

.btn-danger {
    background-image: linear-gradient(
        to right,
        #cd0f45,
        #ef6148,
        #e14e53,
        #e2373f
    );
    box-shadow: 0 5px 15px rgba(242, 97, 103, 0.4);
    box-shadow: 0 5px 15px rgba(239, 61, 67, 0.4);
}

.btn-warning {
    background-image: linear-gradient(
        to right,
        #fcd32d,
        #e0b405,
        #c28502,
        #e8bf19
    );
    box-shadow: 0 4px 15px 0 rgba(229, 156, 10, 0.517);
}

.btn-blue {
    background-image: linear-gradient(
        to right,
        #25aae1,
        #4481eb,
        #04befe,
        #3f86ed
    );
    box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
}

.btn-green {
    background-image: linear-gradient(
        to right,
        #25aae1,
        #40e495,
        #30dd8a,
        #2bb673
    );
    box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
}

.btn-red {
    background-image: linear-gradient(
        to right,
        #fc6076,
        #ff9a44,
        #ef9d43,
        #e75516
    );
    box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);
}

.btn-dark {
    background-image: linear-gradient(
        to right,
        #29323c,
        #485563,
        #2b5876,
        #4e4376
    );
    box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
}

.bg-primary {
    background-image: linear-gradient(
        to right,
        #ed76f8,
        #b443fd,
        #b443fd,
        #7000ba
    );
}

.bg-primary-plain {
    background-color: #4107a6;
}

.bg-secondary-plain {
    background-color: #b928ed;
}

.bg-secondary {
    background-image: linear-gradient(
        to right,
        #667eea,
        #764ba2,
        #6b8dd6,
        #8e37d7
    );
}

.bg-success {
    background-image: linear-gradient(
        to right,
        #30dd8a,
        #2bb673,
        #0ba360,
        #3cba92
    );
}

.bg-danger {
    background-image: linear-gradient(
        to right,
        #cd0f45,
        #ef6148,
        #e14e53,
        #e2373f
    );
    box-shadow: 0 5px 15px rgba(242, 97, 103, 0.4);
}
.bg-blue {
    background-image: linear-gradient(
        to right,
        #25aae1,
        #4481eb,
        #04befe,
        #3f86ed
    );
    box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
}

.bg-green {
    background-image: linear-gradient(
        to right,
        #25aae1,
        #40e495,
        #30dd8a,
        #2bb673
    );
    box-shadow: 0 4px 15px 0 rgba(49, 196, 190, 0.75);
}

.bg-red {
    background-image: linear-gradient(
        to right,
        #fc6076,
        #ff9a44,
        #ef9d43,
        #e75516
    );
    box-shadow: 0 4px 15px 0 rgba(252, 104, 110, 0.75);
}

.bg-dark {
    background-image: linear-gradient(
        to right,
        #29323c,
        #485563,
        #2b5876,
        #4e4376
    );
    box-shadow: 0 4px 15px 0 rgba(45, 54, 65, 0.75);
}
.bg-red-plain {
    background-color: #ff1783;
}
.bg-green-plain {
    background-color: #019351;
}

.result-box {
    margin-left: 12px;
    border: 2px solid #baf375;
    border-radius: 8px;
    padding: 20px;
    background-color: #f5ffe9;
    text-align: center;
    box-shadow: 0 4px 8px rgba(209, 25, 255, 0.1); /* Optional: adds shadow */
}
.result-box h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}
.result-box p {
    margin: 10px 0 0;
    font-size: 34px;
    font-weight: bold;
    color: #b443fd;
}

.input-wrapper {
    margin: 10px;
    width: 100%;
    max-width: 600px; /* Optional: limit max width for textarea and input */
}

.input-wrapper {
    position: relative;
}
.input-wrapper i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
}

.input-wrapper input {
    border: 1px solid gray;
    padding-left: 30px; /* Space for the icon */
    width: 50%;
}

.margin-left-zero {
    margin-left: 0 !important;
}

.margin-right-zero {
    margin-right: 0 !important;
}

.job-title {
    margin-left: 35px;
}

.margin-left-20 {
    margin-left: 20px;
}

.margin-left-15 {
    margin-left: 15px;
}

.margin-left-10 {
    margin-left: 10px;
}

.check-green {
    color: #0bbe0b;
    font-size: 18px;
}

.check-red {
    color: #f2320d;
    font-size: 18px;
}

table td.bold-font {
    font-weight: 500 !important;
}

.copydata:hover {
    cursor: pointer !important;
}

.progress-bar {
    transition: width 0.4s ease;
}

.text-primary {
    background-color: none !important;
    background: none !important;
    color: #b443fd !important;
}

.text-green {
    background-color: none !important;
    background: none !important;
    color: #008a25 !important;
}

.dns-table th {
    font-weight: 600 !important;
}

.logo-img {
    width: 190px;
    height: auto;
    padding-right: 30px;
}

.searchbox-wrap {
    display: flex;
    width: 100%;
    max-width: 700px; /* Add a max-width for better control */
    margin: 0 auto; /* Center the search box */
    box-shadow: 0px -2px 7px 0px rgb(190 190 190 / 38%);
    border-radius: 35px;
}

.domain-available {
    display: flex;
    width: 100%;
    max-width: 700px; /* Add a max-width for better control */
    margin: 0 auto; /* Center the search box */
    
}

.searchbox-wrap input {
    flex: 1; /* Make the input take up available space */
    padding: 15px 20px; /* Reduce padding for smaller screens */
    font-size: 1em; /* Adjust font size for responsiveness */

    -webkit-border-top-left-radius: 25px;
    -webkit-border-bottom-left-radius: 25px;
    -moz-border-radius-topleft: 25px;
    -moz-border-radius-bottomleft: 25px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;

    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.19);
    border: none;
}

.searchbox-wrap button {
    padding: 0 15px; /* Adjust padding for smaller screens */
    background-color: #fff;

    -webkit-border-top-right-radius: 25px;
    -webkit-border-bottom-right-radius: 25px;
    -moz-border-radius-topright: 25px;
    -moz-border-radius-bottomright: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;

    box-shadow: 5px 4px 6px rgba(0, 0, 0, 0.19);
    border: none;
    cursor: pointer;

    span {
        padding: 10px 20px; /* Adjust padding for responsiveness */
        font-size: 1em; /* Adjust font size */
        font-weight: 600;
        color: #fff;
        background-image: linear-gradient(to right, #33e48f, #2bb673);
        box-shadow: 0 4px 15px 0 rgb(15 146 91 / 44%);
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .searchbox-wrap {
        box-shadow: none;
        flex-direction: column; /* Stack input and button vertically on small screens */
    }

    .searchbox-wrap input,
    .searchbox-wrap button {
        width: 95%; /* Make input and button take full width */
        border-radius: 25px; /* Keep consistent styling */
    }

    .searchbox-wrap input {
        margin-bottom: 10px; /* Add space between input and button */
    }
    .searchbox-wrap button span {
        font-size: 0.8rem;
        padding: 8px 12px;
        font-weight: 500;
    }

    .searchbox-wrap button{
        margin-top: 10px;
        background-color: #f0f8ff;
        box-shadow: none;
    }
    .cover-image{
        height: 145px !important;
    }
    .after-content p{
        margin-top: 0px !important;
    }
    #domain::placeholder {
        font-size: 12px !important;
    }
}


.sec-icon {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0 auto;
}

.sec-icon::before {
    content: "";
    position: absolute;
    height: 1px;
    left: -70px;
    margin-top: -5.5px;
    top: 60%;
    background: #333333;
    width: 50px;
}

.sec-icon::after {
    content: "";
    position: absolute;
    height: 1px;
    right: -70px;
    margin-top: -5.5px;
    top: 60%;
    background: #333;
    width: 50px;
}
.home-section {
    background: #f0f8ff;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-section span {
    color: rgb(255, 23, 131);
}

.home-section .col {
    padding: 0 1em 1em 1em;
    text-align: center;
}

.home-section p {
    color: #575a7b;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    z-index: 3;
}

.home-section .icon-wrapper {
    background-color: #2c7bfe;
    position: relative;
    margin: auto;
    font-size: 30px;
    height: 2.5em;
    width: 2.5em;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: 0.5s;
    z-index: 3;
}

.home-section .service-card:hover:after {
    top: 0%;
}

.service-card .icon-wrapper {
    background-color: #ffffff;
    color: rgb(187, 41, 238);
}

.home-section .service-card:hover .icon-wrapper {
    color: #bb29ee;
}

.home-section .service-card:hover h3 {
    color: #ffffff;
}

.home-section .service-card:hover p {
    color: #f0f0f0;
}

/* CSS for blinking effect */
.blink {
    background-color: rgb(195, 251, 195);
    transition: background-color 0.5s ease-out;
}
.after-content h1 {
    margin-top: 30px;
}
.after-content h1::after {
    content: ""; /* Empty content to create the spacing */
    display: block; /* Make it a block element */
    height: 1px; /* Set a height for the spacing */
    margin-top: 30px; /* Adjust the value to your desired margin */
}
.after-content p {
    margin-top: 30px; /* Adjust the value to your desired margin */
}

/*
* Start Custom Buttons with Bootstrap Style
*/
.bs-btn-success,
.bs-bg-success {
    background-color: #28a745; /* Fresh green */
    color: white;
    border: 1px solid #28a745;
}

.bs-btn-warning,
.bs-bg-warning {
    background-color: #f6a502; /* Fresh green */
    color: white;
    border: 1px solid #f6a502;
}
.bs-btn-warning:hover,
.bs-bg-warning:hover {
    background-color: #f68c02; /* Fresh green */
    color: white;
    border: 1px solid #f68c02;
}

.bs-btn-success:hover,
.bs-bg-success:hover {
    background-color: #218838; /* Darker green */
    border-color: #1e7e34;
}

.bs-btn-danger,
.bs-bg-danger {
    background-color: #dc3545; /* Fresh red */
    color: white;
    border: 1px solid #dc3545;
}

.bs-btn-danger:hover,
.bs-bg-danger:hover {
    background-color: #c82333; /* Darker red */
    border-color: #bd2130;
}

.bs-btn-primary,
.bs-bg-primary {
    background-color: #007bff; /* Fresh blue */
    color: white;
    border: 1px solid #007bff;
}

.bs-btn-primary:hover,
.bs-bg-primary:hover {
    background-color: #0056b3; /* Darker blue */
    border-color: #004085;
}

.bs-btn-secondary {
    background-color: #6c757d; /* Fresh gray */
    color: white;
    border: 1px solid #6c757d;
}

.bs-btn-secondary:hover {
    background-color: #5a6268; /* Darker gray */
    border-color: #4e555b;
}

.bs-btn-dark {
    background-color: #343a40; /* Fresh dark */
    color: white;
    border: 1px solid #343a40;
}

.bs-btn-dark:hover {
    background-color: #23272b; /* Darker dark */
    border-color: #1d2124;
}

.bs-btn {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    transition: background-color 0.3s, border-color 0.3s;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    cursor: pointer;
    text-decoration: none;
}
/*
* End Custom Buttons
*/

/*
* Start Drag and Drop Style 
*/

.spinner-border {
    width: 3rem;
    height: 3rem;
}

#base64 {
    border: none;
    outline: none;
    resize: none;
    overflow-y: scroll;
    padding: 10px;
    font-size: 10px;
    font-family: Arial, sans-serif;
    width: 100%;
    font-size: 10px;
    padding: 20px 20px 20px 0px;
    font-family: arial;
}

/* Custom scrollbar styles for Webkit browsers (Chrome, Safari) */
#base64::-webkit-scrollbar {
    width: 12px;
    /* Width of the scrollbar */
}

#base64::-webkit-scrollbar-thumb {
    background-color: #888;
    /* Color of the scrollbar thumb */
    border-radius: 6px;
    /* Rounded corners for the scrollbar thumb */
}

#base64::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    /* Darker color when hovering */
}

#base64::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Color of the scrollbar track */
    border-radius: 6px;
    /* Rounded corners for the scrollbar track */
}

/* Drop Area */
.drop-area {
    /* border: 2px dashed #007bff; */
    /* Blue dashed border */
    border-radius: 10px;
    margin-top: 20px;
    /* Rounded corners */
    height: 180px;
    /* Reduced height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(135deg, #f8f9fa, #e9ecef); */
    background: #fff;
    /* Light gradient background */
    transition: background-color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

/* Icon Styling */
.drop-area .icon {
    font-size: 48px !important;
    color: #2bb975;
    /* Blue icon */
}

/* Label Styling */
.drop-area label {
    /* display: inline-block; */
    /* background-color: #007bff; */
    color: white;
    /* padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold; */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.drop-area label:hover {
    /* background-color: #0056b3; */
    /* Darker blue on hover */
}

/* Hover effect on drop area */
.drop-area:hover {
    background-color: #f5fff3;
    /* border-color: #0056b3; */
    /* Darker blue border */
}

/* Adjusting Text Inside Drop Area */
.drop-area p {
    margin: 5px 0;
    font-size: 16px;
    color: #343a40;
    /* Darker text */
}

/* Highlight the drop area when a file is dragged over it */
.drop-area.highlight {
    border-color: #28a745; /* Green border on drag */
    background-color: #e3fcec; /* Light green background */
}

/*Image Rotation, Cropping, Canvas */
canvas {
    border: 2px solid #ddd;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#cropper-image {
    max-width: 100%;
}

/* Canvas controls */
.canvas-container {
    display: flex;
    gap: 20px;
}

.canvas-wrapper {
    flex: 1;
}

/* Small button styling */
.controls button,
.controls input[type="color"],
.controls input[type="text"] {
    margin: 5px;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    transition: background-color 0.3s ease;
}

.controls button:hover {
    background-color: #f1f1f1;
}

/* Smaller color palette */
.color-container {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-label {
    font-size: 16px;
    margin-right: 10px;
}

.color-box {
    width: 20px;
    /* Reduced size */
    height: 20px;
    cursor: pointer;
    border: 1px solid transparent;
    margin-right: 3px;
    border-radius: 20px;
}

.color-box:hover {
    border: 1px solid #000;
}

.color-box-container {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.controls-wrapper {
    flex-basis: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.d-flex {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.mt-2 {
    margin-top: 10px;
}

/* Centering the "Add Text" button */
.centered-button {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
}

/* Range slider section */
input[type="range"] {
    width: 100%;
}

/* Icon button styles */
.icon-button {
    margin: 5px;
    font-size: 24px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.icon-button:hover {
    color: #007bff;
}

.color-title {
    background-color: #f0f8ff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    /* Rounded corners */
    margin-bottom: 0px;
}

.color-label {
    display: block;
    /* Ensures label is above the color boxes */
    margin: 10px 0;
    /* Adjusts space around the label */
}

/* Responsive Behavior */
@media (max-width: 768px) {
    .drop-area {
        height: 150px;
        /* Further reduced height on smaller screens */
    }

    .drop-area p {
        font-size: 14px;
    }
}

/*
* Start Image Preview and Progress Bar
*/
.custom-select {
    font-size: 1.5rem;
    /* Larger font size */
    font-weight: bold;
    /* Bold text */
    border-radius: 0.375rem;
    border-color: #ced4da;
    padding: 0.75rem 1rem;
    /* Adjusted padding */
    transition: border-color 0.3s;
}

.custom-select:focus {
    border-color: #007bff;
    outline: none;
}

.select-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.select-container .form-label {
    font-size: 1.5rem;
    /* Larger and bold text */
    font-weight: bold;
    margin-right: 1rem;
}

.arrow-icon {
    font-size: 2rem;
    /* Larger and more prominent arrow */
    color: #6c757d;
    font-weight: bold;
}

.arrow-icon:hover {
    color: #007bff;
    /* Hover effect */
}

.progress-container {
    width: 100%;
    background-color: #f3f3f3;
    border-radius: 5px;
    margin-top: 0.5rem;
    position: relative;
}

.progress-bar {
    height: 13px;
    background-color: #06ac72;
    text-align: center;
    line-height: 20px;
    color: white !important;
    border-radius: 20px;
    width: 0%;
    transition: width 0.4s ease;
}

.progress-container span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #fff;
}

.image-preview {
    display: inline-block;
    position: relative;
    margin: 0.5rem;
    max-width: 150px;
}

.image-preview img {
    max-width: 100%;
    max-height: 150px;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
}

.image-preview .progress-container {
    margin-top: 0.5rem;
}
/*
* End Image Preview and Progress Bar
*/

.conversion-heading {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: #de2a08;
    background-color: #f0f8ff; /* Light background color */
    /* border: 2px solid #87ceeb; */
    padding: 10px;
    margin: 20px auto;
    display: inline-block;
    border-radius: 8px; /* Optional: rounded corners */
}

/* Base loader styling */
#loader {
    /* Initially hidden */
    display: none;
}
/* Loader container */
.loader-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    gap: 8px;
}

/* Individual dot */
.loader-dots div {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #3498db; /* Default color */
    animation: bounce 1.4s infinite ease-in-out both;
}

/* Color variations */
.loader-dots div:nth-child(1) {
    background-color: #e74c3c;
    animation-delay: -0.32s;
}

.loader-dots div:nth-child(2) {
    background-color: #f39c12;
    animation-delay: -0.16s;
}

.loader-dots div:nth-child(3) {
    background-color: #3498db;
    animation-delay: 0;
}

/* Animation */
@keyframes bounce {
    0%,
    80%,
    100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .loader-dots div {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .loader-dots div {
        width: 8px;
        height: 8px;
    }
}

/* The container for suggestions and input */
.suggestion-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 30px;
    background-color: #d7ddd7;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Input styling for more prominent appearance */
.suggestion-container input {
    padding: 15px;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    width: 100%;
}

/* Suggestions list styling */
#suggestions {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    display: none;
}

#suggestions li {
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom: none;
    /* Except for the last one */
    cursor: pointer;
    /* Change pointer on hover */
    transition: background-color 0.3s ease;
    /* Smooth hover transition */
}

#suggestions li:last-child {
    border-bottom: 1px solid #ddd;
}

/* Hover effect for suggestions */
#suggestions li:hover {
    background-color: #ecebf8;
    /* Light green background on hover */
    border-color: #e6e6fb;
    /* Light green border on hover */
}

/* Container for synonyms */
.synonym-box-container {
    margin-top: 20px;
}

/* Responsive display for synonyms in 3 columns */
.row-synonyms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.synonym-item {
    flex: 1 1 calc(33.3333% - 10px);
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Style for synonym text */
.synonym-text {
    font-size: 16px;
    margin-right: auto;
    margin-left: 10px;
    text-transform: capitalize;
    /* Capitalize the first letter */
}

/* Icons for checkmark and copy */
.synonym-item i {
    cursor: pointer;
}

/* Checkmark icon */
.bi-check-circle-fill {
    color: #04bc56;
}

/* Copy icon */
.bi-copy {
    color: #919191;
    /* Gray */
}

/* Heading for synonyms */
.synonyms-heading {
    padding: 10px;
    border-radius: 25px;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    width: 400px;
    /* background: #3da218; */
    background: #04bc56;
    color: #fff;
}

/* Separator line styling */
.separator-line {
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.synonyms-heading > strong {
    text-transform: uppercase;
}

/* Progress Bar Styles */
#progressBar {
    height: 30px;
    border-radius: 20px;
    background-color: rgb(4, 160, 4);
    font-size: 20px;
    border-radius: 0px !important;
}

/* To show the progress bar with a solid gray background */
.progress {
    border-radius: 0px !important;
}
#outputText {
    transition: background-color 1s ease;
}
#progressBarContainer {
    height: 30px;
    border-radius: 20px !important;
}

/*Textarea for rewrite article*/
.textarea-container {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: auto;
}

.textarea-container textarea {
    width: 100%;
    height: 200px;
    padding: 20px;
    font-size: 1rem;
    resize: none;
}

.textarea-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.textarea-placeholder h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.textarea-placeholder p {
    margin: 0;
    font-size: 1rem;
    color: #6e6e6e;
    /* font-style: italic; */
    font-family: "Arial", sans-serif;
}

.textarea-container textarea:focus + .textarea-placeholder,
.textarea-container textarea:not(:placeholder-shown) + .textarea-placeholder {
    display: none;
}
.form-label {
    display: block;
    margin-bottom: 8px;
}

.label-title {
    /* background-color: #04bc56; */
    background-color: #03a56d;
    color: #fff; /* Dark slate color for text */
    padding: 12px 18px;
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.label-title:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow on hover */
}

nav ul li ul {
    min-width: 250px; /* Ensures a consistent width for the dropdown */
    max-height: 400px; /* Maximum height before scrolling */
    overflow-y: auto; /* Enables vertical scrolling */
    z-index: 1000;
}

/* Show the dropdown on hover */
nav ul li:hover > ul {
    display: block;
}

/* Scrollbar Styling */
nav ul li ul::-webkit-scrollbar {
    width: 3px; /* Scrollbar width */
}

nav ul li ul::-webkit-scrollbar-thumb {
    background-color: #888; /* Scrollbar thumb color */
    border-radius: 3px;
    min-height: 20px;
    max-height: 50px;
    /* height: 20px !important; */
}

nav ul li ul::-webkit-scrollbar-thumb:hover {
    background-color: #979797; /* Darker thumb color on hover */
}
nav ul li ul::-webkit-scrollbar-track {
    background: #f1f1f1; /* Light background for the scrollbar track */
    border-radius: 3px;
}

/*
Home Page CSS
*/
.home-row {
    background-color: #fff;
    border-radius: 5px;
}
.home-row-heading {
    border-radius: 7px 7px 0px 0px;
    &:hover {
        background-color: #4007a5;
    }
}

/*Sidebar CSS*/
.sidebar-heading {
    border-radius: 7px 7px 0px 0px;
    padding-top: 15px;
    padding-bottom: 10px;
    text-align: center;
}

.sidebar-heading h4 {
    font-family: "Anek Devanagari", serif;
    font-size: 1.6em;
}


.bg-primary-gradient{
    background: linear-gradient(43deg, #db29ee, #5d02ff) !important;
}
.bg-secondary-gradient{
    background: linear-gradient(43deg, #29eed4, #5d02ff) !important;
}


#right-sidebar {
    width: 275px;
    max-width: 275px;
}

/*End Sidebar CSS*/

/*Start Footer CSS*/
.footer-img{
    width: 100%;
    /* max-width: 450px; */
}
.about-us-footer{
    font-size: 15px;
    margin-top: 15px;
    padding-right: 10px;
}


.fw-bold {
    font-family: 'Anek Devanagari', serif; 
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(90deg, #4107a6, #b928ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Makes the gradient text visible */
    letter-spacing: 2px;
    margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .fw-bold {
        font-size: 17px;
    }
}
@media (max-width: 767.98px) {
    .fw-bold {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

/* For light gray background around icons */
.bg-light-icon {
    background-color: #f0f0f0;
    padding: 8px;
    border-radius: 4px;
}

/* Donation section */
.donation-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.donate-btn {
    border-radius: 30px;
    max-width: 180px; 
    background-image: linear-gradient(to right, #7000ba, #b443fd);
    width: 100%; 
    padding: 10px 20px;
}

/* Simple background color for icons */
.icon-bg {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 4px;
}

/*End Footer CSS*/


/*START Generate Text CSS*/
td{
    word-break: break-all; overflow-wrap: break-word;
}
/*END Generate Text CSS*/

/* START Home Search CSS*/
.custom-search-container {
    position: relative;
    margin-top: 20px; /* Add margin for spacing */
    text-align: center; /* Center the container */
}
#customSearchBar {
    background-color: transparent;
    width: 100%;
    color: #485563;
    padding: 10px 50px; /* Add extra padding on the left for the icon */
    font-size: 26px; /* Increase font size */
    border: 2px solid #b928ed; /* Use brand color for the border */
    border-radius: 25px; /* Rounded corners */
    transition: border-color 0.3s, box-shadow 0.3s; /* Smooth transition for focus effects */
}
#customSearchBar::placeholder {
    font-size: 26px;
    font-weight: bold; /* Make the placeholder bold */
    text-align: center; /* Center the placeholder text */
    color: rgba(185, 40, 237, 0.5); /* Placeholder color (lightened version of brand color) */
}
#customSearchBar:focus {
    outline: none; /* Remove default outline */
    border-color: #9f0cc2; /* Darker shade of brand color on focus */
    box-shadow: 0 0 5px rgba(185, 40, 237, 0.5); /* Add a shadow effect on focus */
}
.custom-search-icon {
    position: absolute;
    left: 25px; /* Adjust position inside the search bar */
    top: 50%;
    transform: translateY(-50%); /* Center the icon vertically */
    color: #b928ed; /* Icon color */
    pointer-events: none; /* Prevent clicking on the icon */
}
/* END Home Search CSS*/


/*Header icons css*/
/* Hide the dropdown icon on devices smaller than 992px */
@media (max-width: 991.98px) {
    .dropdown-icon {
        display: none;
    }
}

/* Show the dropdown icon on devices 992px and above */
@media (min-width: 992px) {
    .dropdown-icon {
        display: inline-block; /* or flex depending on your design */
    }
}


/*Sidebar media query*/
@media (max-width: 768px) {
    #right-sidebar {
        width: 100%;
        max-width: 100%;
    }
}

/*Others*/
button > .bi-copy {
    color: #fff;
}
.image-100{
    width: 100%;
}

/*CK Editor Table*/
.ckeditor-table {
    border: 1px solid #000; /* Adjust as needed */
    width: 100%;
    border-collapse: collapse;
}

.ckeditor-table th,
.ckeditor-table td {
    padding: 8px;
    border: 1px solid #000; /* Adjust as needed */
}
.ckeditor-table th{
    text-align: center;
}

.ckeditor-table th {
    background-color: #f2f2f2; /* Optional */
}
.no-decoration{
    text-decoration: none;
    color: #1d2124;
    transition: color 0.4s ease-in-out, -webkit-text-fill-color 0.4s ease-in-out; /* Smooth transition */
}

.cover-heading h1 {
    font-family: 'Anek Devanagari';
    font-size: 4.5em;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    white-space: normal; /* Allow wrapping for multi-line text */
    max-width: 100%; /* Prevent long lines from extending too far */
    margin: 0 auto; /* Add space below the heading for breadcrumbs */
}

.cover-image {
    background-size: cover !important;
    width: 100%;
    height: 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1023px) {
    .cover-heading h1 {
        font-size: 2rem;
    }
    .cover-image{
        padding: 25px;
    }
    .breadcrumb-nav{
        display: none;
    }
    .result-box{
        margin-left: 10px;
        width: 94%;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {
    .result-box h3 {
        font-size: 18px;
    }
    .result-box{
        margin-left: 8px;
        padding: 3px;
    }
}

.breadcrumb-nav {
    /* margin-top: 20px;  */
    /* Add spacing above the breadcrumb */
    text-align: center;
}

.breadcrumb {
    display: inline-flex;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #fff;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: none !important;
}

.copyright-text{
    font-size: 14px;
    font-weight: 400;
}

.address-line {
    display: flex;
    align-items: flex-start; /* Align the icon with the text's top */
    gap: 10px; /* Add spacing between icon and text */
}

.address-line i.bi-geo-alt {
    flex-shrink: 0; /* Prevent icon from resizing */
    margin-top: 4px; /* Optional: Adjust for visual alignment */
}

.address-line span {
    display: inline-block;
    word-break: break-word; /* Allow long text to wrap properly */
}

.bi-copy{
    cursor: pointer !important;
    font-size: 14px;
    margin-left: 2px !important;
}

.user-address-card{
    height: 230px !important;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.06);
}
.user-address-card h3{
    font-family: 'Anek Devanagari', serif;
    font-size: 1.7rem;
    font-weight: 500;
}
.info-label{
    font-weight: bold;
}
#thumbnail{
    width: 50%;
}
