/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Merriweather",  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: "Roboto Slab",  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: #001f3e; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3d85c6; /* 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: #206fbf; /* 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: #3d85c6; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #003871; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #003871; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3d85c6; /* 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: #003871;
  --surface-color: #0051a4;
}

.dark-background {
  --background-color: #22140a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #492b16;
  --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);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 28px;
  font-weight: 500;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-2 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-2:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-2 .container {
  position: relative;
  z-index: 3;
}

.hero-2 h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero-2 p {
  margin: 5px 0 0 0;
  font-size: 26px;
}

.hero-2 p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

.hero-2 .social-links {
  margin-top: 25px;
}

.hero-2 .social-links a {
  font-size: 24px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

.hero-2 .social-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero-2 h2 {
    font-size: 32px;
  }

  .hero-2 p {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Testimonials 2 Section
--------------------------------------------------------------*/
.testimonials-2 {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #f2bc17;
}

.testimonials-2 .testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.testimonials-2 .testimonial-masonry::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
  opacity: 0.5;
  z-index: -1;
}

.testimonials-2 .testimonial-item:nth-child(3n-1) {
  margin-top: 3rem;
}

.testimonials-2 .testimonial-item:nth-child(3n) {
  margin-top: 1.5rem;
}

.testimonials-2 .testimonial-item.highlight .testimonial-content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials-2 .testimonial-item.highlight .testimonial-content .quote-pattern {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.testimonials-2 .testimonial-item.highlight .testimonial-content .quote-pattern i {
  color: var(--accent-color);
}

.testimonials-2 .testimonial-content {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials-2 .testimonial-content:hover {
  transform: translateY(-5px);
}

.testimonials-2 .testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 1.5rem 0;
  position: relative;
}

.testimonials-2 .quote-pattern {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials-2 .quote-pattern i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.testimonials-2 .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.testimonials-2 .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonials-2 .client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-2 .client-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.testimonials-2 .client-details .position {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

@media (max-width: 1199.98px) {
  .testimonials-2 .testimonial-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials-2 .testimonial-item:nth-child(3n-1),
  .testimonials-2 .testimonial-item:nth-child(3n) {
    margin-top: 0;
  }

  .testimonials-2 .testimonial-item:nth-child(even) {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .testimonials-2 .testimonial-masonry {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials-2 .testimonial-item:nth-child(even) {
    margin-top: 0;
  }

  .testimonials-2 .testimonial-content {
    padding: 1.5rem;
  }

  .testimonials-2 .testimonial-content p {
    font-size: 0.9375rem;
    margin: 1.25rem 0;
  }

  .testimonials-2 .quote-pattern {
    width: 2.25rem;
    height: 2.25rem;
    top: -1.125rem;
  }

  .testimonials-2 .quote-pattern i {
    font-size: 1.125rem;
  }

  .testimonials-2 .client-info {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .testimonials-2 .client-image {
    width: 45px;
    height: 45px;
  }

  .testimonials-2 .client-details h3 {
    font-size: 1rem;
  }

  .testimonials-2 .client-details .position {
    font-size: 0.8125rem;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #f2bc17;
  --surface-color: #3d85c6;
  --contrast-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

.features .feature-card {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.features .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 40px;
  background-color: var(--accent-color);
  transition: height 0.3s ease;
}

.features .feature-card .feature-icon {
  margin-bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.features .feature-card .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features .feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.features .feature-card p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

.features .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.features .feature-card:hover::before {
  height: 70px;
}

.features .feature-chapters {
  margin-top: 50px;
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.features .feature-chapters h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.features .feature-chapters h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: var(--accent-color);
}

.features .feature-chapters .chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
}

@media (max-width: 768px) {
  .features .feature-chapters .chapters-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

.features .feature-chapters .chapters-grid .chapter-item {
  text-align: left;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: color-mix(in srgb, var(--background-color), transparent 5%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .feature-chapters .chapters-grid .chapter-item .chapter-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  margin-bottom: 10px;
}

.features .feature-chapters .chapters-grid .chapter-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.features .feature-chapters .chapters-grid .chapter-item p {
  font-size: 14px;
  color: var(--default-color);
  margin-bottom: 0;
}

.features .feature-chapters .chapters-grid .chapter-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 992px) {
  .features .section-intro h2 {
    font-size: 28px;
  }

  .features .feature-chapters {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .features .section-intro h2 {
    font-size: 24px;
  }

  .features .feature-card {
    padding: 25px;
  }

  .features .feature-card .feature-icon {
    width: 50px;
    height: 50px;
  }

  .features .feature-card .feature-icon i {
    font-size: 20px;
  }

  .features .feature-card h3 {
    font-size: 18px;
  }

  .features .feature-chapters {
    padding: 25px;
  }

  .features .feature-chapters h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Features 3 Section
--------------------------------------------------------------*/
.features-3 {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #f2bc17;
}

.features-3 h3 {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.features-3 .icon-box {
  margin-top: 50px;
}

.features-3 .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 32px;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 0;
}

.features-3 .icon-box:hover i {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.features-3 .icon-box .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.features-3 .icon-box .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features-3 .icon-box .title a:hover {
  color: var(--accent-color);
}

.features-3 .icon-box .description {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.features-3 .video-box {
  min-height: 400px;
}

.features-3 .video-box img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features-3 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  z-index: 1;
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #f2bc17;
}

.steps .steps-wrapper {
  position: relative;
  padding: 20px 0;
}

.steps .steps-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.steps .step-item {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

.steps .step-item:last-child {
  margin-bottom: 0;
}

.steps .step-item:nth-child(even) .step-content {
  flex-direction: row-reverse;
}

.steps .step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.steps .step-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease-in-out;
}

.steps .step-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.steps .step-info {
  flex: 1;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.steps .step-info:hover {
  transform: translateY(-5px);
}

.steps .step-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.steps h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.steps p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .steps .steps-wrapper::before {
    left: 25px;
  }

  .steps .step-item .step-content {
    flex-direction: row !important;
  }

  .steps .step-icon {
    width: 60px;
    height: 60px;
  }

  .steps .step-icon i {
    font-size: 24px;
  }

  .steps .step-info {
    padding: 20px;
  }

  .steps h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .steps .step-content {
    gap: 20px;
  }

  .steps .step-icon {
    width: 50px;
    height: 50px;
  }

  .steps .step-icon i {
    font-size: 20px;
  }

  .steps .step-info {
    padding: 15px;
  }

  .steps h3 {
    font-size: 1.2rem;
  }

  .steps p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #0b5394;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  padding-top: 82px;
  overflow: hidden;
  padding-bottom: 80px;
}

.call-to-action .cta-wrapper {
  background: linear-gradient(to right, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 15px;
  padding: 50px;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action .cta-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

@media (max-width: 768px) {
  .call-to-action .cta-wrapper {
    padding: 30px;
    text-align: center;
  }
}

.call-to-action .cta-book-image {
  position: relative;
  transform: rotate(-5deg);
  transition: all 0.3s ease;
}

.call-to-action .cta-book-image img {
  border-radius: 8px;
  max-width: 100%;
}

.call-to-action .cta-book-image:hover {
  transform: rotate(0) translateY(-10px);
}

@media (max-width: 768px) {
  .call-to-action .cta-book-image {
    margin: 0 auto 30px;
    max-width: 200px;
  }
}

.call-to-action .cta-content {
  position: relative;
  z-index: 1;
}

.call-to-action .cta-content .badge {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.call-to-action .cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .call-to-action .cta-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .call-to-action .cta-content h2 {
    font-size: 24px;
  }
}

.call-to-action .cta-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

.call-to-action .cta-content .cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.call-to-action .cta-content .cta-features .feature-item {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.call-to-action .cta-content .cta-features .feature-item i {
  font-size: 18px;
  margin-right: 8px;
}

.call-to-action .cta-content .cta-features .feature-item span {
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .call-to-action .cta-content .cta-features {
    justify-content: center;
  }

  .call-to-action .cta-content .cta-features .feature-item {
    margin-right: 0;
  }
}

.call-to-action .cta-content .countdown-timer {
  margin-bottom: 30px;
}

.call-to-action .cta-content .countdown-timer p {
  margin-bottom: 10px;
  font-size: 15px;
  opacity: 0.9;
}

.call-to-action .cta-content .countdown-timer .countdown {
  display: flex;
  gap: 15px;
}

.call-to-action .cta-content .countdown-timer .countdown div {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 15px;
  min-width: 70px;
  text-align: center;
}

.call-to-action .cta-content .countdown-timer .countdown div h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--contrast-color);
}

.call-to-action .cta-content .countdown-timer .countdown div h4 {
  font-size: 12px;
  margin: 0;
  text-transform: uppercase;
  opacity: 0.8;
  font-weight: 500;
  color: var(--contrast-color);
}

@media (max-width: 576px) {
  .call-to-action .cta-content .countdown-timer .countdown div {
    min-width: 50px;
    padding: 8px 10px;
  }

  .call-to-action .cta-content .countdown-timer .countdown div h3 {
    font-size: 18px;
  }

  .call-to-action .cta-content .countdown-timer .countdown div h4 {
    font-size: 10px;
  }
}

.call-to-action .cta-content .cta-buttons {
  display: flex;
  gap: 15px;
}

.call-to-action .cta-content .cta-buttons .btn-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.call-to-action .cta-content .cta-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-3px);
}

.call-to-action .cta-content .cta-buttons .btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.call-to-action .cta-content .cta-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .call-to-action .cta-content .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .call-to-action .cta-content .cta-buttons .btn-primary,
  .call-to-action .cta-content .cta-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 60px 0;
  }
}

/*--------------------------------------------------------------
# About Author Section
--------------------------------------------------------------*/
.about-author {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #f2bc17;
  --surface-color: #6fa8dc;
  padding: 80px 0;
  overflow: hidden;
}

.about-author .author-image {
  position: relative;
  margin-bottom: 30px;
}

.about-author .author-image img {
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.about-author .author-image .author-signature {
  position: absolute;
  bottom: -25px;
  right: 20px;
  background-color: var(--surface-color);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  width: 40%;
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.about-author .author-image .author-signature img {
  width: 100%;
  height: auto;
  box-shadow: none;
}

.about-author .author-image .author-signature:hover {
  transform: rotate(0deg);
}

@media (max-width: 992px) {
  .about-author .author-image {
    max-width: 450px;
    margin: 0 auto 30px;
  }
}

.about-author .author-info h2 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about-author .author-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .about-author .author-info h3 {
    font-size: 30px;
  }
}

.about-author .author-info .author-credentials {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
  font-style: italic;
}

.about-author .author-info .author-bio {
  margin-bottom: 30px;
}

.about-author .author-info .author-bio p {
  color: var(--default-color);
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-author .author-info .author-bio p:last-child {
  margin-bottom: 0;
}

.about-author .author-info .author-awards {
  margin-bottom: 30px;
}

.about-author .author-info .author-awards h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.about-author .author-info .author-awards h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.about-author .author-info .author-awards ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-author .author-info .author-awards ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.about-author .author-info .author-awards ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}

.about-author .author-info .author-awards ul li span {
  color: var(--default-color);
  line-height: 1.4;
}

.about-author .author-info .author-social h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.about-author .author-info .author-social h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.about-author .author-info .author-social .social-links {
  display: flex;
  gap: 15px;
}

.about-author .author-info .author-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.about-author .author-info .author-social .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .about-author .author-info {
    text-align: center;
  }

  .about-author .author-info h2,
  .about-author .author-info h3,
  .about-author .author-info .author-credentials {
    text-align: center;
  }

  .about-author .author-info .author-awards h4:after,
  .about-author .author-info .author-social h4:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-author .author-info .author-awards ul li {
    justify-content: center;
  }

  .about-author .author-info .author-social .social-links {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  --heading-color: #f2bc17;
  --accent-color: #f2bc17;
}

.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  --accent-color: #f2bc17;
  --surface-color: #ffffff;
  position: relative;
  padding: 100px 0;
  isolation: isolate;
}

.call-to-action-2 .container {
  position: relative;
}

.call-to-action-2 h2 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.call-to-action-2 .lead {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action-2 .btn {
  padding: 12px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.call-to-action-2 .btn:hover {
  transform: translateY(-2px);
}

.call-to-action-2 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action-2 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action-2 .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.call-to-action-2 .btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action-2 .scribble {
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.call-to-action-2 .scribble::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.call-to-action-2 .scribble-1 {
  width: 150px;
  height: 150px;
  top: -30px;
  left: 5%;
  animation-delay: 0s;
}

.call-to-action-2 .scribble-1::before {
  clip-path: path("M75,0 C90,25 110,25 125,50 C140,75 160,75 150,100 C140,125 110,125 75,150 C40,125 10,125 0,100 C-10,75 10,75 25,50 C40,25 60,25 75,0");
}

.call-to-action-2 .scribble-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}

.call-to-action-2 .scribble-2::before {
  clip-path: path("M60,0 C80,20 100,20 100,40 C100,60 80,80 60,120 C40,80 20,60 20,40 C20,20 40,20 60,0");
}

.call-to-action-2 .scribble-3 {
  width: 100px;
  height: 100px;
  bottom: -20px;
  left: 15%;
  animation-delay: -4s;
}

.call-to-action-2 .scribble-3::before {
  clip-path: path("M50,0 C70,15 85,15 90,35 C95,55 85,70 50,100 C15,70 5,55 10,35 C15,15 30,15 50,0");
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@media (max-width: 768px) {
  .call-to-action-2 {
    padding: 60px 0;
  }

  .call-to-action-2 h2 {
    font-size: 2.5rem;
  }

  .call-to-action-2 .lead {
    font-size: 1.1rem;
  }

  .call-to-action-2 .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }

  .call-to-action-2 .scribble {
    transform: scale(0.7);
  }
}

/*--------------------------------------------------------------
# Checkout 2 Section
--------------------------------------------------------------*/
.checkout-2 {
  --background-color: #f3f6f4;
  --default-color: #000000;
  --heading-color: #000000;
  --accent-color: #16537e;
  --surface-color: #6fa8dc;
  --contrast-color: #ffffff;
  --step-border-radius: 20px;
  --section-spacing: 30px;
}

.checkout-2 .checkout-steps .checkout-step {
  background-color: var(--surface-color);
  border-radius: var(--step-border-radius);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--section-spacing);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.checkout-2 .checkout-steps .checkout-step:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.checkout-2 .checkout-steps .checkout-step .step-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-2 .checkout-steps .checkout-step .step-header .step-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.checkout-2 .checkout-steps .checkout-step .step-header .step-title {
  flex: 1;
}

.checkout-2 .checkout-steps .checkout-step .step-header .step-title h3 {
  margin: 0 0 5px 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.checkout-2 .checkout-steps .checkout-step .step-header .step-title p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.checkout-2 .checkout-steps .checkout-step .step-content {
  padding: 30px;
}

.checkout-2 .checkout-steps .checkout-step .step-content label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-control,
.checkout-2 .checkout-steps .checkout-step .step-content .form-select {
  padding: 12px 15px;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 0.95rem;
  background-color: var(--surface-color);
  transition: all 0.25s ease;
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-control:focus,
.checkout-2 .checkout-steps .checkout-step .step-content .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-control::placeholder,
.checkout-2 .checkout-steps .checkout-step .step-content .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.9rem;
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-check {
  margin-top: 15px;
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-check .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-check .form-check-label {
  font-size: 0.9rem;
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-check .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.checkout-2 .checkout-steps .checkout-step .step-content .form-check .form-check-label a:hover {
  text-decoration: underline;
}

.checkout-2 .checkout-steps .checkout-step .step-content .card-input-wrapper,
.checkout-2 .checkout-steps .checkout-step .step-content .cvv-wrapper {
  position: relative;
}

.checkout-2 .checkout-steps .checkout-step .step-content .card-input-wrapper .card-icons,
.checkout-2 .checkout-steps .checkout-step .step-content .cvv-wrapper .card-icons {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
}

.checkout-2 .checkout-steps .checkout-step .step-content .card-input-wrapper .card-icons i,
.checkout-2 .checkout-steps .checkout-step .step-content .cvv-wrapper .card-icons i {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.checkout-2 .checkout-steps .checkout-step .step-content .card-input-wrapper .help-icon,
.checkout-2 .checkout-steps .checkout-step .step-content .cvv-wrapper .help-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  cursor: pointer;
}

.checkout-2 .checkout-steps .checkout-step .step-content .card-input-wrapper .help-icon:hover,
.checkout-2 .checkout-steps .checkout-step .step-content .cvv-wrapper .help-icon:hover {
  color: var(--accent-color);
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 30%);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option:last-child {
  margin-bottom: 0;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option input[type=radio] {
  display: none;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  margin: 0;
  cursor: pointer;
  position: relative;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label .method-icon {
  background: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 24px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label .method-info {
  flex: 1;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label .method-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label .method-info p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option label:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option.active {
  border-color: var(--accent-color);
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option.active label:after {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option.active label .method-icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option.active .payment-details {
  display: block !important;
  animation: slideDown 0.3s ease forwards;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option .payment-details {
  display: none;
  padding: 5px 20px 20px;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option .payment-details .alert-info {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: none;
  color: var(--heading-color);
  font-size: 0.9rem;
}

.checkout-2 .checkout-steps .checkout-step .step-content .payment-methods .payment-method-option .payment-details .alert-info i {
  font-size: 18px;
  color: var(--accent-color);
}

.checkout-2 .checkout-steps .checkout-step .step-content .checkout-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.checkout-2 .checkout-steps .checkout-step .step-content .checkout-actions .btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-2 .checkout-steps .checkout-step .step-content .checkout-actions .btn i {
  font-size: 18px;
}

.checkout-2 .checkout-steps .checkout-step .step-content .checkout-actions .btn.btn-secondary {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border: none;
  color: var(--default-color);
}

.checkout-2 .checkout-steps .checkout-step .step-content .checkout-actions .btn.btn-secondary:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.checkout-2 .checkout-steps .checkout-step .step-content .checkout-actions .btn.btn-primary {
  background-color: var(--accent-color);
  border: none;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.checkout-2 .checkout-steps .checkout-step .step-content .checkout-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
}

.checkout-2 .checkout-steps .checkout-step .step-content .checkout-actions .btn.btn-primary:active {
  transform: translateY(0);
}

.checkout-2 .checkout-steps .checkout-step .step-content .terms-agreement {
  margin-bottom: 20px;
}

.checkout-2 .checkout-summary-mobile {
  background-color: var(--surface-color);
  border-radius: var(--step-border-radius);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  margin-bottom: var(--section-spacing);
  overflow: hidden;
}

.checkout-2 .checkout-summary-mobile .summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-2 .checkout-summary-mobile .summary-header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.checkout-2 .checkout-summary-mobile .summary-header .toggle-summary-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--heading-color);
  font-weight: 600;
  padding: 0;
}

.checkout-2 .checkout-summary-mobile .summary-header .toggle-summary-btn i {
  transition: transform 0.3s ease;
}

.checkout-2 .checkout-summary-mobile .summary-header .toggle-summary-btn[aria-expanded=true] i {
  transform: rotate(180deg);
}

.checkout-2 .checkout-summary-mobile .summary-content {
  padding: 20px;
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list {
  margin-bottom: 20px;
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item .product-image {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item .product-info {
  flex: 1;
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item .product-info h5 {
  font-size: 0.95rem;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item .product-info .product-meta {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item .product-info .product-price {
  font-size: 0.9rem;
  font-weight: 500;
}

.checkout-2 .checkout-summary-mobile .summary-content .product-list .product-item .product-info .product-price .qty {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 3px;
}

.checkout-2 .checkout-summary-mobile .summary-content .discount-code {
  margin-bottom: 20px;
}

.checkout-2 .checkout-summary-mobile .summary-content .discount-code .input-group .form-control {
  border-radius: 10px 0 0 10px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-right: none;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.checkout-2 .checkout-summary-mobile .summary-content .discount-code .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.checkout-2 .checkout-summary-mobile .summary-content .discount-code .input-group .btn-apply {
  border-radius: 0 10px 10px 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0 15px;
}

.checkout-2 .checkout-summary-mobile .summary-content .discount-code .input-group .btn-apply:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.checkout-2 .checkout-summary-mobile .summary-content .price-breakdown {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 15px;
  padding: 15px;
}

.checkout-2 .checkout-summary-mobile .summary-content .price-breakdown .price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.checkout-2 .checkout-summary-mobile .summary-content .price-breakdown .price-row:last-child {
  margin-bottom: 0;
}

.checkout-2 .checkout-summary-mobile .summary-content .price-breakdown .price-row.total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  font-weight: 700;
  font-size: 1rem;
}

.checkout-2 .order-summary {
  background-color: var(--surface-color);
  border-radius: var(--step-border-radius);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  padding: 30px;
  position: sticky;
  top: 90px;
}

.checkout-2 .order-summary .summary-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-2 .order-summary .items-container {
  margin-bottom: 25px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 5px;
}

.checkout-2 .order-summary .items-container::-webkit-scrollbar {
  width: 6px;
}

.checkout-2 .order-summary .items-container::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 3px;
}

.checkout-2 .order-summary .items-container::-webkit-scrollbar-thumb {
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 3px;
}

.checkout-2 .order-summary .items-container .order-item {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-2 .order-summary .items-container .order-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.checkout-2 .order-summary .items-container .order-item .item-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  flex-shrink: 0;
}

.checkout-2 .order-summary .items-container .order-item .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-2 .order-summary .items-container .order-item .item-details {
  flex: 1;
}

.checkout-2 .order-summary .items-container .order-item .item-details .item-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.checkout-2 .order-summary .items-container .order-item .item-details .item-variant {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 8px;
}

.checkout-2 .order-summary .items-container .order-item .item-details .item-price-qty {
  font-size: 0.95rem;
  font-weight: 500;
}

.checkout-2 .order-summary .items-container .order-item .item-details .item-price-qty .item-qty {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 5px;
}

.checkout-2 .order-summary .discount-code-container {
  margin-bottom: 25px;
}

.checkout-2 .order-summary .discount-code-container .input-group .form-control {
  border-radius: 12px 0 0 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-right: none;
  padding: 12px 15px;
  background-color: var(--surface-color);
}

.checkout-2 .order-summary .discount-code-container .input-group .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.checkout-2 .order-summary .discount-code-container .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.9rem;
}

.checkout-2 .order-summary .discount-code-container .input-group .btn-apply {
  border-radius: 0 12px 12px 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0 20px;
}

.checkout-2 .order-summary .discount-code-container .input-group .btn-apply:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  border-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.checkout-2 .order-summary .summary-details {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 40%);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
}

.checkout-2 .order-summary .summary-details .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.checkout-2 .order-summary .summary-details .summary-row .summary-label {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.checkout-2 .order-summary .summary-details .summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 1.2rem;
  font-weight: 700;
}

.checkout-2 .order-summary .checkout-security {
  margin-bottom: 20px;
  text-align: center;
}

.checkout-2 .order-summary .checkout-security .security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.checkout-2 .order-summary .checkout-security .security-badge i {
  color: #198754;
  font-size: 18px;
}

.checkout-2 .order-summary .checkout-security .security-badge span {
  font-weight: 500;
  font-size: 0.95rem;
}

.checkout-2 .order-summary .checkout-security .payment-options {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.checkout-2 .order-summary .checkout-security .payment-options i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.checkout-2 .order-summary .shipping-guarantee {
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 15px;
  padding: 15px;
}

.checkout-2 .order-summary .shipping-guarantee .guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.checkout-2 .order-summary .shipping-guarantee .guarantee-item:last-child {
  margin-bottom: 0;
}

.checkout-2 .order-summary .shipping-guarantee .guarantee-item i {
  color: var(--accent-color);
}

.checkout-2 .modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.checkout-2 .modal-content .modal-header {
  border-bottom-color: color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 20px 30px;
}

.checkout-2 .modal-content .modal-header .modal-title {
  font-weight: 600;
}

.checkout-2 .modal-content .modal-body {
  padding: 30px;
  font-size: 0.95rem;
}

.checkout-2 .modal-content .modal-body p {
  margin-bottom: 15px;
}

.checkout-2 .modal-content .modal-body p:last-child {
  margin-bottom: 0;
}

.checkout-2 .modal-content .modal-footer {
  padding: 15px 30px;
  border-top-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.checkout-2 .modal-content .modal-footer .btn-primary {
  background-color: var(--accent-color);
  border: none;
  border-radius: 10px;
  padding: 10px 24px;
  font-weight: 500;
}

.checkout-2 .modal-content .modal-footer .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .checkout-2 .order-summary {
    position: relative;
    top: 0;
  }
}

@media (max-width: 767.98px) {
  .checkout-2 .checkout-step .step-header {
    padding: 20px;
  }

  .checkout-2 .checkout-step .step-header .step-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .checkout-2 .checkout-step .step-header .step-title h3 {
    font-size: 1.1rem;
  }

.checkout-2 .checkout-step .step-content {
    padding: 20px;
  }
}

.checkout-2 .swiper-wrapper {
  height: auto !important;
}

.app-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 420px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(17, 23, 37, 0.95);
  color: #f8f9fb;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.app-toast--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

.app-toast__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(246, 192, 0, 0.18);
  color: #f6c000;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.app-toast__body {
  flex: 1;
  line-height: 1.3;
}

.app-toast__title {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: #f8f9fb;
}

.app-toast__message {
  margin: 2px 0 0 0;
  font-size: 0.9rem;
  color: #d8e0ed;
}

.app-toast__close {
  border: none;
  background: transparent;
  color: #d8e0ed;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.app-toast__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

@media (max-width: 576px) {
  .app-toast {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 16px;
  }
}
