/* General CSS */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    scroll-behavior: smooth;
}

 /* Pseudo-element দিয়ে অ্যারো আইকন তৈরি (যাতে রোটেট করা যায়) */
    .currency-display-container::after {
        content: '';
        position: absolute;
        right: 10px;
        top: 50%;
        width: 10px;
        height: 10px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");  background-repeat: no-repeat;
        background-position: center;
        
        /* রোটেশন লজিক */
        transform: translateY(-50%); /* মাঝখানের পজিশন ঠিক রাখা */
        transition: transform 0.3s ease; /* স্মুথ অ্যানিমেশন */
        pointer-events: none; /* ক্লিকের সমস্যা এড়াতে */
    }

    /* যখন ড্রপডাউন খোলা থাকবে (Active state) */
    .currency-display-container.active::after {
        transform: translateY(-50%) rotate(180deg); /* ১৮০ ডিগ্রি ঘুরবে */
    }

/* ড্রপডাউন মেনু (লুকানো থাকবে) */
    .currency-dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FDFDFD;
  border-radius: 3px;
  width: 100%;
  z-index: 9999;
  margin-top: 5px;
  border: 1px solid #dbdbdb;
  box-shadow: 1px 0.5px 3px #00000014 !important;
  opacity: 0;            
  visibility: hidden;       
  transform: translateY(-15px); 
  transition: all 0.4s ease-in-out; 
}

.currency-display-container.active .currency-dropdown-options {
        opacity: 1 !important;               /* দৃশ্যমান */
        visibility: visible !important;      /* ক্লিক করা যাবে */
        transform: translateY(0) !important; /* সঠিক জায়গায় নেমে আসবে */
    }

    /* ড্রপডাউন আইটেম */
    .currency-option {
        padding: 5px 7.5px;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

    .currency-option:hover {
        background-color: #f0f0f0;
    }

    /* ফ্ল্যাগ সাইজ ঠিক রাখা */
    .currency-flag {
        object-fit: cover;
    }

    /* ডিফল্টভাবে BDT টেক্সট লুকিয়ে রাখা (JS দিয়ে হ্যান্ডেল হবে) */
    .currency-usd {
        display: none;
    }


.lang-display-container {
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  text-decoration: none;
  color: #262626;
  border: 1px solid #dbdbdb;
  font-family: 'Roboto', sans-serif;
  border-radius: 3px;
  font-size: 12px;
  background: transparent;
  align-content: center;
  transition: opacity 0.1s ease-in-out;
  margin-left: -26%;
  margin-right: 15%;
  padding: 1px;
}

.lang-display-container span{
    opacity: .5;
    padding: 5px 9px;
    min-width: 58px;
    text-align: center;
}

.lang-display-container .active {
  color: #fff;
  opacity: 1;
  border-radius: 3px;
  background: linear-gradient(86deg, #0b57cf 0.22%, #3389CF 99.78%);
}


#app_meta #openShareModalBtn {
  margin-right: 10px;
}

body {
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}
/* ------------------ */

/* ভিডিও থাম্বনেইলের কন্টেইনার */
.video-thumbnail-wrapper {
    position: relative;
    cursor: pointer;
}

/* প্লে বাটন ওভারলে */
.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.video-thumbnail-wrapper:hover .play-button-overlay {
    opacity: 1;
}

.play-button-overlay svg {
    width: 60px;
    height: 60px;
    fill: white;
}

/* ভিডিও মডাল এর কন্টেন্ট সেন্টারে রাখার জন্য */
#videoPlayerModal .video-modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 900px;
    margin: auto;
    height: 100%;
}

#videoPlayerModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

video {
  border-radius: 7px;
}

/* ------Header------ */
.header {
  box-shadow: 1px 0.5px 3px #00000014 !important;
  align-items: center;
  background: #FDFDFD;
  position: sticky;
  top: 0;
  flex-wrap: wrap;
  width: 100%;
  height: 80px;
  z-index: 9999;
}

#header1 {
  max-width: 1200px;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto !important;      /* horizontally center align */
  padding: 0 20px;
}

/* 3 Columns */
.header-left,
.header-center,
.header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.full-content h1, .full-content h2, .full-content h3 {
  font-size: 21px !important;
  font-weight: bold !important;
}


/* Center content horizontally */
.header-center {
  justify-content: center;
}

.header-right {
  justify-content: flex-end;
}

/* Title */
header h1 {
  font-size: 23px;
  color: #262626;
  display: flex;
}

#logo {
  height: 75px !important;
  width: auto;
  padding: 0;
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #fff !important;
  background: linear-gradient(86deg, #773C96 0.22%, #F5992C 99.78%);
  border: none !important;
  padding: 6px 11px;
  border-radius: 5px !important;
  transition: background 1s;
}

nav ul li a:hover {
  background: linear-gradient(86deg, #F5992C 0.22%, #773C96 99.78%);
}

nav ul #get_app_li {
  margin-left: -140px;
  margin-right: 65px;
}

nav ul #get_app_li #get_app {
  color: #fff;
  background: linear-gradient(86deg, #773C96 0.22%, #F5992C 99.78%);
  border: none;
  padding: 6px 11px;
  border-radius: 5px;
  transition: background 1s;
}

nav ul #get_app_li #get_app:hover {
  background: linear-gradient(86deg, #F5992C 0.22%, #773C96 99.78%);
}

#get-our-app-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#get-our-app-modal .modal-content {
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease-in-out;
}

#get-our-app-modal .modal-content h2 {
  background: linear-gradient(86deg, #773C96 0.22%, #F5992C 99.78%);
  background-clip: border-box;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

#get-our-app-modal .modal-content .modal-close-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    color: #888;
    cursor: pointer;
    line-height: 1;
}
#get-our-app-modal .modal-content .modal-close-icon i {
  margin: 0;
}
#get-our-app-modal .modal-content .modal-close-icon:hover {
    color: #000;
}

/* Currency link */

.currency-display-container{
  text-decoration: none;
  color: #262626;
  border: 1px solid #dbdbdb;
  font-family: 'Roboto', sans-serif;
  padding: 5px 7.5px;
  padding-right: 22px;
  border-radius: 3px;
  font-size: 13px;
  transition: 0.2s;
  margin-right: 0px;
  background: transparent;
  align-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
  position: relative;
  min-width: 122px !important;
  max-width: 122px !important;
}

.currency-flag {
  width: 28px;
  height: auto;
  margin-right: 7px;
  border-radius: 3px;
  margin-bottom: 1.5px;
}

/* Wishlist Section */
.w_c {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Icon wrapper */
.icon-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.bi.bi-heart {
  height: 19px;
  width: auto;
  fill: #262626;
  margin-top: -1px;
}

/* Badges */
.wishlist-count,
#cart-count {
  position: absolute;
  top: -5px;
  right: -9px;
  z-index: 1;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #892DE1;
  color: #ffffff;
  text-align: center;
  font-size: 9px;
  line-height: 15px;
  font-weight: 400;
}

/* Login Button */
.login-btn {
  display: inline-block;
  padding: 5px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #262626;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 42px;
  text-decoration: none;
}

.login-btn:hover {
  background-color: #15955E;
  color: #ffffff;
  border: 1px solid #15955E;
}
/* ------------------ */



/* Benner */
.benner {
    padding: 10px;
    text-align: center;
    margin-bottom: 10px;
}

.benner h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    color: #262626;
    margin-bottom: 10px;
    font-weight: 500;
    margin-top: 20px;
}

.benner p {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #262626;
}

/* Search */

.search-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto !important;
  border-radius: 200px;
  overflow: hidden;
  background: #f1f1f1;
  margin-top: 10px;
}

.search-input {
  flex: 1;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  outline: none;
  background: transparent;
  color: #333;
  height: 40px;
}

.search-button {
  background: #892DE1;
  color: white;
  border: none;
  padding: 0 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  border-radius: 200px;
}

.search-button:hover {
  background: #6e24b4;
}

.search-button i {
  font-size: 18px;
  margin: 0;
}

#search-error {
  width: 200px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  z-index: 1;
  margin: 0 auto;
  margin-top: 5px;
}
/* ------------------ */


/* ------Category------ */
#main_category {
  display: flex;
  max-width: 350px;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px 20px 10px 20px;
}

#main_category a {
  text-decoration: none;
  color: #000;
}

#main_category a:hover {
  text-decoration: none;
  color: #6e24b4;
}

#main_category1 {
  text-align: center;
}

#main_category1 h3 {
  border-radius: 100%;
  background: #0000001c;
  height: 50px;
  width: 50px;
  display: inline-block;
  text-align: center;
  align-content: center;
}

#main_category1 h3 i {
  text-align: center;
  margin: auto;
  color: #15955E;
  font-size: 30px;
}

#main_category1 p {
  margin-top: 5px;
}



#main_category2 {
  text-align: center;
}

#main_category2 h3 {
  border-radius: 100%;
  background: #0000001c;
  height: 50px;
  width: 50px;
  display: inline-block;
  text-align: center;
  align-content: center;
}

#main_category2 h3 i {
  text-align: center;
  margin: auto;
  color: #FFB743;
}

#main_category2 p {
  margin-top: 5px;
}


/* Sub */

#sub_category2 {
    display: none;
}

#sub_category {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 0 95px;
  width: fit-content;
  margin: 40px auto;
  margin-top: 50px;
}

#sub_category_item {
  background: #f0f0f0;
  padding: 5px 20px;
  border-radius: 700px;
}
/* ------------------ */


/* ------Main Apps Content------ */
#content_row {
  padding: 0 10px;
}

#app_box {
  color: #000;
  text-decoration: none;
}

#app {
  margin: 20px 0;
  text-align: center;
  background: #fff;
  padding: 15px;
  border-radius: 7px;
  display: flex;
  color: #484848;
}

#app:hover {
  background: #F5F5F5;
}

#home_app_info {
  width: 100%;
  text-align: left;
  padding-left: 15px;
}

.attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
  border-radius: 12px;
  border-width: 0;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
  height: 68px;
  width: 68px;
}

#apps_title {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .00625em;
  line-height: 1.5rem;
  margin: 2px 0;
}

.app-category {
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .0142857143em;
  line-height: 1.25rem;
}

.app-category p {
  margin: 0;
}

.app-license2 {
  font-size: 13px;
  font-weight: 400;
  align-content: center;
  text-align: center;
  padding: 3px 0px;
  width: fit-content;
}

#homepage_meta {
  margin-top: 3px;
  display: flex;
  gap: 20px;
}

#home_rating {
  color: #5e5e5e;
  margin: 0;
  font-size: 13px;
}
/* ------------------ */



/* Single App Page */

#user_data_safty_section div h5 {
  font-size: 17px;
  text-align: left;
  color: #333;
}

#whatsnew_setion div h5 {
  font-size: 17px;
  text-align: left;
  color: #333;
}

#related_apps_section div h5 {
  font-size: 17px;
  text-align: left;
  color: #333;
  padding-left: 10px;
  padding-top: 5px;
  margin-top: 5px;
}

#related_app img {
  height: 60px;
  width: 60px;
  box-shadow: 0px 0px 3px #00000036;
  border-radius: 12px;
  min-width: 60px;
  max-width: 60px;
}

.single-app-container {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 50px;
    padding: 10px;
}

.app-image {
  height: 200px;
  width: 200px;
}

.app-image img {
  width: 100%;
  height: 100%;
  border-radius: 35px;
  box-shadow: 0 2px 8px #ccc;
}

.app-info h1 {
    font-size: 32px;
    margin-bottom: 0px;
}

.app-subtitle {
  padding: 0;
  margin: 0;
}

#app_meta {
  margin-top: 18px;
  display: flex;
}

.app-developer {
  font-weight: 400;
  margin-right: 10px;
  background-color: rgba(0, 137, 123, 0.08);
  align-content: center;
  padding: 0 10px;
  border-radius: 5px;
  color: #00897b;
}

.app-developer i {
  color: #3001d7;
}

.app-license1 {
  background: #FFD43B;
  padding: 0;
  margin-left: 10px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 400;
  height: 28px;
  align-content: center;
  text-align: center;
  margin-top: 1px;
  padding-left: 20px;
  padding-right: 20px;
}

.app-tabs {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0px 10px;
}


.app-tabs .tab-content {
  border: 0.1px solid #e8e8e8;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.about_app {
  border: 0.1px solid #e8e8e8;
  padding: 20px;
  border-radius: 10px;
}

#about_title {
  font-size: 21px;
  margin-bottom: 10px;
  display: flex;
}

#about_title i {
  margin-left: 18px;
  font-size: 23px;
  margin-top: 0px;
}

.about_app p {
  margin-top: 16px;
}

.read-more-btn {
  font-size: 13px;
  background: #892DE1;
  color: white;
  border: none;
  padding: 7px 25px;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 0px;
  margin-top: 10px;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background: #6e24b4;
}



/* rating-review Section================================================================================ */


#rating-review_title {
  font-size: 21px;
  margin-bottom: 10px;
  display: flex;
}

#rating-review_title i {
  margin-left: 18px;
  font-size: 23px;
  margin-top: 0px;
}

/* rating List====================================== */

.omar-review-comment {
  margin-top: 8px;
  font-size: .875rem;
  letter-spacing: .0142857143em;
  line-height: 1.25rem;
  overflow-wrap: anywhere;
}

/* Sidebar___________________===========================___________________--- */

#sidebar {
  margin-top: 55px;
  margin-right: 10px;
  right: 0;
  top: 135px;
  position: sticky;
  margin-bottom: 59px;
}

.sidebar_cotent {
  padding: 12px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px #0000001a;
  margin-bottom: 17px;
}

#download_section {
  padding-bottom: 12px;
}

/* Free */

#download-btn {
  width: 100%;
  padding: 5px 40px;
  border: none;
  border-radius: 5px;
  background: #892DE1;
  color: #ffffff;
  transition: all 0.3s;
}

#download-btn:hover {
  background: #6e24b4;
}

.go-download {
  width: 100%;
  padding: 5px 40px !important;
  border: none;
  border-radius: 5px;
  background: #892DE1;
  color: #ffffff;
  display: block;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  margin-bottom: 24px;
}
.go-download:hover {
  background: #6e24b4;
}

#download-btn i {
  margin-right: 5px;
}

.file-size {
  font-size: 14px;
  font-weight: 400;
  color: #3b3b3b;
  margin-bottom: 7px;
  margin-top: 7px;
}

.app-version {
  font-weight: 400;
  color: #3b3b3b;
  font-size: 14px;
}

.app-version strong {
  font-weight: 400;
  color: #3b3b3b;
}

.app-license {
  font-weight: 400;
  color: #3b3b3b;
  font-size: 14px;
}

.app-license strong {
  font-weight: 400;
  color: #3b3b3b;
}

.app-released {
  font-weight: 400;
  color: #3b3b3b;
  font-size: 14px;
  margin-top: 7px;
}

.app-released strong {
  font-weight: 400;
  color: #3b3b3b;
}

#user_data_safty_section ul li {
  color: #3b3b3b;
}

.app-whats-new {
  color: #3b3b3b;
}

.app-whats-new .small.text-muted {
  color: #3b3b3b !important;
}

.single_app-category p a {
  color: #3b3b3b !important;
}

.site-main #content_site {
  margin-bottom: 10px;
}


/* Pro */

.app-price {
  text-align: center;
  font-size: 20px;
}

#btn-checkout {
  width: 100%;
  padding: 5px 40px;
  border: none;
  border-radius: 5px;
  background: #892DE1;
  color: #ffffff;
}

#btn-checkout:hover {
  background: #6e24b4;
}

#btn-checkout i {
  margin-right: 5px;
}


/* ========================== */

#related_apps_section {
  padding: 0px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px #0000001a;
  margin-bottom: 17px;
}


#related_app_box {
  text-decoration: none;
  color: #000000;
}

#related_app {
  display: flex;
  padding: 10px;
}


#related_app:hover {
  background-color: #00000005;
}

#related_app #apps_title {
  margin-bottom: 0px;
  margin-top: 0px;
}

.download-info {
  color: #3b3b3b !important;
}

.app-category-singel {
  font-size: .75rem;
  letter-spacing: .0142857143em;
  line-height: 1.25rem;
  color: #3b3b3b;
  margin-top: -1px;
}

.app-category-singel p {
  margin: 0;
}

#related_app #home_rating {
  font-size: 12px;
  color: #3b3b3b;
  margin-top: 3px;
}




    /*  */                                                                                      /*  */
   /*  */                                                                                      /*  */
  /* ++++++++++++ ↑↑ The codes above are sorted & the codes below are not sorted. ↓↓ ------------ */
 /*  */                                                                                      /*  */
/*  */                                                                                      /*  */




#contact-me {
  background: #0D774B;
  border: 0;
  color: white;
  border-radius: 5px;
  padding: 5px 20px;
  margin-top: 24px;
  font-size: 15px;
  align-content: center;
  display: flex;
  gap: 7px;
}




/* ======================= */





/* ------------------- */


.footer {
  background: #f8f8f8;
  padding: 40px 5% 2% 5%;
  font-family: 'Roboto', sans-serif;
  color: #333;
  width: 100%;
  margin-top: 25px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.child_sidebar h1 {
  color: #892DE1;
  margin-bottom: 13px;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.child_sidebar p,
.child_sidebar a {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  text-decoration: none;
}

.child_sidebar a:hover {
  color: #892DE1;
  text-decoration: none;
}

.child_sidebar a .bi.bi-stickies { height: 13.7px; margin-top: -2px; }
.child_sidebar a .bi.bi-file-earmark { height: 16px; width: auto; margin-top: -2.4px; }
.child_sidebar a .bi.bi-lock { height: 16px; width: auto; margin-top: -2px; }
.child_sidebar a .bi.bi-file-earmark-lock { height: 16.5px; width: auto; margin-top: -2.6px; }
.child_sidebar a .bi.bi-cash-coin { height: 16px; width: auto; margin-top: -2.6px; }

.social-links {
  list-style: none;
  padding: 0;
}

.social-links li {
  margin-bottom: 10px;
}

.social-links a {
  color: #333;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.social-links a:hover {
  color: #892DE1;
}

.social-links i {
  font-size: 18px;
}

.bi {
  margin-right: 6px;
}

.fa-solid.fa-headphones {
  margin-right: 6px;
}

.fa-solid.fa-blog {
  margin-right: 6px;
}

#next1 {
  margin-left: 8%;
}

.copyright {
  text-align: center;
  font-size: 15px;
  color: #666;
  border-top: 1px solid #ddd;
  padding-top: 2% !important;
  margin-top: 30px !important;
  margin-bottom: 20px;
}

#header2 {
  display: none;
}

.mobile-menu-container {
  display: none;
}

/* ============================================ */

.action-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 137, 123, 0.08);
  border: none;
  color: #00897b;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out;
}

.action-button:hover {
  background-color: rgba(0, 137, 123, 0.15);
}

.my-share-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 137, 123, 0.08);
  border: none;
  color: #00897b;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out;
}

.my-share-button:hover {
  background-color: rgba(0, 137, 123, 0.15);
}
        
        /* Modal Overlay */
.share-modal-overlay {
  display: none; /* Initially hidden */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.share-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: none;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: slide-up 0.3s ease-out;
}

@keyframes slide-up {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Modal Header */
.share-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.social-icon-link {
  background: #ffffff00 !important;
}

.social-icon-link span {
  color: #000 !important;
}

/* Close Button */
.share-modal-close {
  color: #aaa;
  font-size: 28px;
  cursor: pointer;
}

.share-modal-close:hover,
.share-modal-close:focus {
  color: black;
}

/* Modal Body (Social Icons) */
.share-modal-body {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.social-icon-link {
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 24px;
}

.social-icon.x-icon { background-color: #000000; font-size: 30px; }
.social-icon.whatsapp-icon { background-color: #25D366; font-size: 30px; }
.social-icon.email-icon { background-color: #ccc; font-size: 30px; }

/* Modal Footer (Copy Link) */
.share-modal-footer {
  margin-top: 25px;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

#postLinkInput {
  flex-grow: 1;
  border: none;
  padding: 12px;
  font-size: 14px;
  background-color: #f9f9f9;
  color: #333;
  outline: none;
}

#copyLinkBtn {
  background-color: transparent;
  border: none;
  border-left: 1px solid #ddd;
            padding: 12px 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            color: #333;
        }

        #copyLinkBtn:hover {
            background-color: #f0f0f0;
        }

        #copyLinkBtn.copied {
            color: #15955E;
        }

.share-image {
  height: 70px;
  width: 70px;
}

.share-image img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}






/* =========================================+++++++++++++++++++++++++++++++++++ */

/* NOT Login */

#openReviewFromBtn-not_login {
  font-size: 13px;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  background-color: #892DE1;
  color: #fff;
  margin-left: 58.5%;
  transition: background 0.3s;
}

#openReviewFromBtn-not_login:hover {
  background-color: #7428BD;
}

#review_from_dailog-not_login {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

#review_from_content-not_login {
  background-color: #fefefe;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: slide-up 0.3s ease-out;
  margin: auto;
  padding: 20px;
  border: none;
  width: 90%;
  max-width: 500px;
}

.single_app-category {
  font-size: 18px;
  letter-spacing: .0142857143em;
  line-height: 1.25rem;
  color: #3b3b3b;
  margin-top: 20px;
}

.app-info {
  align-content: center;
}

.review_from_dailog-close-not_login {
  cursor: pointer;
  text-align: right;
  font-size: 25px;
  font-weight: 300;
  width: 100%;
  height: 0;
  display: block;
  margin-top: -9.9px;
}

#review_from_content-not_login h1 {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
}

#review_from_content-not_login h1 a {
  text-decoration: none;
  color: #892DE1;
}

#review_from_content-not_login h1 a:hover {
  text-decoration: none;
  color: #7428BD;
}


#review_from_content-not_login p {
  margin-bottom: 0;
  text-align: center;
  margin-top: 8px;
  font-size: .875rem;
  letter-spacing: .0142857143em;
  line-height: 1.25rem;
  overflow-wrap: anywhere;
}

/* Login */

#openReviewFromBtn {
  font-size: 13px;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  background-color: #892DE1;
  color: #fff;
  margin-left: 58.5%;
  transition: background 0.3s;
}

#openReviewFromBtn:hover {
  background-color: #7428BD;
}

#review_from_dailog {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

#review_from_content {
  background-color: #fefefe;
  padding: 20px;
  border: none;
  width: 90%;
  max-width: 750px;
  border-radius: 7px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: slide-up 0.3s ease-out;
}

.review_from_dailog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.review_from_dailog_image {
  height: 55px;
  width: 55px;
  box-shadow: 0px 0px 5px #d0d0d0;
  border-radius: 5px;
}

.review_from_dailog_image img {
  height: 100%;
  width: 100%;
  border-radius: 5px;
}

.review_from_dailog-close {
  color: #aaa;
  font-size: 28px;
  cursor: pointer;
}

.stars {
  color: #FFB400;
  font-size: 14px;
  letter-spacing: .3em;
}

.stars span {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
}
.stars span.active,
.stars span:hover {
    color: #FFB400;
}

#review_from {
  width: 100%;
  height: 56px;
  align-content: center;
  padding: 15px;
  min-height: 56px;
  border-radius: 5px;
  border: 0.5px solid #00000045;
}

#review_policy {
  font-size: 14px;
  letter-spacing: .002em;
  margin-top: 15px;
  color: #797979;
}

#review_submit {
  margin-top: 10px;
  padding: 7px 30px;
  font-size: 16px;
  background-color: #892DE1;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  margin-left: 84.6%;
  text-align: right;
}

#review_submit:hover {
  background-color: #7428BD;
}

/* hhjjhk */

#review_submit2 {
  margin-top: 10px;
  padding: 7px 30px;
  font-size: 16px;
  background-color: #d9d9d9;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  margin-left: 84.6%;
  text-align: right;
}

/* LIst==================================================== */




.omar-review-item {
  margin-top: 30px;
}

.comment_author {
  height: 50px;
}

.review-avatar-circle {
    display: inline-block;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
    vertical-align: middle;
}

.star svg {
  height: 14px;
}

.review-date {
  margin-left: 10px;
  color: #888;
  font-size: 13px;
}

.toggle-review-btn {
  border: none;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  background: #FFF;
  color: #00897b;
  font-weight: 400;
}

.toggle-review-btn:hover {
  background: rgba(0, 137, 123, 0.08);
}

.hidden-review {
    display: none;
}

#all_review_dailog {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none; /* Hide by default */
  justify-content: center;
  align-items: center;
  align-content: center;
}

#all_review_content {
  background-color: #fefefe;
  width: 100%;
  max-width: 750px;
  height: 80vh; /* 👈 Scrollable height */
  overflow-y: auto; /* 👈 Scroll only inside this */
  border-radius: 10px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
    animation: slide-up 0.3s ease-out;
  margin: auto;
}

.all_review_dailog-header {
  padding: 20px;
  background-color: #fefefe;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 1px 1px 3px #0000002c;
}

.all_review_dailog_image {
  height: 60px;
  width: 60px;
}

.all_review_dailog_image img {
  height: 100%;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0px 0px 5px #00000024;
}

.all_review_dailog-close {
  color: #aaa;
  font-size: 28px;
  cursor: pointer;
}

.all_review_dailog-close:hover {
  color: #000000;
  font-size: 28px;
  cursor: pointer;
}

#all_review_item {
  padding: 10px 25px;
}



/* =================== */

.excerpt-content {
  height: 120px;
  overflow: hidden;
  position: relative;
  color: #333;
  line-height: 1.6em;
  letter-spacing: .0142857143em;
  font-size: 0.97em;
}

.excerpt-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 90%);
  pointer-events: none;
}

.full-content {
  color: #333;
  line-height: 1.6em;
  letter-spacing: .0142857143em;
  font-size: 0.97em;
}

























.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px auto;
  max-width: 1200px;
  padding: 0 20px;
  margin-bottom: 50px;
}

.separator::before,
.separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #cccccc;
}

.separator-text {
  padding: 0 1em;
  font-size: 1.5em;
  color: #333333; /* Dark grey text color */
  font-weight: normal; /* The font in the image is not bold */
  white-space: nowrap; /* Prevents the text from wrapping */
}

.separator-text i {
  color: #ffcb00;
}
















/* ================================================================= */

/* --- Feature Showcase Section --- */

.feature-showcase-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin-bottom: 70px;
}

.feature-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 5px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0;
    border-radius: 7px;
}

.feature-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.feature-card {
  flex: 0 0 100%; /* On small screens, each card takes the full width */
  border-radius: 7px;
  scroll-snap-align: center;
  text-align: center;
  transition: transform 0.3s ease;
  height: auto; /* Height is allowed to adjust to content */
  width: 100%;
}

.feature-title {
    display: none;
}

.mobile-screenshot {
  height: auto; /* Height is allowed to adjust to content */
  width: 100%;
  max-height: 296px;
  border-radius: 7px;
}

.mobile-screenshot img {
  height: auto; /* Height adjusts to maintain aspect ratio */
  width: 100%;
  max-height: 296px;
  border-radius: 7px;
  object-fit: cover; /* Ensures the image covers the area without distortion */
}

/* --- Navigation Arrows --- */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 18px !important;
  color: #333;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, box-shadow 0.2s;
  margin: 0 -20px;
}

.nav-arrow:hover {
    background-color: #F7F8F8;
}

.nav-arrow.prev {
    left: 5px; /* Adjust position for smaller screens */
}

.nav-arrow.next {
    right: 5px; /* Adjust position for smaller screens */
}

iframe {
  border: 0;
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

/* --- Responsive Design with Media Queries --- */

@media (min-width: 501px) and (max-width: 800px) {
  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }

}

/* For tablets and larger screens */
@media (min-width: 801px) {
  .feature-card {
    flex: 0 0 526px; /* Return to original fixed width */
    height: 296px;
    width: 526px;
  }

  .mobile-screenshot {
    height: 296px;
    width: 526px;
  }

  .mobile-screenshot img {
    height: 296px;
    width: 526px;
  }

  .nav-arrow {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .nav-arrow.prev {
    left: 0;
  }

  .nav-arrow.next {
    right: 0;
  }
}

/* Hide arrows on very small screens where touch scrolling is prevalent */
@media (max-width: 480px) {
  .nav-arrow {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

}

/* --- Modal Viewer --- */
/* Modal Overlay */
#gallaryImageModal {
  display: none;
  position: fixed;
  top: 0; /* স্ক্রিনের একদম উপরে */
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.9); /* Dark overlay */
  z-index: 9999; /* Header এর উপরে থাকবে */
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Image inside Modal */
#gallaryImageModal .gallary_image_modal-content {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

/* Close Button */
.gallary_image_close-btn {
  position: absolute;
  top: 20px;
  left: 30px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 10001;
}

/* Left & Right Arrows */
.gallary_nav_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
}

.gallary_nav_arrow.left {
  left: 50px;
}
.gallary_nav_arrow.right {
  right: 50px;
}


/* Scroll */

body.modal-open {
  overflow: hidden;
}


.admin-reply {
  background: #f7f7f7ba;
  padding: 15px;
  border-radius: 5px;
  padding-bottom: 1px;
}

#reply_title {
  fill: rgb(32,33,36);
  stop-color: rgb(32,33,36);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .0142857143em;
  line-height: 1.25rem;
  margin-bottom: 10px;
  display: flex;
}

#reply_title i {
  fill: rgb(32,33,36);
  stop-color: rgb(32,33,36);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .0142857143em;
  line-height: 1.25rem;
  padding-top: 0px;
}

#reply_date {
  color: rgb(95,99,104);
  fill: rgb(95,99,104);
  stop-color: rgb(95,99,104);
  font-family: Roboto,Arial,sans-serif;
  line-height: 1rem;
  font-size: .80rem;
  letter-spacing: .025em;
  font-weight: 400;
  margin-left: auto;
}

.admin-reply p {
  margin-top: 8px;
  font-size: .875rem;
  letter-spacing: .0142857143em;
  overflow-wrap: anywhere;
  color: #737373;
}



#bottom_content {
  left: 0;
}


/*featured*/


.app-license3 {
  font-size: 13px;
}

.featured {
  display: flex;
  padding: 10px;
  border-radius: 5px;
  margin-top: 20px;
  box-shadow: 0 0 5px #e1e1e1;
}

.featured-logo {
  margin-right: 20px;
  min-width: 185px;
  max-width: 190px;
  min-height: 180px;
  max-height: 100%;
}

.featured-logo img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 5px;
}

.featured-content {
  width: 790px;
  padding-top: 7px;
}

.featured-content h1 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #484848;
}

#featured_datails {
  margin-top: 8px;
  font-size: .875rem;
  letter-spacing: .0142857143em;
  line-height: 1.25rem;
  overflow-wrap: anywhere;
  color: #797979;
  margin-right: 100px;
}

.featured-content p {
  margin: 0px;
}

.app-license2 {
  background: #FFD43B;
  padding: 0;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 400;
  height: 25px;
  align-content: center;
  text-align: center;
  margin-top: 1px;
  padding-left: 17px;
  padding-right: 17px;
}


.featured-options {
  border-left: 0.5px solid #e3e3e3;
  width: 311px;
  text-align: center;
}

#featured_add_wishlist {
  width: 100%;
  display: block;
  text-align: right;
  margin-top: 6px;
}

.featured-options .action-button {
  background: transparent;
  padding: 0;
  margin: 0;
}

.view-demo {
  text-decoration: none;
  font-size: 13.5px;
}

.view-demo i {
  border-radius: 3px;
  padding: 8px 8px;
  color: #892DE1;
  margin-top: 30px;
  margin-bottom: 40px;
  border: 1px solid #892DE1;
  background: transparent;
  text-decoration: none;
  font-size: 13.5px;
}

.view-demo span {
  border-radius: 3px;
  padding: 7px 30px;
  color: #892DE1;
  margin-top: 30px;
  margin-bottom: 40px;
  border: 1px solid #892DE1;
  background: transparent;
  text-decoration: none;
  font-size: 13.5px;
}

.view-demo span:hover {
  border: 0;
  padding: 8px 31px;
  background: #8523FF;
  color: #fff;
  text-decoration: none;
}


/* --- Features Section --- */
.features-section {
  padding: 20px 10px;
  width: 1200px;
  margin: 0 auto;
}

.features-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F8F9FA;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc5c5;
}

.feature-icon-big {
  font-size: 20px;
  color: var(--primary-blue);
  background-color: #15955E1C;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.fas.fa-download {
  font-size: 17px;
}

.feature-icon-big i {
  transform: scale(1.5);
  color: #15955E;
}

.feature-text-big h1 {
  font-size: 15px;
  margin-top: 8px;
}

.feature-text-big h2 {
  font-size: 15px;
  margin-top: 8px;
}

.feature-text-big h3 {
  font-size: 15px;
  margin-top: 8px;
}

.feature-text-big p {
    color: var(--light-text);
}

.features-list h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.features-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.features-list li {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: #27AE60;
}




/* 404 */

#go_to_home {
  border: none;
  border-radius: 5px;
  padding: 7px 25px;
  background: #892DE1;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 40px;
}

#go_to_home:hover {
  background: #6e24b4;
}

#go_to_home::before {
  content: "❮";
  display: inline-block;
  margin-right: 5px;
}


/* login signup */

#login_and_signup {
  display: flex;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  gap: 37px;
  margin-top: 60px;
  margin-bottom: 60px;
}

#custom-login-form {
  background: #ffffff;
  width: 100%;
  padding: 50px;
  margin: 10px auto;
  border-radius: 10px;
  box-shadow: 0px 0px 5px #0000001f;
}

#username_or_email-login {
  margin-bottom: 10px;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

#login_password {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input {
  width: 100%;
  padding-right: 40px;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #666;
}


#login_submit {
  width: 100%;
  margin-top: 10px;
  background: #8b00ff;
  border: none;
  padding: 10px;
  color: #fff;
  border-radius: 5px;
}

#forgot_remember {
  display: flex;
  margin-top: 14px;
  margin-bottom: 4.5px;
}


/* Remember checkbox style */
.remember-checkbox {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 2px solid #8b00ff;
  border-radius: 50%; /* 👈 circle */
  box-sizing: border-box;
}

/* Checked state */
.remember-checkbox input:checked ~ .checkmark {
  background-color: #8b00ff;
}

.remember-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Tick mark */
.remember-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.remember-checkbox .checkmark:after {
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#login_forgot_password {
  width: 100%;
  background: transparent;
  border: none;
  color: #8b00ff;
  border-radius: 5px;
  text-decoration: none;
  padding: 1.7px 0;
}

#login_forgot_password button {
  display: flex;
  float: right;
  background: transparent;
  border: none;
  color: #ff0000;
  border-radius: 5px;
  text-decoration: none;
  padding: 5px;
  align-content: end;
}





/* signup */

#custom-signup-form {
  padding-left: 22px;
  cursor: pointer;
  font-size: 14.5px;
  user-select: none;
  display: flex;
  align-items: center;
  color: rgba(51, 51, 51, 0.6);
  width: 200px;
  align-content: center;
  font-family: "Source Sans 3", sans-serif;
}

.remember-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.remember-checkbox .checkmark {
  position: absolute;
  left: 0;
  background: #ffffff;
  width: 100%;
  padding: 50px;
  margin: 10px auto;
  border-radius: 10px;
  box-shadow: 0px 0px 5px #0000001f;
}

#signup_username {
  margin-bottom: 10px;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

#signup_email {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

#signup_password {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Signup Password Field Wrapper */
#custom-signup-form .password-wrapper {
  position: relative;
  width: 100%;
}

#custom-signup-form .password-wrapper input {
  width: 100%;
  padding-right: 40px;
}

#custom-signup-form .toggle-password {
  position: absolute;
  top: 59.7%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  color: #666;
}

#signup_submit {
  width: 100%;
  margin-top: 10px;
  background: #8b00ff;
  border: none;
  padding: 10px;
  color: #fff;
  border-radius: 5px;
}



/* profile //==''''======================================*/

.avatar.avatar-32.photo {
  border-radius: 100%;
  border: 1px solid #892DE1;
}

.ota-my-account-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 50px 130px;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 7px;
  background: #FDFEFE;
  margin-bottom: -25px;
}

#ota-account-nav {
  min-width: 240px; 
  background: #FDFDFD; 
  border-radius: 7px; 
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.user-profile {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 0.5px solid #00000026;
  padding-left: 25px;
  padding-right: 25px;
  margin-top: 25px;
}

#profile_options {
  text-align: left;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  list-style: none;
}

#profile_options li {
  margin-bottom: 10px;
}

#profile_options li a {
  text-decoration: none; 
  color: #892DE1;  
  font-size: 16px; 
  padding: 10px; 
  border-radius: 5px; 
  display: block; 
  transition: all 0.3s ease;
  font-weight: 400;
}

#profile_options li a:hover,
#profile_options li a.active-tab {
  background: #8a2de11e;
  font-weight: 400 !important;
}

#ota-account-content {
  flex-grow: 1;
  background: #FDFDFD;
  padding: 30px;
  border-radius: 7px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  min-width: 300px;
  max-height: 431px;
  overflow-y: auto;
  scrollbar-width: none;
}


/* Checkout=-===================================================== */

.payment-methods {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 6px;
    max-width: 400px;
    margin: auto;
    font-family: Arial, sans-serif;
}

.payment-option {
    display: block;
    margin-bottom: 15px;
    cursor: pointer;
}

.payment-option input[type="radio"] {
    accent-color: #e2136e; /* bKash Pink */
    margin-right: 5px;
}

.payment-option span {
    font-weight: 600;
}

.payment-box {
    display: none;
    margin-top: 10px;
    padding: 10px 15px;
    background: #f8f8f8;
    border-left: 3px solid #e2136e;
    border-radius: 5px;
}

.payment-box label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.payment-box input {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.privacy-note {
    font-size: 13px;
    color: #555;
    margin-top: 15px;
}

#place_order {
    display: block;
    width: 100%;
    background: #0073e6;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

#place_order:hover {
    background: #005bb5;
}


.checkout-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

#checkout_section {
  display: flex;
  border: 1px solid #dddddd52;
  border-radius: 7px;
  background: #fff;
  padding: 25px;
  gap: 30px;
  box-shadow: 0px 0px 5px #e8e8e8;
}

#checkout_right {
  width: 100%;
}

#checkout_form_title {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

#checkout_left {
  width: 100%;
}

#product_info_title {
  padding-bottom: 10px;
}

/* ................ */

#card-element {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 20px;
  height: 46px;
  align-content: center;
}

.item-table { 
  width: 100%; 
  border-collapse: collapse; 
}

.item-table th, 
.item-table td { 
  border: 1px solid #eee; 
  padding: 12px; 
  text-align: left; 
}

.item-table th { 
  background-color: #f9f9f9; 
}

.total-row td { 
  font-weight: bold; 
  text-align: right; 
}

.checkout-form h3 {
  border-bottom: 1px solid #ddd; 
  padding-bottom: 10px; 
}

.form-group { 
  margin-bottom: 15px; 
}

.form-group label { 
  display: block;
  margin-bottom: 5px; 
  font-weight: bold; 
}

.form-group input { 
  width: 100%; 
  padding: 10px; 
  border: 1px solid #ccc; 
  border-radius: 4px; 
  box-sizing: border-box; 
}

.purchase-button { 
  display: block; 
  width: 100%; 
  padding: 15px; 
  background-color: #2a72b5; 
  color: white; border: none;
  border-radius: 5px; 
  font-size: 18px; 
  cursor: pointer; 
  text-align: center; }

.purchase-button:hover { 
  background-color: #25639e; 
}

.payment-info { 
  margin-top: 20px; 
}

.form-error { 
  color: red; 
  font-size: 14px; 
}


/* Wishlist============================================================ */

#wishlist_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 11px;
  padding-top: 28px;
}

.wishlist-item {
  display: flex;
  padding: 10px;
  background: #fff;
  box-shadow: 0 0 5px #eaeaea;
  margin: 0 10px;
  border-radius: 5px;
  gap: 22px;
  margin-bottom: 25px;
  position: relative;
}

.wishlist-item .item-icon-wrapper {
  border-radius: 23px;
  min-height: 130px;
  min-width: 130px;
  width: 130px;
  height: 130px;
}

.wishlist-item .item-icon-wrapper img {
  border-radius: 23px;
  height: 100%;
  width: 100%;
}

.wishlist-item .item-details {
  width: 90%;
}

.wishlist-item .item-details #home_rating {
  height: fit-content;
  margin-top: 17.5px;
  margin-bottom: 22.5px;
  color: #ffbf00;
}

.wishlist-item .item-details .view-btn {
  border-radius: 5px;
  padding: 5.5px 20px;
  color: #892DE1;
  margin-top: 30px;
  margin-bottom: 40px;
  border: 1px solid #892DE1;
  background: transparent;
  text-decoration: none;
  font-size: 13.5px;
}

.wishlist-item .item-details .view-btn i {
  margin-top: 5px;
  margin-right: 5px;
}

.wishlist-item .item-details .view-btn:hover {
  border-radius: 5px;
  padding: 5.5px 20px;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 40px;
  border: 1px solid #892DE1;
  background: #892DE1;
  text-decoration: none;
  font-size: 13.5px;
}

.delete-btn.remove-from-wishlist {
  height: fit-content;
  margin: auto;
  padding: 5px 11px;
  border: none;
  background: #f9f9f9;
  color: #f00;
  font-size: 20px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0px 5px 0px 5px;
  transition: all 0.5s;
}

.delete-btn.remove-from-wishlist:hover {
  background: #ff0000;
  color: #ffffff;
}

/* no login */

#no_login_for_wishlist {
  border-radius: 500px;
  padding: 7px 25px;
  color: #892DE1;
  margin-top: 30px;
  margin-bottom: 40px;
  border: 1px solid #892DE1;
  background: transparent;
}

#no_login_for_wishlist:hover {
  background: #6e24b4;
  color: #ffffff;
}

/* no found */

#not_found_for_wishlist {
  border-radius: 500px;
  padding: 7px 25px;
  color: #892DE1;
  margin-top: 30px;
  margin-bottom: 40px;
  border: 1px solid #892DE1;
  background: transparent;
}

#not_found_for_wishlist:hover {
  background: #6e24b4;
  color: #ffffff;
}

#not_found_for_wishlist::before {
  content: "❮";
  display: inline-block;
  margin-right: 5px;
}

/* alert */

#custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#custom-alert-box {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    text-align: center;
    width: 90%;
    max-width: 400px;
    animation: fadeIn 0.2s forwards;
}

#custom-alert-box h2 {
  margin-top: 0;
  color: #892DE1;
}

#custom-alert-box h2 i {
  margin: 0;
}

#custom-alert-box p { 
  color: #333;
   margin-bottom: 
   20px; 
   font-size: 16px; 
  }

#custom-alert-ok-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 5px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

@keyframes fadeIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.hidden { display: none !important; }




/* pagenav============================================================================================== */

/* --- Pagination General Style --- */
.pagination {
  margin-top: -20px;
  margin-bottom: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* --- Pagination Links (Numbers) --- */
.pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 4px; /* হালকা গোলাকার কোণা */
}

/* --- Hover Effect --- */
.pagination .page-numbers:hover {
    background-color: #f5f5f5;
    color: #892DE1; /* ওয়ার্ডপ্রেসের ডিফল্ট লিংক কালার */
}

/* --- Current/Active Page --- */
.pagination .page-numbers.current {
    background-color: #892DE1; /* অ্যাক্টিভ পেজের জন্য ভিন্ন রঙ */
    color: #fff;
    border-color: #892DE1;
    font-weight: bold;
    cursor: default;
}

/* --- Dots (...) --- */
.pagination .page-numbers.dots {
    border: none;
    background-color: transparent;
    padding: 10px 5px;
}

/* --- Previous/Next Links --- */
.pagination .prev,
.pagination .next {
    font-weight: 600;
}

.pagination i {
  margin: 0;
}







/* Full description */

.full-content h2, h3 {
  font-size: 1.5rem;
}


/* BLOG===================================================================== */

.blog_site {
  max-width: 1160px;
  margin: 20px auto;
  background: #FDFDFD;
  padding: 15px;
  border-radius: 7px;
  display: flex;
  gap: 20px;
  box-shadow: 0 0 5px #e1e1e1;
}

.post_thumb img {
  height: 200px;
  width: 300px;
}

#single_blog .post_datails {
  margin-bottom: 100px;
}

.post_datails a {
  text-decoration: none;
}

.post_datails a h1 {
  font-size: 1.8rem;
  padding: 0;
  margin: 0;
  color: #000;
  margin-bottom: 8px;
}

.post_category a {
  color: #892DE1;
  text-decoration: none;
}

.post_category a:hover {
  color: #7a2bc5;
}

.post_datails a h1:hover {
  color: #892DE1;
}

.post_datails p {
  margin-top: 6px;
  letter-spacing: .0142857143em;
  line-height: 1.25rem;
  overflow-wrap: anywhere;
  margin-bottom: 8px;
}

#read_more-btn {
  background: #8b00ff;
  border: none;
  border-radius: 5px;
  padding: 5px 20px;
  color: #fff;
}

#read_more-btn:hover {
  background: #6e24b4;
  border: none;
  border-radius: 5px;
  padding: 5px 20px;
  color: #fff;
}

/* single--- */

#single_blog {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 180px;
  margin-top: 27px;
  box-shadow: 0 0 3px #0000002c;
  border-radius: 5px;
}

#single_blog .post_category a {
  color: #892DE1;
  text-decoration: none;
}

#post_category-i1 {
  color: #008000;
}

#single_blog .my-share-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 137, 123, 0.08);
  border: none;
  color: #00897b;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out;
  height: fit-content;
  margin: auto 0;
}

#single_blog .my-share-button:hover {
  background-color: rgba(0, 122, 110, 0.24);
}

#single_blog .post_thumb {
  margin-bottom: 50px;
}


#single_blog .post_thumb img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.login-btn .bi.bi-person {
  font-size: 13px;
}

/* copy */

/* =========================================
   ফিচার ১: কাস্টম কোড ব্লকের জন্য স্টাইল
   ========================================= */
.custom-code-wrapper {
    position: relative;
    background-color: #2d2d2d;
    color: #f8f8f2;
    border: 1px solid #444;
    border-radius: 6px;
    margin: 2em 0;
    font-family: 'Fira Code', 'Courier New', Courier, monospace;
}

.custom-code-wrapper pre {
    margin: 0; 
    padding: 50px 70px; /* উপরে-নিচে 50px, ডানে-বামে 70px */
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-x: auto; 
}

.custom-code-wrapper code {
    font-size: 15px; 
    line-height: 1.6;
}

.custom-code-wrapper .custom-copy-btn {
    position: absolute; 
    top: 10px; right: 10px;
    background-color: #444; 
    color: #f8f8f2;
    border: 1px solid #666; 
    border-radius: 6px;
    width: 36px; 
    height: 36px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    cursor: pointer; 
    transition: all 0.2s ease;
}

.custom-code-wrapper .custom-copy-btn:hover { background-color: #555; }
.custom-code-wrapper .custom-copy-btn.copied {
    background-color: #50fa7b; 
    color: #282a36; 
    border-color: #50fa7b;
}

/* সিনট্যাক্স হাইলাইটিং ক্লাস */
.code-keyword { color: #ff79c6; }
.code-string { color: #f1fa8c; }
.code-classname { color: #50fa7b; }
.code-comment { color: #6272a4; font-style: italic;}

/* =========================================
   "Copied!" মেসেজের জন্য নতুন স্টাইল
   ========================================= */
.code-copied-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  z-index: 10;
}

/* =========================================
   রেসপন্সিভ ডিজাইনের জন্য মিডিয়া কোয়েরি
   ========================================= */
/* ট্যাবলেট এবং মোবাইল ডিভাইসের জন্য (স্ক্রিনের প্রস্থ 768px বা তার কম হলে) */
@media (max-width: 768px) {
    .custom-code-wrapper pre {
        /* পাশের প্যাডিং 70px থেকে কমিয়ে 20px করা হলো */
        padding-left: 20px;
        padding-right: 20px;
        /* উপরের প্যাডিং 50px থেকে 40px করা হলো */
        padding-top: 40px; 
        /* নিচের প্যাডিং 50px থেকে 20px করা হলো */
        padding-bottom: 20px;
    }

    .custom-code-wrapper code {
        /* ছোট স্ক্রিনে ফন্টের আকার সামান্য কমানো হলো */
        font-size: 14px;
    }
    
    .custom-code-wrapper .custom-copy-btn {
        /* বাটনটিকে আরেকটু ছোট করা হলো */
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
    }
}



/* For Page */

.blog_site-page {
  max-width: 1160px;
  margin: 20px auto;
  background: #FDFDFD;
  padding: 15px;
  border-radius: 7px;
  display: flex;
  gap: 20px;
  box-shadow: 0 0 5px #e1e1e1;
}

.page_datails {
  padding: 20px 200px;
  width: 100%;
}

.page_title {
  display: flex;
  align-items: center;
  text-align: center;
  margin: auto;
  margin-bottom: 30px;
  margin-top: 0;
  max-width: 1200px;
}

.page_title::before,
.page_title::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #cccccc;
}

.separator-text {
  padding: 0 1em;
  font-size: 1.5em;
  color: #333333; /* Dark grey text color */
  font-weight: normal; /* The font in the image is not bold */
  white-space: nowrap; /* Prevents the text from wrapping */
}

.page_datails h1, h2, h3 {
  font-size: 1.6rem;
}

#page_text {
  margin-top: 50px;
  margin-bottom: 100px;
}


.page_datails p {
  margin-top: 16px;
  font-size: .875rem;
  letter-spacing: .0142857143em;
  line-height: 1.25rem;
  overflow-wrap: anywhere;
  margin-bottom: 1rem;
}


/* FOOTER */

#payment_getway_logo {
  display: flex;
  gap: 10px;
}

#payment_getway_logo .payment_getway_logo-item {
  max-height: 43px;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  min-width: 108px;
  object-fit: contain;
}


#app_add_wishlist {
  width: 100%;
  display: none;
  text-align: right;
  margin-top: 0px;
  height: 0;
  padding-right: 20px;
}

#app_add_wishlist .action-button {
  padding: 0;
  background: transparent;
}

#app_add_wishlist i {
  height: 0;
  width: 0;
  padding: 0;
  margin: 0;
}




.dropdown {
  position: relative;
  list-style: none;
}

.dropdown-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  background: #eeeded7a;
}

.dropdown-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 0;
  min-width: 180px;
  z-index: 999;
  transition: transform 0.3s ease;
  border-right: 0;
  border-top: 0;
  border-bottom: 0;
  border-radius: 0;
  width: 100%;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  padding: 8px 12px;
  display: block;
  color: #333;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
}





/* Responsive ||||||||||+++++++++++++++++++++++++++++++++++++++++||++++++++++++++++++++++++++++++++==|||||||||*/

/* Responsive Design For Mobile */

/* Responsive Design For Tablet */

/* Responsive Design For Desktop */


/* ডিফল্ট: ১ কলাম */
#content_row .my-col {
  flex: 0 0 100%;
  max-width: 100%;
}

/* 470px এর উপরে হলে 2 কলাম */
@media (min-width: 501px) {
  #content_row .my-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* 550px এর উপরে হলে 3 কলাম */
@media (min-width: 618px) and (max-width: 1199px) {
  #content_row .my-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
} @media (min-width: 1200px) {
  #content_row .my-col {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

.container-sm, .container {
  max-width: 100%;
}


/* Sign in */
.signin_first_body {
  background: #FDFEFE;
  margin-bottom: -25px;
}

.first_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 900px;
  padding: 40px;
  margin: 0 auto;
}

.first_container .form-box {
  flex: 1;
  text-align: left;
  padding-right: 40px;
}

.first_container .form-box h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
  font-weight: bold;
}

.first_container .form-box p {
  color: #444;
  margin-bottom: 25px;
  font-size: 15px;
}

/* Floating label field */
.first_container .input-group {
  position: relative;
  margin-bottom: 20px;
}

.first_container .input-group input {
  width: 100%;
  font-size: 15px;
  border: 1px solid #dcdcdc;
  border-radius: 8px !important;
  outline: none;
  transition: 0.2s;
  height: 49px;
  padding: 14px 12px;
  background: #FDFEFE;
}

.first_container .input-group label {
  position: absolute;
  left: 12px;
  top: 13px;
  color: #888;
  font-size: 15px;
  pointer-events: none;
  transition: 0.2s ease all;
  background: #FDFEFE;
  padding: 0 5px;
}
  
.first_container .input-group input:focus {
  border-color: #00a651;
}

.first_container .input-group input:focus + label,
.first_container .input-group input:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 13px;
  color: #00a651;
}

.first_container button {
  width: 100%;
  padding: 10px;
  border: none;
  background: #00a651;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.first_container button:hover {
  background: #008c45;
}

.first_container .illustration {
  flex: 1;
  text-align: center;
  margin-right: -90px;
  margin-left: 100px;
}

.first_container .illustration img {
  width: 90%;
  max-width: 350px;
}

@media (max-width: 768px) {
  .first_container {
    flex-direction: column;
    text-align: center;
  }
  
  .first_container .form-box {
    padding-right: 0;
  }
  
  .first_container .illustration img {
    width: 70%;
    margin-top: 20px;
  }
}

/* step2 */
.otp-input-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.otp-input {
  width: 56.7px;
  height: 56.7px;
  text-align: center;
  font-size: 1.2em;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  outline: none;
  background: #FDFEFE;
}

#send_code_again {
  color: #1CAB55;
  margin-bottom: 25px;
  font-size: 15px;
  text-align: end;
  margin-top: -10px;
}

.forgot_password {
  --tw-text-opacity: 1;
  color: rgb(21 128 61/var(--tw-text-opacity,1)) !important;
  margin-top: -15px;
  margin-bottom: 20px;
  text-align: end;
  cursor: pointer;
  text-decoration: none;
  background: none !important;
  width: fit-content !important;
}

.input-group {
  position: relative; /* এটি খুবই গুরুত্বপূর্ণ */
}

.password-toggle-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #767E89;
  margin: 0;
  font-size: 20px;
  z-index: 10; /* এই লাইনটি আইকনকে সবার উপরে নিয়ে আসবে */
}


/* ================ --------------------------*/

.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  text-align: center;
  align-content: center;
  align-items: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #555 !important;
  transition: 0.3s;
  font-size: 18px !important;
  text-decoration: none !important;
  background: #00000005;
}

.footer-social-link:hover {
  background: #0000000d;
}

.footer-social-link svg {
  margin: 0;
}

.footer-social-link .bi.bi-facebook { fill: #1877F2; }
.footer-social-link .bi.bi-youtube { fill: #FF0000; }
.footer-social-link .bi.bi-linkedin { fill: #0A66C2; }
.footer-social-link .bi.bi-instagram { fill: #E4405F; }
.footer-social-link .bi.bi-github { fill: #181717; }
.footer-social-link .bi.fa-x-twitter { fill: #0F1419; }



/* ------------------Contact Us------------------ */

.report_body {
  background: #FDFEFE;
  margin-bottom: -25px;
}

.report_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 900px;
  padding: 40px;
  margin: 0 auto;
}

.report_container .form-box {
  flex: 1;
  text-align: left;
  padding-right: 40px;
}

.report_container .form-box h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #111;
  font-weight: normal;
}

.report_container .form-box p {
  color: #444;
  margin-bottom: 20px;
  font-size: 15px;
}

/* Floating label field */
.report_container .input-group {
  position: relative;
  margin-bottom: 20px;
}

.report_container .input-group input {
  width: 100%;
  font-size: 15px;
  border: 1px solid #dcdcdc;
  border-radius: 8px !important;
  outline: none;
  transition: 0.2s;
  height: 49px;
  padding: 14px 12px;
  background: #FDFEFE;
}

.report_container .input-group label {
  position: absolute;
  left: 12px;
  top: 13px;
  color: #888;
  font-size: 15px;
  pointer-events: none;
  transition: 0.2s ease all;
  background: #FDFEFE;
  padding: 0 5px;
}
  
.report_container .input-group input:focus {
  border-color: #00a651;
}

.report_container .input-group input:focus + label,
.report_container .input-group input:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 13px;
  color: #00a651;
}

.report_container button {
  width: 100%;
  padding: 10px;
  border: none;
  background: #00a651;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.report_container button:hover {
  background: #008c45;
}

.report_container .illustration {
  flex: 1;
  text-align: center;
  margin-right: -90px;
  margin-left: 100px;
}

.report_container .illustration img {
  width: 90%;
  max-width: 350px;
}

@media (max-width: 768px) {
  .report_container {
    flex-direction: column;
    text-align: center;
  }
  
  .report_container .form-box {
    padding-right: 0;
  }
  
  .report_container .illustration img {
    width: 70%;
    margin-top: 20px;
  }
}

#message {
  width: 100%;
  font-size: 15px;
  border: 1px solid #dcdcdc;
  border-radius: 8px !important;
  outline: none;
  transition: 0.2s;
  padding: 14px 12px;
  background: #FDFEFE;
  min-height: 80px;
  height: 80px;
}


/* -------------Hire Developer-------------- */

.hire_container .profile-card {
  width: 400px;
}

.hire_developer_body {
  background: #FDFEFE;
  margin-bottom: -25px;
}

.hire_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 900px;
  padding: 40px;
  margin: 0 auto;
  margin-bottom: -30px;
}

.hire_container .illustration {
  flex: 1;
  text-align: center;
  margin-right: -120px;
  margin-left: 120px;
}

.hire_container .illustration .profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #e9ecef;
}

.hire_container .profile-card h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #111;
  font-weight: bold;
}

.hire_container .profile-card p {
  color: #444;
  margin-bottom: 25px;
  font-size: 15px;
  margin-top: -15px;
}

.hire_container .profile-card .skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hire_container .profile-card .skills-list li {
  background-color: #FDFDFD;
  border-radius: 5px;
  padding: 5px 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #343a40;
  text-align: left;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  min-height: 46px;
}

.hire_container .profile-card .skills-list li i {
  color: #007bff;
  font-size: 1rem;
  margin-right: 10px;
  width: 30px;
  text-align: center;
}

.hire_container .illustration .hire-button {
  background-color: #23CD44;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 8px 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

/* My Account */

#change-password form {
  width: 500px;
  margin: auto;
  text-align: center;
}

/* Floating label field */
#change-password .input-group {
  position: relative;
  margin-bottom: 20px;
}

#change-password .input-group input {
  width: 100%;
  font-size: 15px;
  border: 1px solid #dcdcdc;
  border-radius: 8px !important;
  outline: none;
  transition: 0.2s;
  height: 49px;
  padding: 14px 12px;
  background: #FDFDFD;
}

#change-password .input-group label {
  position: absolute;
  left: 12px;
  top: 13px;
  color: #888;
  font-size: 15px;
  pointer-events: none;
  transition: 0.2s ease all;
  background: #FDFDFD;
  padding: 0 5px;
}
  
#change-password .input-group input:focus {
  border-color: #00a651;
}

#change-password .input-group input:focus + label,
#change-password .input-group input:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 13px;
  color: #00a651;
}

#payment_getway_logo {
  display: flex;
  gap: 10px;
  margin-top: 37px;
}


/* USER ACCOUNT DASHBORD_____________________________ */

.ota-tab-content .dashboard-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  color: white;
  width: 800px;
  max-width: 100%;
  border-radius: 20px;
  background: linear-gradient(86deg, #773C96 0.22%, #F5992C 99.78%);
  padding: 24px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  color: #fff !important;
}

.dashboard-header .greeting-text h2 {
  margin: 0 !important;
}

.dashboard-header .greeting-text p {
  margin: 0 !important;
  color: #fff !important;
}

/* USER ACCOUNT DOWNLOAD_____________________________ */









#blog_body {
  margin: 120px 0;
}





#btn_user-profile_edit {
  position: absolute;
  bottom: 2px;
  right: 1px;
  background-color: #FDFDFD;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px #ccc;
  cursor: pointer;
}

#user_avatar.avatar-uploading {
    opacity: 0.5;
    cursor: progress;
}

/* Crop Modal Styles */
.crop-modal-overlay {
    display: none; /* ডিফল্টভাবে লুকানো থাকবে */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.crop-modal-content {
    background: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
}
.crop-image-container {
    max-width: 100%;
    height: 300px; /* একটি নির্দিষ্ট উচ্চতা দিন */
    margin-bottom: 15px;
    background-color: #4B4B4B;
    border-radius: 8px;
}
#image-to-crop {
    display: block;
    max-width: 100%; /* Cropper.js এটি পরিচালনা করবে */
}
.crop-tools {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}
.crop-tools button {
  background: #4B4B4B;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 4px #acacac;
  color: #fff;
}
.crop-tools button i {
  line-height: 0;
  margin: 0;
}
.crop-tools button:hover {
  background: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 6px #acacac;
  color: #fff;
}
.crop-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}
.modal-button {
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1em;
}
.modal-button.cancel-btn {
    background-color: #f1f1f1;
    color: #333;
}
.modal-button.save-btn {
    background-color: #00a651;
    color: #fff;
}
.modal-button.save-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.modal-button:hover {
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1em;
}



/* Play Store Button */
.btn-download-play {
          text-decoration: none; /* Removes the underline from the link */
          display: inline-block;
        }

        /* Styling for the <button> element */
        .btn-download-play button {
          display: flex; /* Aligns icon and text side-by-side */
          align-items: center; /* Vertically centers the content */
          background-color: #000000; /* Black background */
          color: #ffffff; /* White text */
          border: none;
          border-radius: 8px; /* Rounded corners */
          padding: 8px 20px; /* Padding around the content */
          cursor: pointer;
          transition: background-color 0.3s ease; /* Smooth transition on hover */
          font-family: 'Roboto', sans-serif; /* Recommended font */
        }

        /* Hover effect for the button */
        .btn-download-play button:hover {
          background-color: #2c2c2c; /* Slightly lighter black on hover */
        }

        /* Styles for the SVG icon */
        .btn-download-play svg {
          margin-right: 12px; /* Space between the icon and text */
        }

        /* Styles for the text container (div) */
        .btn-download-play div {
          text-align: left;
          font-size: 12px; /* Font size for 'GET IT ON' */
          line-height: 1.2;
        }

        /* Styles for the 'Google Play' text */
        .btn-download-play div strong {
          font-size: 18px; /* Larger font size for 'Google Play' */
          font-weight: bold;
          display: block; /* Ensures it takes its own line */
        }


















.w_c #user_avatar {
  margin-left: 42px;
}

#lang-display-container_div {
  margin-right: 7%;
}

#user_data_safty_section .dynamic-fields-list li {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, transparent, #d2d2d2, transparent) 1;
}

#user_data_safty_section .dynamic-fields-list li::marker {
  color: #15955E;
}

/* এটি অটোমেটিক শেষ li কে সিলেক্ট করবে */
#user_data_safty_section .dynamic-fields-list .last-item {
    border-bottom: none; /* উদাহরণ */
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.app-whats-new ul li {
  line-height: 27.5px;
}

.category_page {
  margin: 100px 0;
}

.ota-my-account-wrapper {
  padding-bottom: 100px;
}

/* ----------------------------------------------------------*/

#top_footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-bottom: 50px;
    margin-top: 50px;
}

#top_footer .container {
    width: 100%;
    max-width: 1000px;
}

#top_footer .pricing-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* রেসপনসিভ করার জন্য */
}

/* সাধারণ কার্ড স্টাইল */
#top_footer .pricing-card {
    background: #fff;
    width: 300px;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1.5px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Active/Pro Card - PayPal Blue Theme */
#top_footer .pricing-card.active {
    position: relative;
    z-index: 1;
    border: none;
}

#top_footer .pricing-card.active::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    background: linear-gradient(86deg, #0b57cf 0.22%, #3389CF 99.78%);
    border-radius: inherit;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}


/* Popular Tag */
#top_footer .popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(86deg, #0b57cf 0.22%, #3389CF 99.78%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

/* টাইটেল এবং টেক্সট */
#top_footer .title {
    font-size: 26px;
    color: #003087; /* PayPal Deep Blue */
    margin-bottom: 20px;
}

#top_footer .features {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin: 0 auto;
}

#top_footer .features-item {
    font-size: 16px;
    color: #555;
    margin: 5px 0;
    width: fit-content;
}

#top_footer .sub-text {
    font-weight: bold;
    font-size: 18px;
    background: linear-gradient(86deg, #773C96 0.22%, #F5992C 99.78%);
    background-clip: border-box;
    background-clip: border-box;
    background-clip: border-box;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

/* বাটন স্টাইল */
#top_footer .btn {
    width: 100%;
    padding: 0px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    margin-top: 20px;
}

#top_footer .btn a {
  text-decoration: none;
}

#top_footer .btn-outline a, #top_footer .btn-outline span {
  background: linear-gradient(86deg, #773C96 0.22%, #F5992C 99.78%);
    background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent;
}

#top_footer .btn-outline {
    background: transparent;
    border: 1.5px solid #0070ba;
    color: #0070ba;
}

#top_footer .btn-outline:hover {
    background: #f0f7ff;
}

#top_footer .btn-filled {
    background: linear-gradient(86deg, #0b57cf 0.22%, #3389CF 99.78%);
    color: white;
}

#top_footer .btn-filled a {
    color: white;
}

#top_footer .btn-filled:hover {
    background: linear-gradient(86deg, #3389CF 0.22%, #0b57cf 99.78%);
}

/* মোবাইল রেসপনসিভ (Media Query) */
@media (max-width: 768px) {
    #top_footer .pricing-wrapper {
        flex-direction: column; /* মোবাইলে কার্ডগুলো একটির নিচে আরেকটি আসবে */
        gap: 40px;
    }
    
    #top_footer .pricing-card {
        width: 100%;
        max-width: 350px;
    }

    #top_footer .pricing-card.active {
        transform: scale(1); /* মোবাইলে জুম ইফেক্ট কমানো হয়েছে */
    }
}  

@media (min-width: 769px) and (max-width: 1199px) {
    #top_footer .pricing-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: inherit;
}
}

.lang2 {
  opacity: 1 !important;
}

#single_blog .post_datails h1, #single_blog .post_datails h2, #single_blog .post_datails h3 {
  font-size: 25px;
  margin-bottom: 20px;
  margin-top: 20px;
}


.page_datails p {
    margin-top: 16px !important;
    margin-bottom: 1rem !important;
  }



     /* ========================================================= */
    /* ========================================================= */
   /* ========================================================= */
  /* ========================================================= */

  /* মাঝখানের লাইন এবং লেখা */
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #8a92a6; /* ছবির মতো হালকা ধূসর রঙ */
    font-size: 14px;
}

.separator::before, .separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.separator:not(:empty)::before {
    margin-right: .5em;
}

.separator:not(:empty)::after {
    margin-left: .5em;
}

/* গুগল বাটন ডিজাইন */
.google-btn {
    width: 100%;
    height: 44px;
    background: transparent !important;
    border: 1px solid #dadce0 !important;
    border-radius: 8px; /* ছবির মতো রাউন্ডেড কর্নার */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    outline: none;
}

.google-btn:hover {
    background: #f8f9fa !important;
    border-color: #d2d4d7 !important;
}

.google-btn img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.google-btn span {
    color: #3c4043;
    font-weight: 500;
    font-size: 14px;
}














.checkout-right{
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
}

.checkout_product_info{
    flex: 1; /* content যত বড় হবে তত জায়গা নেবে */
}







.slider-container {
    width: 95%; /* মোবাইল স্ক্রিনের জন্য */
    max-width: 400px; /* একটি ডিফল্ট ভ্যালু, যা JS দিয়ে পরিবর্তন হবে */
    height: 90vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 auto;
    transition: max-width 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* স্মুথ রিসাইজিং */
}

.slider-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    align-items: center;
}

/* প্রতিটি ইমেজকে একটি স্লাইড ডিভ-এ রাখা হবে */
.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.slider-track img {
    max-width: 100%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* ইমেজ এর উইডথ অটো থাকবে */
}

.gallary_nav_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}