@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");

:root {
  --primary-color: rgb(36 36 36 / 1);
  --secondary-color: #fff;
  --third-color: #333333;
  --fourth-color: rgba(58, 58, 58, 0.783);
  --page-bg: linear-gradient(
    90deg,
    rgba(33, 37, 41, 0.763) 0,
    rgba(33, 37, 41, 0.776) 100%
  );
  --page-bg1: linear-gradient(
    90deg,
    rgba(33, 37, 41, 0.594) 0,
    rgba(33, 37, 41, 0.646) 100%
  );
  --sub-page-bg: rgba(86, 82, 82, 0.655);
  --opacity: 0.6;
  --sixth-color: rgb(36 36 36 / 1);
  --seventh-color: #5e5e5e;
  --card2-color: #333333;
  --card2-text-color: fff;
}

.light-mode {
  --primary-color: #fff;
  --secondary-color: rgb(36 36 36 / 1);
  --third-color: #ffffffc5;
  --fourth-color: #ffffffd2;
  --page-bg: #ffffffd1;
  --page-bg1: #ffffffd1;
  --sub-page-bg: #fff;
  --opacity: 0.5;
  --sixth-color: #f7f7f7;
  --seventh-color: #d1d1d1;
  --card2-color: #000000cf;
  --card2-text-color: #fff;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;

  font-family: "Lexend", serif;
}
html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
#home {
  background-position: center;
  background-size: cover;
  background-image: url("../images/2148325725.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: absolute;
  overflow-x: hidden;
}
body#home:before {
  content: "";
  width: 100%;
  display: block;
  position: fixed;
  height: 100%;
  background: rgb(0 0 0 / 55%);
}

.settingIcon {
  cursor: pointer;
  border-radius: 50%;
  height: 43px;
  width: 43px;
  justify-content: center;
  margin: auto;
  display: flex !important;
  vertical-align: middle;
  align-items: center;
  position: relative;
  z-index: 1004;
  pointer-events: auto;
}
.overlapping-section {
  position: relative;
  z-index: 1001;
  background-color: var(--primary-color);
  width: 100%;
  transition: transform 0.5s ease-in-out;
  padding-top: 0px;
  font-family: "Lexend", sans-serif;
  border-radius: 0px;
}

.searchText {
  color: var(--secondary-color);
}
#searchYahoo {
  color: var(--secondary-color);
}
.newtab-container {
  /* background-color: var(--primary-color); */
  z-index: 0;
  width: 100%;
}

.close-buttons {
  display: none;
}

/* .card:hover .close-buttons {
  display: block;
} */

body,
html {
  font-family: "Lexend", serif;
  scroll-behavior: smooth !important;
}

.nodisplay {
  display: none;
}
.colorblack {
  color: #000;
}
.colorwhite {
  color: #fff;
}
.settingIcon-aboutus {
  color: #000;
}

.righthandside span {
  right: 25px;
  position: fixed;
  top: 25px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(
    90deg,
    rgb(33 37 41 / 39%) 0,
    rgb(33 37 41 / 26%) 100%
  );
  padding: 10px;
  border-radius: 50%;
}

.setclick {
  position: relative;
  z-index: 1000;
}

.setclick span {
  position: absolute;
  margin-left: 95%;
  top: 34px;
  position: fixed !important;
}
#formurl input {
  border: 1px solid #eee !important;
}
#formurl {
  margin: 10px 0px;
}
.settings-options {
  position: fixed;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: var(--page-bg);
  min-height: 100vh;
  height: 100%;
  width: 384px; /* Default width */
  max-width: 100%; /* Ensure it never exceeds screen width */
  display: none;
  border: none;
  right: 0;
  top: 0;
  text-decoration: none;
  z-index: 1040 !important;
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  padding: 20px;
  pointer-events: auto;
}
.newsSection {
  z-index: 1001;
}
/* Media query for smaller screens */
@media screen and (max-width: 375px) {
  .settings-options {
    width: 100%; /* Take full width on small screens */
    padding: 16px; /* Slightly reduced padding */
  }

  /* Adjust internal content spacing if needed */
  .settings-options > div {
    margin-bottom: 16px;
  }
}

.settings-options.show {
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1009;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  pointer-events: auto;
}

.drawer-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--secondary-color);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.drawer-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Optional: Customize the scrollbar for a better UI experience */

.settings-options::-webkit-scrollbar {
  width: 6px;
}

.settings-options::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 3px;
}

/* .settings-options::-webkit-scrollbar-track {
  background: #f1f1f1;
} */

.settings-options h2 {
  font-family: "Lexend", sans-serif;
  color: var(--secondary-color);
}

/* Initially hide the settings options */

.settings-options.hidden {
  display: none;
}

/* settings modal */

.religion_and_lang {
  background-color: var(--sub-page-bg);

  color: var(--secondary-color);
}

.religion_and_lang h5 {
  font-family: "Lexend", sans-serif;
  color: var(--secondary-color);
}

/* Target the select element by ID */

#language-picker-select {
  background: var(--page-bg1);
  color: var(--secondary-color);
}

/* Alternative: target it through the form class */

.language-picker__form select {
  background: var(--page-bg1);
  border-radius: 5px;
  color: var(--secondary-color);
}

.language-picker-select {
  background: var(--page-bg1);
}

.language-picker-select option {
  color: #000;
}

.modes {
  background-color: var(--sub-page-bg);
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
}

.modes h5 {
  font-family: "Lexend", sans-serif;
  color: var(--secondary-color);
}

.select-mode {
  margin-left: 30px;
}

.select-dark {
  width: 90px;
  height: 70px;
  border: 1px solid #ffffff62;
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
  background-color: #000;
  position: relative;
}

.select-dark h5 {
  white-space: nowrap;
  color: var(--secondary-color);
  position: absolute;
}

.select-light {
  position: relative;

  width: 90px;
  height: 70px;
  border: 1px solid #ffffff62;
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
  /* border-radius: 10px; */
  background-color: #ffffffd2;
  position: relative;
}

.select-light svg {
  fill: #898282;

  justify-content: center;
  align-items: center;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.select-dark svg {
  /* fill: #898282; */

  justify-content: center;
  align-items: center;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.icons {
  margin-left: 290px;
  margin-top: 10px;
}

.quick_links {
  border-radius: 10px;
  background-color: var(--sub-page-bg);
  list-style: none;
  text-align: left;
  color: var(--secondary-color);
}

.newtab {
  white-space: nowrap;
  position: relative;
}

.quick_links h5 {
  font-family: "Lexend", sans-serif;
  color: var(--secondary-color);
}

.quicklinks-show h5 {
  font-family: "Lexend", sans-serif;
  color: var(--secondary-color);
}

.quicklinks-show select {
  background: var(--page-bg);

  color: var(--secondary-color);
}

.form-select option {
  color: #000;
}

.Theme {
  background-color: var(--sub-page-bg);

  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
}

.Theme h5 {
  font-family: "Lexend", sans-serif;
  color: var(--secondary-color);
}

/* Hide the file input */

.background-input {
  display: none;
}

/* Style the custom upload button */

.custom-upload-button {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  font-family: "Lexend", sans-serif;
  cursor: pointer;
  width: 100%;
  display: flex;

  justify-content: center;
  padding: 6px 20px;
  font-size: 16px;
  font-weight: 300;
  border-radius: 10px;
  margin-top: 10px;
}

.bg-svg {
  fill: var(--secondary-color);
}
.showfeeds {
  position: relative;
  background-color: var(--sub-page-bg);

  color: var(--secondary-color);
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
}
.showfeeds ul {
  justify-content: space-evenly;
}

.settings-options li {
  padding-top: 5px;
  font-size: 12px;
  /* position: absolute; */
  font-weight: 300;
  text-align: center;
}

.showfeed {
  position: relative;
  width: 100px;

  border: 2px solid #ffffff62;
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
  border-radius: 10px;
  padding: 10px;
}
.showfeed img {
  border-radius: 5px;
}

/* .showfeed li {
  position: absolute;
  text-align: center;
  padding: 5px;
  margin: auto;
  bottom: 0;
} */

/* .settings-options img {
  width: 70px;
  position: absolute;
  left: 7px;
  top: 5px;
  border-radius: 10px;
} */

.showfeeds h5 {
  font-family: "Lexend", sans-serif;
  color: var(--secondary-color);
}

.settings-options.show-feeds {
  display: flex;
}

.lefthandside {
  display: flex;
  align-items: center;
  gap: 12px; /* Adds consistent spacing between time and menu icon */
}
.time-display {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 200;
  line-height: 1;
  color: white;
  position: fixed;
  left: 85px;
  top: 38px;
}

.current-time {
  min-width: 70px;
}
.lefthandside .appIcon {
  position: fixed;
  left: 25px;
  top: 25px;
  z-index: 1000;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}


.resultcards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
  justify-content: center;
  padding-left: 20px;
  margin-bottom: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.resultcards > div {
  flex: 0 0 96.5%;
  /* Preserve original width of each card */
}

/* Insert a full-width break after every third card */

.resultcards > div:nth-child(3n)::after {
  content: "";
  flex-basis: 100%;
  height: 0;
}

.card {
  max-width: 300px;
  height: 304px;
  /* box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%); */
  box-shadow: rgba(0, 0, 0, 0.14) 0px 1px 2px, rgba(0, 0, 0, 0.12) 0px 0px 2px;
  background: var(--third-color);
  border-radius: 15px !important;
  cursor: pointer;
}

.card2 {
  border-radius: 15px !important;
  max-width: 602px;
  position: relative;
  height: 304px;
  /* background-color:var(--fourth-color) ; */
  background: var(--card2-color);
  cursor: pointer;
  /* box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%); */
  box-shadow: rgba(0, 0, 0, 0.14) 0px 1px 2px, rgba(0, 0, 0, 0.12) 0px 0px 2px;
}
.card2 .card-title,
.card2 .title,
.card2 .card-title-hours {
  color: var(--card2-text-color);
}
.card img {
  border-radius: 15px;
  height: 150px !important;
  width: 100%;
  background-color: #c3c7ca !important;
  -o-object-fit: cover;
  object-fit: cover;
}

.card2 img {
  height: 304px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 15px;
  opacity: var(--opacity);
}

.card.card-img-top {
  border-radius: 15px;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-body {
  color: var(--secondary-color);
}

.card-body2 {
  color: var(--secondary-color);
}

.overlay-text {
  position: absolute;
  bottom: 50px;
  left: 0px;
  color: var(--secondary-color);
  width: 100%;
  padding: 0px 20px;
}

.card-body .card-title {
  font-family: "Lexend", sans-serif;
}

.overlay-text .card-title {
  font-family: "Lexend", sans-serif;
}

.overlay-text .card-title-hours {
  font-family: "Lexend", sans-serif;
}

.card-body p {
  font-size: 18px;
  font-weight: 600;
  font-family: "Lexend", sans-serif;
}

.overlay-text p {
  font-size: 18px;
  font-weight: 600;
  font-family: "Lexend", sans-serif;
}

.card img,
.card2 img {
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
}

/* .card img:hover{
  opacity: 0.50; 
  cursor: pointer;
  box-shadow: 0px 4px 15px rgba(143, 137, 137, 0.32);
} */

.menuSections ul li {
  color: var(--secondary-color) !important;
  font-weight: 300;

  font-size: 14px;
  padding: 6.5px 20px;
}

.title {
  font-family: "Lexend", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  position: relative;
}
.footer {
  white-space: nowrap;
}
.righthandside .MuiSvgIcon-root {
  fill: #fff !important;
}

.bgimageText,
.quickLinks {
  transition: 0.5s;
}

div#root {
  width: 100%;
  max-width: 1920px;
  position: relative;
  margin: auto;
}

.headersection {
  z-index: 999;
  position: relative;
  width: 100%;
  background-image: url(./mount.png);
}

.headersectionabout {
  z-index: 999;
  position: relative;
  width: 100%;
}

.righthandside .MuiSvgIcon-root {
  fill: #fff !important;
  right: 0;
  position: absolute;
  top: 0;
}

.searchBarSection {
  position: sticky;
  top: 0;
  z-index: 1010;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

.searchBarSection .search-input-container,
.searchBarSection input,
.searchBarSection button,
.searchBarSection .suggestion-box {
  pointer-events: auto;
}

.formSection input[type="text"] {
  border-radius: 30px;
  border: none;
  background-color: var(--primary-color);
  width: 100%;
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
  font-size: 16px;
  font-family: "Lexend", serif;
  transition: border-radius 0s ease;
}
.formSection input[type="text"].suggestions-visible {
  border-radius: 20px 20px 0 0; /* Remove bottom border radius */
  border-bottom: none;
  box-shadow: 0 -1px 6px 0 rgb(32 33 36 / 28%);
}

.suggestion-box {
  position: absolute;
  width: 100%;
  z-index: 1012;
  background: var(--primary-color);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  font-size: 16px;
  font-family: "Lexend", serif;
  padding-bottom: 20px;
  z-index: 1002;
  position: relative;
}

.suggestion-box li {
  display: flex;
  align-items: center;
  padding: 8px 16px;
}

.suggestion-box .material-symbols-outlined {
  margin-right: 12px;
  font-size: 20px;
  color: #9aa0a6;
}

.suggestion-box .suggestion-text {
  color: var(--secondary-color);
  padding-left: 10px;
}

/* Optional: Add hover effect */
.suggestion-box li:hover {
  background-color: rgb(0 0 0 / 8%);
  cursor: pointer;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 0;
}
#suggestionBox li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 10px;
}

.suggestion-item {
  display: flex;
  align-items: center;
  flex-grow: 1;
  cursor: pointer;
}

.delete-suggestion {
  cursor: pointer;
  font-size: 18px;
  opacity: 0.7;
  padding: 4px;
  border-radius: 50%;
}

.delete-suggestion:hover {
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.formSection .searchIcon {
  color: var(--secondary-color) !important;
  width: 10px;
}

/* Style for the Prev and Next buttons */

.prev-btn,
.next-btn {
  /* position: fixed; */
  position: absolute;
  background-color: #f7fcf765;
  /* Green background */
  color: rgb(11, 11, 11);
  /* White text */
  border: none;
  padding: 8px 5px;
  margin: 10px 0px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 0px;
  transition: background-color 0.3s ease;

  bottom: 80px;
}

.prev-btn {
  left: 0;
}

.svg-icon {
  color: #000;
}

.next-btn {
  right: 0;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: #e3e7e3;
  /* Darker green on hover */
}

.prev-btn:focus,
.next-btn:focus {
  outline: none;
}

.button-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}

.formSection button {
  background: none;
  border: 0 solid transparent;
  cursor: pointer;
  color: #009744;
  padding: 12px 0;
}

/* Add padding to move the placeholder text */

#searchYahoo {
  padding-left: 55px;
  /* Adjust this value as needed */
}

ul.recentsearchKey {
  padding: 0 10px;
  list-style: none;
}

ul.recentsearchKey li {
  display: inline;
  padding-right: 20px;
  font-size: 12px;
}

ul.recentsearchKey li a {
  color: #fff;
}

.dTextIcon {
  position: absolute;
  left: -50px;
  top: -5px;
  color: #ccc;
  background-color: rgba(0, 0, 0, 0.64);
  border-radius: 50%;
  padding: 7px;
  transform: rotate(90deg);
}

.MuiSvgIcon-root.dTextIcon {
  width: 32px !important;
  height: 32px !important;
}

.bgimageText {
  margin: 70px auto;
  width: 50%;
  color: #fff;
  font-size: 14px;
  line-height: initial;
  padding: 10px;
}

.bgimageTexthover {
  visibility: hidden;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.2;
}

.bgimageText:hover {
  background-color: rgba(0, 0, 0, 0.64);
}

.bgimageText:hover .bgimageTexthover {
  visibility: visible;
  transition: 0.5s;
}

.ulsection img {
  width: 25px;
}

/* .ulsection li {
  width: 100px;
  text-align: center;
} */

.ulsection li a {
  text-decoration: none !important;
}

.sitelogoshown {
  width: 50px;
  height: 50px;
  margin: auto;
  vertical-align: middle;
  align-items: center;
  display: flex;
  text-align: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 10px;
}

.textshow {
  color: #fff;
  font-size: 12px;
  line-height: 1;
  margin-top: 15px;
  font-weight: 300;
  white-space: nowrap;
}

.ulsection li {
  width: 77px;
  text-align: center;
  display: inline-block;
  padding: 2px;
}

.quickLinks {
  width: 100%;
  margin-top: 20px;
  margin: 20px 0px;
}

.ulsection {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.75rem;
}

/* .ulsection li:hover {
  background: rgba(229, 229, 229, 0.3);
  border-radius: 10px;
} */

.containerFuildWidth {
  position: relative;
  width: 100%;
  background: rgba(0, 0, 0, 0.318);
  margin-top: 100px;
  transition: 0.5s;
}

.headingShow {
  display: none;
  margin-left: 60px;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.quickLinkItem {
  position: relative;
  display: flex;
  align-items: center;
}

.menuIcon {
  position: absolute;

  cursor: pointer;
  display: none;
  color: #fff;
  font-size: 20px;
  top: 2px;
  right: -5px;
  line-height: 0;
}

.quickLinkItem:hover .menuIcon {
  display: inline;
}

.dropdownMenu {
  background-color: var(--primary-color);
  padding: 0px;
  border-radius: 4px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 1000;
  display: none;
  /* Initially hidden */
  top: 2px;
  left: 65px;
  width: 150px;
}

.dropdown-items {
  cursor: pointer;
  font-size: 14px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  width: 100%;
  padding: 7px 7px;
}

.dropdown-items:hover {
  background-color: #6c6464b7;
  z-index: 1000;
  width: 100%;
  border-radius: 5px;
}
/* .eSZmQU{
  padding: 15px!important;
  border-radius: 10px!important;
}
#ww_03914db7d1b82{
  border-radius: 10px;
} */

.delete-text {
  font-size: 14px;
  margin-left: 5px;
  color: var(--secondary-color);
  font-weight: 300;
}

.containerWidth {
  max-width: 1366px;
  margin: auto;
  width: 100%;
}

.positionfixed {
  max-width: 1366px;
}

.menuSections li:hover {
  cursor: pointer;
}

.showhead {
  display: block;
}

.hidehead {
  display: none;
}

.selected {
  background-color: var(--third-color);
  border-radius: 12px;
  box-shadow: inset 0px 0px 0px 1px var(--seventh-color);
  transition: left 0.5s ease; /* Transition effect */
}

.resultsection {
  padding: 60px 0;
  justify-content: center;
  text-align: center;
}

.menuSection li a {
  color: #717171;
  text-decoration: none !important;
  font-weight: 600;
}

.menuSections li a {
  color: #717171;
  text-decoration: none !important;
  font-weight: 600;
}

.menuSection {
  padding: 0 0 5px;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  justify-content: center;
  position: absolute;
  top: 0;
  height: 55px;
  z-index: 99;
  text-align: center;
}

.menuSections {
  position: sticky;
  top: 0;
  z-index: 1001;
  background-color: var(--primary-color);
  padding: 0 0 10px;
  width: 100%;
  max-width: 1950px;
  margin: auto;
  justify-content: center;
  height: 48px;
  z-index: 99;
  text-align: center;
  /* margin-right: 100px !important; */
}

.bgclassforImage {
  background-image: url(https://via.placeholder.com/300);
  height: 243px;
  width: 260px;
  background-size: contain;
  background-position: top;
  display: inline-block;
  border-radius: 10px;
  box-shadow: 0 15px 25px 0 rgb(0 0 0 / 15%);
  cursor: pointer;
  margin: 2px 5px;
}

.gradientcontent {
  border-radius: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg, rgb(0 0 0 / 42%), rgb(0 0 0 / 24%));
}

.contentadd {
  vertical-align: bottom;
  display: flex;
  flex-direction: column;
  bottom: 0;
  position: absolute;
  padding: 15px;
  text-align: left;
  -webkit-backdrop-filter: blur(158px);
  backdrop-filter: blur(158px);
  background: linear-gradient(
    90deg,
    rgb(33 37 41 / 0%) 0,
    rgb(33 37 41 / 0%) 100%
  );
  border-radius: 0px 0px 10px 10px;
  /* height: 10vh; */
  min-height: 10vh;
  height: auto;
  width: -webkit-fill-available;
}

.like .material-icons-outlined {
  font-size: 14px;
  margin-right: 5px;
}
.dropdownMenu .material-icons-outlined {
  color: var(--secondary-color);
  font-size: 24px;
}
.newsAuthor {
  color: #fff;
  font-size: 12px;
}

.actualContent {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  margin-top: 0px;
}

.likesave {
  width: 100%;
  display: none;
}

#myBtn span {
  font-size: 20px;
}

.savemore {
  float: right;
  text-align: right;
}

.alignicon {
  color: #fff;
  margin: 0 5px;
}

.like svg {
  color: #fff;
  width: 20px;
}

.like {
  font-size: 12px;
  align-items: center;
  display: flex;
  color: #fff;
}

.like svg {
  margin-right: 7px;
}

.gradientcontent:hover {
  background: linear-gradient(179deg, rgb(204 228 244 / 45%), #282e32);
}

.gradientcontent:hover .actualContent {
  text-decoration: underline;
}

.onclickmenu {
  width: 180px;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 10px 25px 0 rgb(0 0 0 / 20%);
  position: absolute;
  top: 75px;
  left: 20px;
  display: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(
    90deg,
    rgba(33, 37, 41, 0.6) 0,
    rgba(33, 37, 41, 0.24) 100%
  );
  z-index: 1016;
}

.onclickmenuoption {
  cursor: pointer;
}

.onclickmenu ul {
  list-style: none;
  text-align: left;
  position: relative;
}
.onclickmenuu li a{
  color: #141F33 !important;
}
.onclickmenu li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding-left: 20px;
}
.add-extension button:hover {
  /* color: var(--primary-color);
  background-color: var(--secondary-color); */
  transform: scale(1.1);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}

.add-extension button {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  /* color: var(--secondary-color); */
  background: linear-gradient(90deg, #33457e 0%, #5c7de4 100%);
  border-radius: 10px;
  /* width: 40px; */
  /* background: #0b57d0; */
  /* background-color: var(--primary-color); */

  /* width: 40px; */
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: flex-start;
  gap: 0px;
  padding: 8px 30px;

  border: none;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  position: relative;
  z-index: 0;
}
.add-extension button span.button-text {
  /* opacity: 0; */
  /* transition: opacity 0.3s ease; */
  font-size: 14px;
}

.add-extension {
  position: relative;
  z-index: 0;
  display: inline-block;
}

@media (max-width:769px ) {
  .add-extension{
    display: none !important;
  }
  
}
.onclickmenu li {
  padding: 10px 10px;
  border-bottom: 1px solid rgb(154 177 181 / 34%);
}

.lastLinehidden {
  border-bottom: 0 solid transparent !important;
}
.onclickmenuu li i{
  color: #141F33 !important;
}
.onclickmenu li i {
  color: #fff;
  vertical-align: middle;
  margin-left: 10px;
  font-size: 20px;
}

.contentsection h1 {
  font-size: 55px;
  text-align: center;
  margin-bottom: 15px;
}

.contentsection {
  font-family: "Lato", sans-serif;
  /* background: linear-gradient(0deg, #00974714 50%, #0097474d 75%); */
  padding: 35px 20px;
}



.bannersection {
  line-height: 0;
  text-align: center;
}

.contentsection article {
  text-align: center;
  font-size: 26px;
  font-weight: 300;
  max-width: 1100px;
  margin: 0 auto 0px;
}

.line {
  background: #fc7c4f;
  width: 7%;
  height: 3.5px;
  margin: 3% auto;
}

.info {
  width: 360px;
  height: 257px;
  padding: 30px 20px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: rgb(0 0 0 / 10%) 0 10px 50px;
  vertical-align: top;
  line-height: 1.2;
}

.boredr-container::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: linear-gradient(
    45deg,
    rgba(59, 130, 246, 0.1),
    rgba(37, 100, 235, 0.402)
  );
  border-radius: 30%;
  z-index: -1;
  filter: blur(15px);
}

.boredr-container1::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: linear-gradient(225deg, #e9a7a7 8.58%, #e75f5f69 91.42%);

  border-radius: 30%;
  z-index: -1;
  filter: blur(15px);
}

.boredr-container2::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: linear-gradient(225deg, #85e97f 8.58%, #3fbe316f 91.42%);

  border-radius: 30%;
  z-index: -1;
  filter: blur(15px);
}
.boredr-container3::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: linear-gradient(
    225deg,
    rgba(249, 194, 19, 0.8) 8.58%,
    rgba(185, 142, 12, 0.34) 91.42%
  );
  border-radius: 30%;
  z-index: -1;
  filter: blur(15px);
}
.boredr-container4::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: linear-gradient(
    225deg,
    rgba(115, 202, 164, 0.8) 8.58%,
    rgba(28, 159, 102, 0.39) 91.42%
  );
  border-radius: 30%;
  z-index: -1;
  filter: blur(15px);
}
.boredr-container5::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: linear-gradient(
    243.06deg,
    rgba(192, 132, 187, 0.8) 15.64%,
    rgba(141, 75, 157, 0.338) 84.17%
  );
  border-radius: 30%;
  z-index: -1;
  filter: blur(15px);
}

.boredr-container6::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: linear-gradient(235.58deg, #FF8BC3 9.7%, #c93c8037 100.53%);

  border-radius: 30%;
  z-index: -1;
  filter: blur(15px);
}
.boredr-container7::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
background: linear-gradient(320.12deg, #ff481f6b 3.74%, #f2baba64 96.26%);

  border-radius: 30%;
  z-index: -1;
  filter: blur(15px);
}
.boredr-container8::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: linear-gradient(235.07deg, #ff0ff348 0.31%, #c100bb65 99.69%);
  border-radius: 30%;
  z-index: -1;
  filter: blur(15px);
}







.info img {
  height: 25px;
  margin-top: 10px;
  object-fit: contain;
  text-align: center;
  margin-bottom: 20px;
  display: inline;
}

/* .info h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 20px;
  white-space: nowrap;
} */

/* .info p {
  font-size: 20px;
  font-weight: 400;
  color: #403847;
  line-height: 1;
} */
.tiles {
  justify-content: center;
  padding-top: 70px;
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}

.quickadd-section {
  background-color: #badcff;
  position: relative;
  min-height: 600px;
  padding-top: 100px; /* Add this line */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.quickaddsection{
 
 margin-top: 100px !important;
  display: flex;
 
} 
.flex2 {
  display: flex;
  justify-content: center;
  max-width: 1280px;
  margin: auto;
  vertical-align: middle;
  align-items: center;
}

.leftcontent {
  font-size: 60px;
  color: #fff;
  font-weight: 400;
  padding-top: 50px;
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1.5px solid #fff;
  width: 50%;
  text-align: right;
  line-height: 1.2;
  padding-bottom: 50px;
}

.rightcontent {
  width: 50%;
  color: #fff;
  font-weight: 200;
}

.rightcontent table {
  width: 100%;
  font-size: 24px;
  line-height: 1.7;
  padding: 40px 0;
}

.rightcontent table td {
  width: 50%;
}

.addsection {
  margin: auto;
  max-width: 1280px;
  text-align: center;
  padding: 50px 20px;
}

.addsection img {
  margin-bottom: 20px;
}
.addextension {
  cursor: pointer;
  margin: 0px auto;
  max-width: 220px;
  width: 100%;
  text-align: center;
  background: linear-gradient(180deg, #3f475f 0%, #293044 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 15px;
  border-width: 2px, 0px, 2px, 0px;
  border-radius: 16px;
  border-style: solid;
  border-image-source: linear-gradient(
    180deg,
    rgba(191, 196, 206, 0.25) 0%,
    rgba(87, 139, 243, 0.125) 100%
  );
  transition: transform 0.3s ease-in-out;
  box-shadow: 0px 8px 24px 0px #1c41b252;
  margin-top: 30px;
}
.adddiscover{
   cursor: pointer;
  margin: 0px auto;
  max-width: 250px;
  width: 100%;
  text-align: center;
  background: linear-gradient(180deg, #3f475f 0%, #293044 100%);

  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 15px;
  border-width: 2px, 0px, 2px, 0px;
  border-radius: 16px;
  border-style: solid;

  border-image-source: linear-gradient(
    180deg,
    rgba(70, 117, 217, 0.25) 0%,
    rgba(87, 139, 243, 0.125) 100%
  );
  transition: transform 0.3s ease-in-out;
  box-shadow: 0px 8px 24px 0px #1c41b252;
}
@media (max-width:769px) {
  .addextension{
    max-width: 190px;
    font-size: 15px;
  }
  .adddiscover{
    max-width: 200px;
    font-size: 15px;
  }
  
}
.addextension:hover {
  
  transform: scale(1.05);
  border-image-source: linear-gradient(
    180deg,
    rgba(70, 117, 217, 0.25) 0%,
    rgba(87, 139, 243, 0.125) 100%
  );
  background: linear-gradient(180deg, #3f475fcc 0%, #293044ab 100%);
}

.demand-card-container {
  border: 1px solid black;
  transition: transform 0.3s ease-in-out;
 
}
.demand-card-container:hover{
  transform: scale(1.05);
}
.demand-card-container img {
  border: 1px solid black;
  width: 350px;
  height: 157px;
  border-radius: 12px;
}

.inreach {
  margin: auto;
  max-width: 1280px;
}

.reach-us button {
  background: linear-gradient(180deg, #3f475f 0%, #293044 100%);
  border: 1px solid #293044;
  padding: 15px 40px;
  font-size: 20px;
  font-family: "Lexend", serif;
  color: #fff;
  margin-left: 20px;
  font-weight: 500;
  border-radius: 16px;
}

.reach-us input[type="email"] {

  line-height: 0;
  padding: 10px 30px;
  border: 1px solid #c3c3c3;
  border-radius: 16px;
  background: transparent;
  vertical-align: top;
  width: 50%;
  font-size: 20px;
  font-weight: 300;
  font-family: "Lexend", serif;
  color: #333;
}

.reach-us form {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.privacyhead {
  background: #fff;
  box-shadow: 1px 7px 5px 7px #000;
  box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
  position: fixed;
}

.centersec img {
  max-width: 250px;
  margin: 10px auto;
  text-align: center;
  width: 100%;
}

.centersec {
  text-align: center;
  z-index: -1;
}

.policy-container.p-2 {
  max-width: 1280px;
  width: 100%;
  padding-top: 10%;
  margin: auto;
  padding-left: 10px;
  padding-right: 10px;
  overflow-x: hidden;
}

.policy-container h2,
.policy-container h3,
.policy-container h4,
.policy-container p {
  margin-bottom: 10px;
}

.righthandside ul {
  width: 250px;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 10px 25px 0 rgb(0 0 0 / 20%);
  position: fixed;
  top: 75px;
  right: 20px;
  list-style: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(
    90deg,
    rgba(33, 37, 41, 0.6) 0,
    rgba(33, 37, 41, 0.24) 100%
  );
}

.righthandside ul li {
  padding: 10px 10px;
  border-bottom: 1px solid rgb(154 177 181 / 34%);
}

.righthandside li img {
  text-decoration: none;
  color: #fff;
  vertical-align: middle;
  margin-left: 10px;
  font-size: 20px;
  width: 32px;
}

.righthandside a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding-left: 20px;
}

.righthandside {
  cursor: pointer;
}

.tick {
  position: relative !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  background: 0 0 !important;
}

.nobg {
  position: relative !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  background: 0 0 !important;
}

.tick:before {
  content: "✓";
  color: #fff;
  font-size: 25px;
  position: absolute;
  top: -25px;
  right: -40px;
  font-weight: bolder;
}

.showsetcont {
  display: block;
}

.timeshow {
  position: fixed;
  right: 70px;
  font-size: 16px;
  color: #fff;
  text-shadow: 0 0 0 #000;
  top: 25px;
  line-height: 1;
  font-weight: 400;
  transition: 0.5s;
  padding: 10px 10px;
  z-index: 1004;
  pointer-events: auto;
}

.timeshow:hover {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(
    90deg,
    rgb(33 37 41 / 39%) 0,
    rgb(33 37 41 / 26%) 100%
  );
  transition: 0.5s;
}

.hovershowtime {
  opacity: 0;
  transition: 0.5s;
}

.timeshow:hover .hovershowtime {
  opacity: 1;
  transition: 0.5s;
}

.contactus input[type="email"],
.contactus input[type="tel"],
.contactus input[type="text"],
.contactus select,
.contactus textarea {
  width: 97%;
  padding: 5px 12px;
  border: 0 solid #fff;
  border-radius: 4px;
  resize: vertical;
  height: 30px;
  font-size: 16px;
  font-family: "Lexend", serif;
  box-shadow: rgb(0 0 0 / 10%) 0 0 5px 0, rgb(0 0 0 / 10%) 0 0 1px 0;
}

.contactus label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
}

.thanku {
  background: #4caf50;
  padding: 10px;
  color: #fff;
  display: none;
}

.contactus input[type="submit"] {
  background-color: #9bd96f;
  color: var(--secondary-color);
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-family: "Lexend", serif;
}

.contactus input[type="submit"]:hover {
  background-color: #45a049;
}

.contactus .container {
  border-radius: 5px;
  background-color: #fff;
  padding: 20px;
  box-shadow: rgb(0 0 0 / 10%) 0 0 5px 0, rgb(0 0 0 / 10%) 0 0 1px 0;
  width: 70%;
  margin-right: 35px;
}

.contactus .col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.contactus .col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

.contactus .row:after {
  content: "";
  display: table;
  clear: both;
}

.heading {
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.timeshow,
.weathersection,
.hovershowtime {
  z-index: 30; /* Same as header to ensure hover works */
}
@media screen and (max-width: 600px) {
  .contactus .col-25,
  .contactus .col-75,
  .contactus input[type="submit"] {
    width: 100%;
    margin-top: 0;
  }
}

.contactus {
  max-width: 1100px;
  margin: auto;
  padding: 120px 10px;
  width: 100%;
}

@media (max-width: 768px) {
  .row {
    display: block;
    justify-content: center;
  }

  .topfixed {
    display: none;
  }

  .policy-container.p-2 {
    padding-top: 18% !important;
  }

  .menuSection li {
    white-space: nowrap;
  }

  .menuSection ul {
    display: flex;
    width: 100%;
    overflow-x: scroll;
  }
  .reach-us button {

    padding: 15 40px;
    font-size: 15px;
   
  }
  .reach-us input[type="email"] {
    font-size: 15px;
  }
}

.containers {
  transition: 0.5s;
}
@media (max-width: 650px) {
  .headersection {
    z-index: 2;
  }
  .reach-us input[type="email"] {
    width: 90%;
  padding: 15px 20px;
}

.reach-us button {
    display: block;
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
}

.contactform {
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
  .righthandside {
    z-index: 9999;
  }

  #date,
  #day,
  #month {
    font-size: 20px;
  }

  .bgclassforImage {
    width: 100%;
    min-height: -moz-fit-content;
    min-height: fit-content;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .timeshow {
    top: 5px;
    font-size: 43px;
    display: none;
  }

  .timesection {
    display: none;
  }

  .showsetcont {
    display: none;
  }
}

span#weatherIcon {
  vertical-align: middle;
  vertical-align: -moz-middle-with-baseline;
}

.weathersection {
  font-size: 24px;
  height: 40px;
  font-weight: 300;
  display: flex;
  vertical-align: super;
  line-height: 1;
  align-items: center;
}

.cityName {
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  margin-top: 5px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cityName a {
  color: #fff;
}

sup {
  font-size: 14px;
  margin-left: 6px;
  margin-top: 22px;
  line-height: 0;
}

.iconbg {
  width: 75px;
  height: 44px;
  display: inline-block;
  margin-right: 9px;
  background-repeat: no-repeat;
  background-size: auto;
}

#weatherText {
  text-transform: capitalize;
  font-size: 12px;
  margin-left: 10px;
}

#QuicksearchKey {
  position: relative;
}

/* add url section  */

.addurlsection {
  display: none;
  /* Initially hidden */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  max-width: 500px;
  padding: 12px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1016;
}

.modal-overlay {
  display: none;
  /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
#notification {
  display: none;
  z-index: 9999;
}
.addurlsection h3 {
  margin-top: 0;
}

.addurlsection .closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  font-family: auto;
  color: #767676;
  background-color: #e5e5e5;
  text-align: center;
  width: 15px;
  height: 15px;
  display: flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
}

.addurlsection input {
  height: 32px;
}

#urlid,
#textid {
  padding: 3px 10px;
  font-size: 14px;
  font-family: "Lexend", serif;
  display: block;
  margin: 0px 0px 10px 0px;
  font-weight: 300;
}

.addurlsection label {
  font-size: 14px;
  font-family: "Lexend", serif;
  font-weight: 300;
  color: #282e32;
}
#addbtn,
#cancel {
  font-family: "Lexend", serif;
}

.closebtn {
  right: 10px;
  position: absolute;
  top: 10px;
  width: 30px;
  height: 30px;
  line-height: 1.8;
  cursor: pointer;
}

#QuicksearchKey li:hover .deletearray {
  display: block;
}

/* .onclickadd a {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  height: -moz-fit-content;
  height: fit-content;
} */

/* .onclickadd {
  background: rgba(229, 229, 229, 0.3);
  margin: 10px 10px;
  border-radius: 10px;
  height: 75px;
  display: inline-flex;
  position: relative;
  width: 100px;
  cursor: pointer !Important;
  padding: 12px;
} */

/* Class to move the section up */

.move-up {
  transform: translateY(-380px);
}

.slider-body-section {
  padding: 10px;
}

.deletearray {
  position: absolute;
  right: 7px;
  top: 7px;
  color: #fff;
  background: rgb(0 0 0 / 25%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-weight: 200;
  line-height: 18.5px;
  font-size: 11px;
  cursor: pointer;
  font-family: inherit;
  display: none;
}

.headersection:before,
.parentClass:before {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  background: rgb(0 0 0 / 24%);
}

.timesection {
  position: fixed;
  right: 70px;
  font-size: 16px;
  color: #fff;
  text-shadow: 0 0 0 #000;
  top: 25px;
  line-height: 1;
  font-weight: 400;
  transition: 0.5s;
  padding: 10px 10px;
}

.logoPlaced {
  max-width: 250px;
  margin: auto;

  padding: 8px 15px;
  border-radius: 0px 0px 25px 25px;
}
.iconColor {
  color: var(--secondary-color);
}
.downArrow {
  transform: rotate(0deg);
}
#QuicksearchKeyRecommended {
  display: block;
  transition: 0.5s;
}
.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  transition-duration: 0.3s;
}
@media (min-width: 1861px) and (max-width: 2048px) {
  .wxlg {
    width: 1588px; /* Applies to screens between 1861px and 2048px */
  }
}

@media (min-width: 2049px) {
  .w4xl {
    width: 1588px; /* Applies to screens greater than 2048px */
  }
}

@media (min-width: 1280px) and (max-width: 1535px) {
  /* Styles for screens between 1280px and 1535px */
  .wxl {
    width: 1276px;
  }
}
@media (min-width: 1536px) and (max-width: 1600px) {
  .w2xl {
    width: 1276px; /* Applies to screens between 1536px and 1600px */
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  /* Styles for screens between 1024px and 1279px */
  .wlg {
    width: 1024px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .wmd {
    width: 768px;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .wsm {
    width: 640px;
  }
}

@media (max-width: 767px) {
  .card2 {
    width: 100% !important;
  }
  .resultcards > div {
    flex: 0 0 100%;
  }
  .card {
    max-width: 100%;
  }
}

.modal-content {
  background-color: var(--primary-color);
}

.modal-content .dropdown-items {
  color: var(--secondary-color);
}

.close-modal {
  cursor: pointer;
  color: var(--secondary-color);
}

#QuicksearchKey,
#QuicksearchKeyRecommended {
  display: grid;
  gap: 1rem;
  width: 100%;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 426px) {
  #QuicksearchKey,
  #QuicksearchKeyRecommended {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media screen and (max-width: 425px) {
  #QuicksearchKey,
  #QuicksearchKeyRecommended {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
}

#recommededContainer {
  margin-top: 1.25rem;
}

#QuicksearchKey li,
#QuicksearchKeyRecommended li {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 320px) {
  .showfeed {
    width: 85px;
    padding: 8px;
  }

  .showfeed img {
    width: 100%;
    height: auto;
  }

  .showfeed li {
    font-size: 11px;
    margin-top: 8px;
  }

  .showfeeds ul {
    gap: 0.5rem !important;
  }
}

@media screen and (min-width: 321px) and (max-width: 375px) {
  .showfeed {
    width: 95px;
    padding: 9px;
  }
}

@media (max-width: 500px) {
  .newtab-container.modal-content {
    filter: blur(5px);
    pointer-events: none;
  }
}

@media (max-width: 500px) {
  .newtab-container.modal-content {
    filter: blur(5px);
    pointer-events: none;
  }
}
.voice-search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 25, 26, 0.991);
  z-index: 9999;
}

.voice-search-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  justify-content: flex-start;
  color: white;
}

.close-voice-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}
.voice-search-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px;
}

.mic-container {
  margin-bottom: 0;
}

.mic-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #4285f4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.voice-text {
  font-size: 24px;
  font-weight: 400;
  min-width: 200px;
  text-align: left;
}

/* Animation for active mic */
.mic-active {
  animation: pulse 1.5s infinite;
}
.try-again {
  font-size: 16px;
  color: #4285f4;
  cursor: pointer;
  margin-left: 4px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(66, 133, 244, 0.4);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(66, 133, 244, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(66, 133, 244, 0);
  }
}

.current-time {
  min-width: 70px;
}

@media (max-width: 500px) {
  .voice-text {
    font-size: 18px;
  }

  .try-again {
    font-size: 14px;
  }
  .mic-icon {
    width: 64px;
    height: 64px;
  }

  .mic-icon .material-symbols-outlined {
    font-size: 48px !important;
  }

  .voice-search-body {
    gap: 10px;
    padding: 10px;
  }

  .close-voice-modal {
    font-size: 24px;
    top: 15px;
    right: 15px;
  }
  .time-display {
    left: 85px;
  }
}

@media (max-width: 500px) {
  .voice-search-content {
    padding-top: 80px;
  }

  .voice-search-body {
    gap: 20px;
    padding: 15px;
  }
}
@media screen and (max-width: 400px) {
  .time-display .current-time {
    font-size: 15px;
  }
  .time-display {
    left: 85px;
    top: 40px;
  }
}
/* Skeleton loading styles */
.skeleton-loader {
  animation: loading 1.5s infinite;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
  background-size: 200% 100%;
  border-radius: 4px;
}

.skeleton-card {
  transition: transform 0.3s ease;
}

.skeleton-card.card2 {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .skeleton-card.card2 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .skeleton-card.card2 .skeleton-image {
    height: 150px !important;
  }
}

/* Maintain skeleton responsiveness */
.skeleton-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Match result card styles */
.skeleton-body {
  background: rgba(255, 255, 255, 0.1);
}

.skeleton-card.card2 .skeleton-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* Responsive grid layouts */
@media (min-width: 1861px) {
  .skeleton-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) and (max-width: 1860px) {
  .skeleton-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .skeleton-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .skeleton-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .Theme {
    padding-bottom: 80px !important;
  }
}
@media (max-width: 500px) {
  .search-voice {
    display: none !important ;
  }
  #voiceButton {
    display: none !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }
  #micClickSound {
    display: none;
  }
  #micEndSound {
    display: none;
  }
}

.search-engine-options {
  background: var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 150px;
  z-index: 1050;
}

.search-option {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--secondary-color) !important;
  text-decoration: none;
  border: none;
  background: none;
  font-size: 14px;
}

.search-option img {
  margin-right: 8px;
  object-fit: contain;
}

/* Default dark mode hover */
.search-engine-options .search-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Light mode hover */
.light-mode .search-engine-options .search-option:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Style the search engine selector hover and tooltip */
.search-engine-selecetion {
  border-radius: 50%;
  padding: 4px;
  position: relative;
}

/* Round hover effect */
.search-engine-selecetion:hover {
  background-color: var(--fourth-color);
  border-radius: 50%;
}

/* Light mode hover */
.light-mode .search-engine-selecetion:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Tooltip styles */
.search-engine-selecetion::after {
  content: "Choose search engine";
  position: absolute;
  /* transform: translateX(-50%); */
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 10px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2sease, visibility 0.2sease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1060;
  top: -30px;
  left: -40px;
}

/* Show tooltip only when hovering the button, not the dropdown */
.search-engine-selecetion:not(.search-engine-options):hover::after {
  opacity: 1;
  visibility: visible;
}

/* Hide tooltip when dropdown is open */
.search-engine-selecetion:has(.search-engine-options:not(.hidden))::after {
  display: none;
}

/* Ensure button maintains round shape */
#dropdownButton {
  border-radius: 50%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-text {
  color: #fff;
}
.quick-mobile{
  display: none;
}
@media (max-width:500px) {
  .quick-desktop{
    display: none;
  }
  .quick-mobile{
    display: block;
  }
}

.quick-desktop img {
  width: 100%;
  height: auto;
  max-width: 1440px;
}
.quickadd-section-heading{
  font-size: 52px;
}
.content-wrapper p{
  font-size: 24px;
}
@media (max-width: 1024px) {
  .quick-desktop img {
    max-width: 1020px;
  }
  .quickadd-section-heading {
    font-size: 30px;
  }
  .content-wrapper p{
    font-size: 16px;
  }
  .addextension {
   margin-top: 10px;
    font-size: 15px;
}
}
@media (max-width:930px) {
  .addextension {
    margin-top: 10px;
     font-size: 15px;
     width: 170px;
 }
 .content-wrapper{
  margin-top: -30px;
 }
  
}

@media (max-width:835px) {
  .content-wrapper{
    margin-top: -60px;
   }
  
}
@media (max-width: 768px) {
  .quick-desktop img {
    max-width: 765px;
  }
  .content-wrapper{
    margin-top: -60px;
  }
}
@media (max-width:738px) {
  .content-wrapper{
    margin-top: -60px;
   }
 
  .content-wrapper p{
  font-size: 14px;
   }
  
}

@media (max-width: 700px) {
  .quick-desktop {
    display: none;
  }
  .quick-mobile {
    display: block;
  }
  .quick-mobile img{
    width: 1000px;
    object-fit: contain;
  }
  .content-wrapper{
    margin-top: 60px;
   }
 
  .content-wrapper p{
  font-size: 20px;
   }
}

@media (max-width:426px) {
  .content-wrapper{
    margin-top: -20px;
   }

   .content-wrapper p{
    font-size: 20px;
  
     }
}

