/* Fonts */
:root {
  --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #191919;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #cc1616;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --ipazar-color: #d01919;
  --red-gradient: linear-gradient(to bottom right,
      #FF0000 0%,
      #F50000 9%,
      #EB0000 18%,
      #E10000 27%,
      #D70000 36%,
      #CD0000 45%,
      #C30000 54%,
      #B90000 63%,
      #AF0000 72%,
      #A50000 81%,
      #9B0000 90%,
      #910000 100%);
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #cc1616;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #cc1616;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}


/*--------------------------------------------------------------
  # plans Section
  --------------------------------------------------------------*/
.plans .plans-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  padding-top: 20px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-right: 10px;
  margin-left: 10px;
  border-radius: 10px;
  cursor: pointer;
  box-sizing: border-box;
  border: 1px solid transparent;
}

.plans .plans-item2 {
  background-color: var(--surface-color);
  padding: 60px 40px;
  padding-top: 20px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-right: 10px;
  margin-left: 10px;
  border-radius: 10px;
}


.plans .plans-item3 {
  background-color: var(--surface-color);
  padding: 60px;
  padding-top: 20px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 0 auto;
  /* Centers horizontally */
  border-radius: 10px;
  max-width: 1320px;
}


.white-box {
  background-color: var(--background-color);
  height: 20px;
  width: 100px;
  position: absolute;
  top: -10px;
  left: 11px;
}

.white-box2 {
  background-color: var(--background-color);
  height: 20px;
  width: 100px;
  position: absolute;
  top: -10px;
  right: 11px;
  display: none;
}

.white-box3 {
  background-color: var(--background-color);
  height: 20px;
  width: 100px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.container-subscription-1 {
  display: block;
}

.container-subscription-2 {
  display: none;
}

.container-subscription-3 {
  display: none;
}


.selected {
  border-radius: 10px 10px 0 0 !important;
  box-shadow: -3px 20px -2px rgba(0, 0, 0, 0.1);
  cursor: default !important;
}

.best-selling2 {
  border-radius: 0 10px 10px 10px !important;
}

.not-selected {
  height: calc(100% - 50px);
  cursor: pointer !important;
}


.not-selected:hover {
  border: 1px solid var(--default-color);
}

.logo-container3 {
  position: absolute;
  bottom: 0px;
  right: 0px;

}


.box-best-selling {
  background-color: var(--accent-color);
  width: 100%;
  height: 50px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 10px 10px 0 0;
}

.h-best-selling {
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.plans h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.plans h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.plans h5 {
  font-weight: 600;
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.plans h6 {
  font-weight: 400;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.plans .h7 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  margin-left: 20px;
  margin-right: 20px;
  font-family: var(--default-font);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}


.plans h4 sup {
  font-size: 28px;
  font-family: "Arial", sans-serif;
}

.plans h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.plans ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.plans ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.plans ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.plans-icon-check {
  color: #059652;
  font-size: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.plans-icon-x {
  color: var(--accent-color);
  font-size: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.plans ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.plans ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.plans ul .na span {
  text-decoration: line-through;
}

.plans .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 20%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 20px;
}

.plans .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.plans .featured {
  z-index: 10;
}

.plans .featured .plans-item {
  background: var(--accent-color);
}

.plans .featured h3,
.plans .featured h4,
.plans .featured h4 span,
.plans .featured ul,
.plans .featured ul .na,
.plans .featured ul i,
.plans .featured ul .na i {
  color: var(--contrast-color);
}

.plans .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.plans .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

.plans-box {
  width: 60px;
  height: 60px;
  background-color: var(--default-color);
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--nav-color);
  font-weight: bold;
  border-radius: 10px;
}

.plans-box2 {
  width: 200px;
  height: 60px;
  background-color: var(--default-color);
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--nav-color);
  font-weight: bold;
  border-radius: 10px;
}

.plans-box.a3 {
  background-color: var(--background-color);
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
}

.plans-box2.a3 {
  background-color: var(--background-color);
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
}


.plans-box.a2 {
  background: var(--red-gradient);
  color: var(--nav-color);
}

.plans-box2.a2 {
  background: var(--red-gradient);
  color: var(--nav-color);
}


.logo-container2 {
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  margin-right: 5px;
}

.mobile-cont {
  display: none;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  padding: 20px;
}

.comparison-grid2 {
  display: grid;
  grid-template-columns: 70% 30%;
  padding: 20px;
}

.comparison-item {
  border-radius: 10px;
  text-align: center;
  position: relative;
}

.comparison-item.left {
  padding-left: 25px;
}

.comparison-item.right {
  padding-right: 25px;
}

.comparison-element {
  border-top: 1px solid rgba(128, 128, 128, 0.4);
  font-weight: 400;
  font-size: 20px;
  height: 80px;
  padding: 10px;
  position: relative;
}

.comparison-element2 {
  border-top: 1px solid rgba(128, 128, 128, 0.4);
  font-weight: 400;
  font-size: 20px;
  height: 80px;
  padding: 10px;
  position: relative;
  text-align: left;
}

.comparison-item h3 {
  margin-bottom: 15px;
}

.icon {
  font-size: 40px;
  margin-left: 20px;
}

.ipazar-title1.small-screen {
  display: none;
}

.ipazar-title2.small-screen {
  display: none;
}

.ipazar-title3.small-screen {
  display: none;
}

@media (max-width: 992px) {
  .ipazar-title1.large-screen {
    display: none;
  }

  .ipazar-title1.small-screen {
    display: block;
  }

  .ipazar-title2.large-screen {
    display: none;
  }

  .ipazar-title2.small-screen {
    display: block;
  }

  .ipazar-title3.large-screen {
    display: none;
  }

  .ipazar-title3.small-screen {
    display: block;
  }
}

@media (max-width: 900px) {
  .comparison-item.left {
    padding-left: 10px;
  }

  .comparison-item.right {
    padding-right: 0px;
  }

  .comparison-grid2 {
    padding: 0px;
  }

  .plans h3 {
    margin-left: 0px;
  }
}

@media (max-width: 992px) {
  .icon {
    display: none;
  }

  .plans-box2 {
    width: 100px;
  }
}

@media (max-width: 992px) {
  .mobile-cont {
    display: block;
  }

  .best-selling2 {
    display: none;
  }

  .plans .featured .plans-item {
    transform: scale(1.02, 1.1);
  }

  .not-selected:hover {
    border: 1px solid transparent;
  }

  .plans .plans-item {
    cursor: default;
    padding: 20px;
    height: 700px;
  }

  .plans .plans-item2 {
    padding: 0px;
  }

  .comparison-grid {
    padding: 5px;
  }
}

@media (max-width: 992px) {
  .plans h6 {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .plans-box2 {
    width: 80px;
  }

  .plans .plans-item2 {
    margin-right: 0px;
    margin-left: 0px;
    border-radius: 10px;
    margin-top: 20px;
  }

  .comparison-grid {
    padding: 0px;
  }

  .plans h5 {
    font-size: 15px;
  }

  .plans-icon-check {
    font-size: 45px;
  }

  .plans-icon-x {
    font-size: 45px;
  }
}

.welcome-store-img-a {
  height: 100%;
  width: auto;
  position: absolute;
  top: 10px;
  right: 10px;
}

.welcome-store-img {
  height: 45px;
  width: auto;
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 50px;
}

.welcome-store-img-a2 {
  height: 100%;
  width: auto;
  position: absolute;
  top: 10px;
  right: 10px;
}

.welcome-store-img2 {
  height: 45px;
  width: auto;
  position: absolute;
  top: 65px;
  right: 10px;
}

.welcome-store-img-a3 {
  height: 100%;
  width: auto;
  position: absolute;
  top: 10px;
  right: 10px;
}

.welcome-store-img-3 {
  height: 45px;
  width: auto;
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
}

@media (max-width: 1200px) {
  .welcome-store-img {
    display: none;
  }

  .welcome-store-img-3 {
    display: inline;
  }
}


@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}


.selection-box {
  margin: 20px auto;
  padding: 12px;
  background: var(--background-color, #f9f9f9);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: sans-serif;
}

.subscription-box {
  border-radius: 0 0 12px 12px;
  border-top: 4px solid var(--my-color);
}

.selection-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;

}

.selection-label {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  margin: 0 15px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 26px;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked+.slider {
  background: var(--red-gradient, var(--my-color));
}

input:readonly+.slider {
  background: #eeaabb;
}

input:checked+.slider:before {
  transform: translateX(24px);
}

.price {
  min-width: 50px;
  text-align: right;
  font-weight: bold;
  font-size: 15px;
  color: #444;
}

.productGrid {
  gap: 60px !important;
}

.continueBtn {
  margin-top: 30px !important;
  margin-bottom: 20px !important;
}

.custom-del {
  position: relative;
  color: #333;
  /* text color */
}

.custom-del::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 3px;
  background-color: red;
  transform: rotate(-5deg);
  /* optional tilt */
}

.ribbon {
  background: var(--red-gradient);
  /* Tailwind red-500 */
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -3px;
  left: -3px;
}

.option-box {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services .service-item {
  background-color: var(--surface-color);
  text-align: left;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 10px 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  display: flex;
  align-items: center;
  /* Center items vertically */
  justify-content: space-between;
  margin-left: 100px;
  margin-right: 100px;
  border-radius: 4px;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 44px;
  height: 44px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
  position: absolute;
  top: 20px;
  right: 20px;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .service-item .icon2 {
  margin: 0 auto;
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transform-style: preserve-3d;
  position: absolute;
  top: 10px;
  left: 20px;
  transition: transform 0.6s ease;
}

.services .service-item .icon2.rotate {
  transform: rotate(180deg);
}

.services .service-item .icon2 i {
  color: var(--accent-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  margin-left: 40px;
}

.services .service-item p {
  line-height: 24px;
  text-align: left;
  margin-right: 100px;
  margin-left: 40px;
}

@media (max-width: 768px) {
  .services .service-item .icon2 {
    top: 0px;
    left: 0px;
  }

  .services .service-item .icon {
    display: none;
  }

  .services .service-item p {
    margin-right: 40px;
  }
}


@media (max-width: 600px) {
  .services .service-item {
    padding: 0px;
  }
}

.text-content {
  width: auto;
  height: auto;
  min-height: 100px;
}

.text-content {
  width: auto;
  height: auto;
  min-height: 60px;
}

@media (max-width: 1100px) {
  .services .service-item {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.platformGrid,
.timeGrid {
  gap: 20px;
}

.platformOption {
  width: 100%;
  display: flex;
  justify-content: center;
  /* horizontal center */
  align-items: center;
  /* vertical center */
  text-align: center;
  /* center inline text inside */
  flex-direction: column;
}

@media (max-width: 768px) {

  .platformGrid,
  .timeGrid {
    display: block !important;
    grid-template-columns: 1fr !important;
    grid-auto-flow: row !important;
    flex-direction: column !important;
    gap: 20px !important;
    padding: 0;
  }

  .platformGrid,
  .timeGrid>* {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    float: none !important;
    clear: both !important;
    box-sizing: border-box !important;
    margin: 0;
  }

  .platformOption {
    margin-top: 10px;
    margin-bottom: 10px;
  }

}

.continueBtn2 {
  background: var(--red-gradient);
  color: var(--contrast-color);
  margin-left: 10px;
  border-radius: 8px;
  font-size: 17px;
  height: 45px;
  color: var(--nav-color);
  letter-spacing: 1px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.continueBtn2 i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
  margin-top: 2px;
}

.corporate-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  height: 100%;
  margin-top: 10px;
}

.corporate-form input,
textarea {
  border: 1px solid gray;
  border-radius: 8px;
  padding: 8px;
  min-width: 64%;
}

@media (max-width: 768px) {
  .plans .plans-item3 {
    box-shadow: none;
    padding: 10px;
  }
}

.checkout-box {
  max-width: 400px;
  margin-left: 0;
}

.checkbox-row {
  padding: 5px;
}

.checkbox-row2 {
  border-bottom: 1px solid red;
  border-top: none;
  border-left: none;
  border-right: none;
}

.checkout-label {
  max-height: 30px;
}

.checkout-form {
  height: auto;
}


.back-button {
  background: var(--contrast-color);
  color: var(--my-color);
  margin-left: 10px;
  border-radius: 8px;
  font-size: 17px;
  height: 45px;
  letter-spacing: 1px;
  padding: 12px 20px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--my-color);
  right: 20px;
  top: 20px;
}

.back-button i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
  margin-top: 2px;
}

.corporate-check {
  position: relative;
  width: 300px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.checkout-h1 {
  font-size: 32px;
  font-weight: 700;
  margin-top: px;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .back-button {
    top: 10px;
  }
}

.row-account {
  flex-direction: flex;
}

@media (max-width: 1000px) {
  .row-account {
    flex-direction: column;
    gap: 50px;
  }

  .plans .plans-item3 {
    box-shadow: none;
    padding: 10px;
  }

}

.top-100 {
  margin-top: 100px;
}

@media (max-width: 992px) {
.top-100 {
  margin-top: 0px;
}
}