body {
    font-family: Arial, sans-serif;
}

.sticky-header {
    padding: 20px;
    width: 100%;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    transition: all .3s ease-in-out;
}



.login-btn {
    background: #fff;
    padding: 5px 20px;
    border: none;
    color: #593cff;
    font-size: 18px;
    border-radius: 30px;
}
.sticky-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #212121;
    /* Optional darker background when sticky */
}

.sticky-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-header nav .logo {
    width: 150px;
}
.dropdown-item {
    color: #ffffff;
    cursor: pointer;
}
.sticky-header nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.sticky-header nav > ul > li{
 margin: 0 5px;
}

.sticky-header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 16px;
    transition: all .3s ease-in-out;
}


.toggle-button {
    display: none;
    /* Hidden by default */
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 767px) {
    .nav-links {
        display: none;
        /* Hide links */
        flex-direction: column;
        /* Stack links */
        position: absolute;
        top: 60px;
        /* Adjust as needed */
        right: 0;
        background: white;
        /* Background color */
        width: 100%;
        z-index: 10;
        /* Bring to front */
    }

    .nav-links.active {
        display: flex;
        /* Show links when active */
    }

    .toggle-button {
        display: block;
        /* Show toggle button */
    }
    #google_translate_element{
        display: none;  
    }
    .sticky-header nav .logo{
        width: 100px;
    }
}

.sticky-header nav ul li a:hover,
.sticky-header nav ul li a.active {
    background-color: #ffffff;
    color: #5765c1;
}

.slider-wrapper {
    padding: 80px 0 60px;
    background: #593cff;
}

.search-area {
    padding: 40px 0 20px;
}

.sidebar-area {
    padding: 40px 0 50px;
}

.sidebar-area .card .other-ditel svg {
    width: 25px;
    height: 25px;
}

.search {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown {
    max-width: 200px;
}

.custom-slider-container {
    width: 100%;
    margin: 20px 0;
    position: relative;
}

.custom-slide {
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    border-radius: 10px;
        height: 240px;
}

.custom-slide img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    position: relative;
    transition: transform 0.3s ease;
}

.custom-slide:hover img {
    transform: scale(1.05);
}

.swiper-slide:not(:hover) img {
    filter: brightness(0.5);
}

.custom-slide:hover .overlay {
    opacity: 1;

}

.overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: calc(100% - 20px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    justify-content: flex-end;
}

.overlay-button {
    background-color: rgba(255, 255, 255, 1);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.search-bar {
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 10px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-bar input {
    border: none;
    padding: 10px 15px;
    border-radius: 30px 0 0 30px;
}

.search-bar input:focus {
    outline: none;
}

.search-bar button {
    border: none;
    padding: 10px;
    border-radius: 0 30px 30px 0;
    transition: background-color 0.3s ease;
}

.search-bar button:hover {
    background-color: #0056b3;
}

.search-bar i {
    color: white;
}



/* footer */

footer {
    background-color: #333;
    color: #f1f1f1;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 15px;
}

.footer-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #d1d1d1;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffdd57;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    font-size: 12px;
    color: #999;
    border-top: 1px solid #444;
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}

.sticky-sidebar .swiper-slide:not(:hover) img {
    filter: none;
}


.sticky-sidebar {
    position: sticky;
    top: 60px;
    background-color: #FAFAFA;
    padding: 20px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    height: auto;
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 10px;
    border-radius: 10px !important;
}

/* Image styling */
.card-img img {
    width: 100%;
    /* height: 216px; */
    object-fit: contain;
    object-position: top;
    /* border-radius: 8px; */
}

/* Content styling */
.card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-content a {
    font-weight: bold;
    color: #593cff;
    font-size: 20px;
    text-decoration: none;
}

.card-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.other-ditel {
    display: flex;
    justify-content: start;
    gap: 10px;
    align-items: center;
}

.other-ditel svg {
    fill: #666;
    width: 16px;
    height: 16px;
}

.sort-number {
    display: grid;
    justify-content: end;
    align-items: center;
    text-align: center;
}

.sort-number svg {
    fill: #666;
    width: 18px;
    height: auto;
}

.btn {
    background-color: #593cff !important;
    color: #fff !important;
    border: none;
    padding: 7px 22px;
    font-size: 13px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* .btn:hover {
    background-color: #0056b3;
} */

.arrow-up {
    display: grid;
}

.arrow-up svg {
    width: 24px;
    height: 24px;
}

.arrow-up span {
    display: flex;
    justify-content: center;
    align-items: center;
}


.btn-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-b0tton .btn {
    padding: 10px 20px;
    border-radius: 40px;
}

.snooth-by-list {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.verticle-card-slider {
  height: 380px; 
  overflow: hidden;
  position: relative;
}
.swiper-slide .item {
    height: 111px;
    width: 100%;
}

.swiper-slide .item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.verticle-card-slider .swiper-slide {
    height: auto !important;
}

.sticky-sidebar .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-sidebar .slider-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 10px 15px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

.sticky-sidebar .swiper-slide:hover .slider-button {
    opacity: 1;
}

.sticky-sidebar .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Make each slide take full width */
}

.sticky-sidebar .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slider-verticle-card .card-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}



footer {
    background: #1E1E1E;
    padding-top: 74px;
    padding-bottom: 64px;
}

footer .logo {
    width: 25%;
}

footer h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

footer .linklist {
    color: #fff;
    display: block;
    margin-bottom: 20px;
    text-decoration: none
}

footer .linklist svg {
    width: 30px;
    height: 30px;
    margin-right: 16px;
}

.footer-btn {
    padding: 14px 30px;
    text-align: center;
    border-radius: 25px;
    line-height: 1.3;
    color: #fff;
    background: #593cff;
    border: none;
}

.timing {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-list li a {
    color: #fff;
    margin-bottom: 15px;
    display: inline-block;
    opacity: 0.5;
    text-decoration: none;
}

.links-list li a:hover {
    opacity: 1;

}

.copyright-bar {
    background: #1E1E1E;
}

.social-list {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.copyright-text {
    color: #fff;
    margin-bottom: 0;
}

.border-bar {
    border-top: 1px solid #636363;
    padding: 20px 0;
}

.showing-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.showing-area .dropdown button {
    font-size: 16px;
}

.prising-modal {
    display: flex;
    align-items: center;
    justify-content: left;
}

.prising-modal h6 {
    font-weight: 700;
    margin: 0
}

.prising-modal p {
    margin: 0 0 0 5px;
    color: #fff;
    background-color: #868686;
    border-radius: 10px;
    padding: 4px 10px;
}

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

.free-img img {
    width: 24px;
}

.tag {
    display: flex;
    margin: 10px 0;
}

.tag h6 {
    font-weight: 700;
}

.tag p {
    margin: 0 0 0 5px;
    color: #fff;
    background-color: #868686;
    border-radius: 10px;
    padding: 5px;
}

.description-btn svg {
    margin: 0 0 0 5px;
    width: 20px;
    fill: #fff;
}

.description-btn2 {
    margin: 0 0 0 5px;
    color: #000 !important;
    background-color: #fff !important;
    border: 1px solid #000 !important;
}

.description-btn2:hover {
    background-color: #593cff !important;
    color: #fff !important;
    border: none;
    padding: 7px 22px;
    font-size: 13px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.share {
    text-align: center;
    margin: 20px 0 0 0;
}

.share h4 {
    font-weight: 700;
}

.share svg {
    width: 50px;
    background: #0056b3;
    padding: 10px 10px;
    border-radius: 8px;
    fill: #fff;
}

section.grab-area {
    padding: 40px 0;
}
.grab-content {
    padding:30px 30px 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
@media (min-width: 1024px){
    .grab-content {
        padding:30px 30px 30px 54px;
    }
}
.grab-content h3 {
    font-size: 40px;
    margin-bottom: 30px;
}
.grab-img {
    background-color: #969696;
}
.grab-content input#email-input {
    height: 63px;
}

.grab-img img {
    max-width: 100%;
    padding: 10px;
}


.description {
    overflow: hidden;
    padding: 10px;
    border-radius: 10px !important;
}

.grab-card {
    background-color: #f3f3f3;
}

/* .grab-heding {
    width: 60%;
    font-size: 38px !important;
} */

.description .other-ditel svg {
    width: 20px;
    height: 20px;
}








.header {
    background: #f2f2f2;
    color: #000;
}

.header nav ul li a {
    color: #000;
}

.header.sticky nav ul li a {
    color: #fff;
    /* Font color when sticky */
}

.header.sticky nav ul li a:hover {
    color: #5765c1;
}


.header.sticky nav ul li a.active {
    color: #5765c1;
}


.faq-section {
    padding: 150px 0 80px 0;
}

.faq-section .accordion {
    width: 100%;
}

.accordion-button:not(.collapsed) {
    /* background-color: #c5e5d8;*/
    background-color: #e9fff3;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:before {
    content: "";
    position: absolute;
    right: 0.75rem;
    top: 1.25rem;
    height: 2px;
    width: 1rem;
    background-color: #4f8f70;
}

.accordion-button.collapsed:after {
    content: "";
    position: absolute;
    right: 1.1875rem;
    top: 0.8125rem;
    height: 1.0625rem;
    width: 0.125rem;
    border-style: none;
    background-color: #4f8f70;
}

.faq-section .accordion-button h5 {
    color: #4f8f70;
    margin-right: 13px;
}

.accordion-body {
    background-color: #e9fff3;
}

ul {
    list-style-type: none;
    list-style-type: disc;
    margin-left: 20px;
}

ul li {
    margin-bottom: 5px;
}

.accordion-body ol {
    counter-reset: step-counter;
    list-style-type: none;
    padding-left: 0;
}

.accordion-body ol>li {
    counter-increment: step-counter;
    margin-bottom: 10px;
}

.accordion-body ol>li::before {
    content: "Steps " counter(step-counter) ": ";
    font-weight: bold;
}









#wrapper {
    padding-left: 0;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    padding-left: 250px;
}

#sidebar-wrapper {
    position: fixed;
    left: 0;
    width: 250px;
    height: 100%;
    background: #000;
    overflow-y: auto;
    transition: all 0.5s ease;
    transform: translateX(-100%);
}

#wrapper.toggled #sidebar-wrapper {
    transform: translateX(0);
}

#page-content-wrapper {
    position: relative;
    padding: 15px 0 15px 0;
    transition: all 0.5s ease;
}

#page-content-wrapper svg{
    fill: #ffffff;
    width: 22px !important;
}

.toggle-button {
    display: none;
    /* Hidden by default */
    font-size: 30px;
    /* Size of the hamburger icon */
    cursor: pointer;
}




#sidebar {
    transition: transform 0.3s ease;
    transform: translateX(-100%);
    /* Initially hidden */
}

#sidebar[style*="display: block"] {
    transform: translateX(0);
    /* Show when visible */
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #7386D5;
    color: #fff;
    transition: all 0.3s;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #6d7fcc;
}

#sidebar ul.components {
    padding: 20px 0;
    /* border-bottom: 1px solid #47748b; */
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    font-size: 1.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-decoration: none;

}

#sidebar ul li a svg{
    width: 16px;
    fill: #fff;
}

#sidebar ul li a:hover {
    color: #7386D5;
    background: #fff;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

.faq-section h2{
    font-size: 42px;
}
svg.liked {
    fill: #593cff;
}
.other-details {
    margin-top: 20px;
}

.bg{
    background: #593cff;
}
ul.dropdown-menu {
    display: none !important;
}
ul.dropdown-menu.show{
    display: inline !important;
    background: #593cff;
}
.mr-10{
	margin-right:10px;
}
.information-hd {
    padding: 25px 0 60px;
    background: #593cff;
}
.sidebar-area .card .other-ditel .sort-number a {
    margin-bottom: -11px;
}
.ai-tool-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* 16:9 ratio => 9 / 16 = 0.5625 */
  overflow: hidden;
}
.card-content .other-ditel a {
    font-size: unset;
}
.ai-tool-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h5#total-tools {
    color: #737373;
}



