/** put css for your plugin here **/

/* Fonts */
:root {
  --default-font: "Roboto",  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: "Open Sans",  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: #666666; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #333333; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #03c4eb; /* 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. */
}

/* 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: #03c4eb; /* 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: #666666; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #03c4eb; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 90px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/

.pricings h3 {
  color: var(--accent-color);
  font-size: 25px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricings h3 sup {
  font-size: 15px;
}


.pricings p {
  font-size: 16px;
}

.pricings h3 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  font-weight: 500;
}

.pricings .pricing-item {
  position: relative;
}

.pricings .price-card {
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricings .price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}


.pricings .price-card:hover {
  transform: translateX(4px);
}

.pricings .price-card:hover::before {
  transform: scaleX(1);
}

 
.pricings .pricing-item .icon {
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid var(--accent-color);
  margin-right: 20px;
}

.pricings .pricing-item .icon i {
  color: var(--contrast-color);
  font-size: 24px;
  line-height: 0;
}

.pricings .pricing-item:hover .icon {
  background: var(--surface-color);
}

.pricings .pricing-item:hover .icon i {
  color: var(--accent-color);
}

.pricings .pricing-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.pricings .pricing-item .title {
  color: var(--heading-color);
}


.pricings .pricing-item .title span {
  display: absolute;
  float: right;
  font-weight: 800;
  font-size: 9px;
  background: var(--accent-color);
  color: var(--surface-color);
  text-transform: uppercase;
  padding: 5px 8px;
}

.pricings .pricing-item .title:hover {
  color: var(--accent-color);
}

.pricings .pricing-item .description {
  line-height: 24px;
  font-size: 14px;
}


.pricings .pricing-item:hover {
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.pricings .pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}


.pricings .pricing-info {
  flex: 1;
  position: relative;
  z-index: 2;
}


.pricings .pricing-info .pricing-highlights {
  list-style: none;
  padding: 0;
 }

.pricings .pricing-info .pricing-highlights li {
  display: flex;
  align-items: center;
  padding: 4px 0;
  font-size: 14px;
  color: var(--default-color);
}

.pricings .pricing-info .pricing-highlights li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
}




/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.pricings .pricing-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 5px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  min-height: 280px;
}

.pricings .pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  transition: width 0.4s ease;
  z-index: 1;
}


.pricings .pricing-card h3 {
  color: var(--accent-color);
  font-size: 25px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricings .pricing-card h3 sup {
  font-size: 15px;
}


.pricings .pricing-card  h3 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  font-weight: 500;
}

.pricings .pricing-card:hover {
  /*transform: translateY(-8px);*/
  /*box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 85%);*/
}

.pricings .pricing-card:hover::before {
  width: 4px;
}

.pricings .pricing-card:hover .pricing-visual img {
  transform: scale(1.05);
}

.pricings .pricing-card:hover .pricing-icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

.pricings .pricing-card:hover .pricing-icon i {
  color: var(--contrast-color);
}

.pricings .pricing-card .pricing-icon {
  width: 64px;
  height: 64px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.pricings .pricing-card .pricing-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.pricings .pricing-card .pricing-info {
  flex: 1;
  position: relative;
  z-index: 2;
}

.pricings .pricing-card .pricing-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pricings .pricing-card .pricing-info h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.pricings .pricing-card .pricing-info h3 a:hover {
  color: var(--accent-color);
}

.pricings .pricing-card .pricing-info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pricings .pricing-card .pricing-info .pricing-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.pricings .pricing-card .pricing-info .pricing-highlights li {
  display: flex;
  align-items: center;
  padding: 4px 0;
  font-size: 14px;
  color: var(--default-color);
}

.pricings .pricing-card .pricing-info .pricing-highlights li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 16px;
}

.pricings .pricing-card .pricing-info .pricing-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.pricings .pricing-card .pricing-info .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--default-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.pricings .pricing-card .pricing-info .pricing-link::after,
.pricings .pricing-card .pricing-info .back-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.pricings .pricing-card .pricing-info .pricing-link:hover,
.pricings .pricing-card .pricing-info .back-link:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.pricings .pricing-card .pricing-info .pricing-link:hover::after,
.pricings .pricing-card .pricing-info .back-link:hover::after {
  width: 100%;
}

.pricings .pricing-card .pricing-info .pricing-link:hover i,
.pricings .pricing-card .pricing-info .back-link:hover i {
  transform: translate(3px, -3px);
}
 
.pricings .pricing-card .pricing-info .pricing-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.pricings .pricing-card .pricing-visual {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.pricings .pricing-card .pricing-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pricings .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.pricings .btn-view-all::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.5s ease;
}

.pricings .btn-view-all:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.pricings .btn-view-all:hover::before {
  left: 100%;
}

.pricings .btn-view-all:hover i {
  transform: translateX(4px);
}

.pricings .btn-view-all i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

@media (max-width: 992px) {
  .pricings .pricing-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    min-height: auto;
  }

  .pricings .pricing-card .pricing-visual {
    width: 100px;
    height: 100px;
    align-self: center;
  }

  .pricings .pricing-card .pricing-icon {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .pricings .pricing-card {
    padding: 24px 20px;
  }

  .pricings .pricing-card .pricing-info h3 {
    font-size: 20px;
  }

  .pricings .pricing-card .pricing-info p {
    font-size: 14px;
  }

  .pricings .pricing-card .pricing-info .pricing-highlights li {
    font-size: 13px;
  }

  .pricings .pricing-card .pricing-visual {
    width: 80px;
    height: 80px;
  }

  .pricings .pricing-card .pricing-icon {
    width: 56px;
    height: 56px;
  }

  .pricings .pricing-card .pricing-icon i {
    font-size: 24px;
  }

  .pricings .btn-view-all {
    padding: 16px 28px;
    font-size: 15px;
    margin-top: 32px;
  }
}

