/*

Template 2106 Soft Landing

http://www.tooplate.com/view/2106-soft-landing
	
*/
 
  @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400');

  body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background: #dbeafe;
    position: relative;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
      radial-gradient(ellipse 85% 55% at 8% -5%, rgba(56, 189, 248, 0.45), transparent 58%),
      radial-gradient(ellipse 70% 50% at 92% 8%, rgba(167, 139, 250, 0.38), transparent 52%),
      radial-gradient(ellipse 60% 45% at 50% 105%, rgba(52, 211, 153, 0.32), transparent 55%),
      radial-gradient(ellipse 40% 35% at 70% 45%, rgba(251, 191, 36, 0.18), transparent 50%),
      linear-gradient(165deg, #dbeafe 0%, #e0f2fe 35%, #f0f9ff 65%, #ede9fe 100%);
  }



  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: 300;
    line-height: normal;
  }

  h1 {
    font-size: 3em;
  }

  h2 {
    color: #353535;
    font-size: 2em;
  }

  p {
    color: #757575;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
  }



  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #202020;
    text-decoration: none !important;
  }

  a,
  input, button,
  .form-control {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  a:hover, a:active, a:focus {
    color: #0284c7;
    outline: none;
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #0369a1;
  }

  .section-title {
    padding-bottom: 40px;
  }

  section {
    position: relative;
    padding: 100px 0;
  }

  #contact,
  footer {
    background: transparent;
    text-align: center;
  }

  .overlay {
    background: linear-gradient(
      135deg,
      rgba(7, 89, 133, 0.52) 0%,
      rgba(14, 165, 233, 0.38) 50%,
      rgba(99, 102, 241, 0.28) 100%
    );
    opacity: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px) saturate(140%);
    -webkit-backdrop-filter: blur(4px) saturate(140%);
  }

  /* Inner pages: hero band (same imagery as #home) */
  .sw-page-hero {
    background: url('../images/home-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    min-height: 300px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 7.5em 0 3.5em;
    text-align: center;
  }

  @media screen and (max-width: 767px) {
    .sw-page-hero {
      padding: 6.5em 0 2.5em;
      min-height: 240px;
    }
  }

  .sw-page-hero .container {
    position: relative;
    z-index: 1;
  }

  .sw-page-hero-title {
    color: #ffffff;
    font-size: 2.75em;
    font-weight: 300;
    margin: 0 0 16px;
    line-height: 1.2;
  }

  @media screen and (max-width: 767px) {
    .sw-page-hero-title {
      font-size: 2em;
    }
  }

  .sw-page-hero-lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto 12px;
  }

  .sw-page-hero-lead:last-child {
    margin-bottom: 0;
  }

  .sw-page-hero-cta {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .sw-page-hero .services-eyebrow {
    color: #7dd3fc;
  }

  .sw-page-hero .services-lead {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
  }

  .sw-page-hero .pricing-intro {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
  }

  .online-form {
    position: relative;
  }

  .online-form .form-control {
    border-color: #f0f0f0;
    display: inline-block;
    vertical-align: top;
    border-radius: 50px;
    box-shadow: none;
    height: 50px;
    margin-right: 0.5em;
    padding-left: 15px;
  }

  .online-form input[type="email"] {
    width: 60%;
  }

  .online-form button {
    background: #f97316;
    border: 0;
    color: #ffffff;
    position: absolute;
    right: 6em;
    width: 25%;
  }

  .online-form button:hover {
    background: #ea580c;
    color: #ffffff;
  }



  /*---------------------------------------
     BUTTONS               
  -----------------------------------------*/

  .section-btn {
    background: #f97316;
    border: 0;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    padding: 12px 30px;
    transition: 0.5s 0.2s;
  }

  .section-btn:hover,
  .section-btn:focus {
    background: #ea580c;
    color: #ffffff;
  }



  /*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }

  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #575757;
    border-top-color: #ffffff;
    animation: spinner .9s linear infinite;
  }

  @-webkit-@keyframes spinner {
    to {transform: rotate(360deg);}
  }

  @keyframes spinner {
    to {transform: rotate(360deg);}
  }



  /*---------------------------------------
      MENU              
  -----------------------------------------*/

  .custom-navbar {
    border: none;
    margin-bottom: 0;
    padding: 25px 0;
  }

  .custom-navbar .navbar-brand {
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -1px;
  }

  .brand-name {
    font-weight: 700;
  }

  .brand-ai {
    color: #f97316;
    font-weight: 700;
  }

  .top-nav-collapse {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  }

  .custom-navbar .navbar-nav {
    margin-left: 6em;
  }

  .custom-navbar .nav li a {
    font-size: 16px;
    font-weight: normal;
    color: #f0f0f0;
    padding-right: 22px;
    padding-left: 22px;
  }

  .custom-navbar .nav li a:hover {
    background: transparent;
    color: #7dd3fc;
  }

  .custom-navbar .navbar-nav > li > a:hover,
  .custom-navbar .navbar-nav > li > a:focus {
    background-color: transparent;
  }

  .custom-navbar .nav li.active > a {
    background-color: transparent;
    color: #7dd3fc;
  }

  .custom-navbar .navbar-toggle {
    border: none;
    padding-top: 10px;
  }

  .custom-navbar .navbar-toggle {
    background-color: transparent;
  }

  .custom-navbar .navbar-toggle .icon-bar {
    background: #0ea5e9;
    border-color: transparent;
  }

  @media(min-width:768px) {
    .custom-navbar {
      border-bottom: 0;
      background: 0 0; 
    }

    .custom-navbar.top-nav-collapse {
      background: rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.55);
      -webkit-box-shadow: 0 8px 32px rgba(14, 165, 233, 0.12);
      -moz-box-shadow: 0 8px 32px rgba(14, 165, 233, 0.12);
      box-shadow: 0 8px 32px rgba(14, 165, 233, 0.12);
      padding: 10px 0;
    }

    .top-nav-collapse .navbar-brand {
      color: #252525;
    }

    .top-nav-collapse .nav li a {
      color: #575757;
    }

    .top-nav-collapse .nav li a:hover,
    .top-nav-collapse .nav li.active > a {
      color: #0284c7;
    }

    .top-nav-collapse .nav .section-btn a {
      color: #ffffff;
    }
  }



  /*---------------------------------------
      HOME          
  -----------------------------------------*/

  #home {
    background: url('../images/home-bg.jpg') no-repeat center center;
    background-size: cover;
    vertical-align: middle;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding-top: 12em;
    text-align: center;
  }

  #home h1 {
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 40px;
  }

  .home-info {
    margin-top: 7em;
  }

  .home-info h3 {
    color: #f0f0f0;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 10px 0;
  }
  


  /*---------------------------------------
      FEATURE              
  -----------------------------------------*/

  #services {
    background: #ffffff;
  }

  #services .nav-tabs {
    border-bottom: 0;
  }

  #services .nav>li>a {
    padding: 8px 0;
  }

  #services .nav-tabs>li>a {
    color: #999999;
    font-size: 18px;
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    margin-right: 35px;
  }

  #services .nav-tabs>li.active>a, 
  #services .nav-tabs>li.active>a:focus, 
  #services .nav-tabs>li.active>a:hover {
    background: transparent;
    color: #202020;
    border-bottom: 3px solid #0ea5e9;
  }

  #services .nav>li>a:focus, 
  #services .nav>li>a:hover {
    background: transparent;
    border-bottom: 3px solid #0ea5e9;
    color: #202020;
  }

  #services .tab-content {
    margin-top: 50px;
  }

  .services-page-head {
    padding-bottom: 20px;
  }

  .services-page-head h1 {
    margin-bottom: 12px;
  }

  .services-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0ea5e9;
    margin: 0 0 8px;
  }

  .services-lead {
    font-size: 16px;
    line-height: 1.65;
    color: #757575;
    margin-left: auto;
    margin-right: auto;
    float: none !important;
    max-width: 720px;
  }

  #services .services-tabs.nav-tabs > li > a {
    margin-right: 8px;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 15px;
  }

  @media only screen and (max-width: 992px) {
    #services .services-tabs.nav-tabs > li > a {
      font-size: 14px;
      margin-right: 4px;
    }
  }

  @media screen and (max-width: 480px) {
    #services .services-tabs.nav-tabs > li {
      width: 50%;
      text-align: center;
    }
    #services .services-tabs.nav-tabs > li > a {
      margin-right: 0;
    }
  }

  .tab-pane-item {
    margin: 20px 0;
  }

  .tab-pane-item h2 {
    margin: 0 0 5px 0;
  }

  .feature-image {
    position: absolute;
    bottom: -27em;
  }



  /*---------------------------------------
      ABOUT              
  -----------------------------------------*/

  #about .col-md-4 {
    margin: 0;
    padding: 0;
  }

  .team-thumb {
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }

  .team-thumb-up:after {
    display: block;
    margin: 0 auto;
    position: absolute;
    top: -15px;
    right: 0;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #ffffff;
  }

  .team-thumb-down:after {
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: -15px;
    right: 0;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid #ffffff;
  }

  .team-info {
    position: relative;
    padding: 40px;
  }

  .team-info h2 {margin: 0;}

  .team-info small {
    display: block;
    font-size: 18px;
    margin: 5px 0 10px 0;
  }

  .team-thumb img {
    width: 100%;
  }



  /*---------------------------------------
      TESTIMONIAL           
  -----------------------------------------*/

  #testimonial {
    background: #ffffff;
  }

  #testimonial .col-md-6 {
    margin: 0;
    padding: 0;
  }

  #testimonial .section-title {
    padding-bottom: 0;
  }

  #testimonial h1 {
    color: #ffffff;
  }

  .testimonial-image {
    background: url('../images/testimonial-image.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 65vh;
  }

  .testimonial-info {
    background: #0c4a6e;
    padding: 60px;
    height: 65vh;
  }

  .testimonial-info h3 {
    color: #d9d9d9;
    font-style: italic;
    margin-top: 5px;
  }

  .testimonial-info .item {
    display: block;
    width: 100%;
  }

  .testimonial-item {
    margin: 20px 0;
  }

  .owl-carousel .owl-item img,
  .testimonial-item img,
  .testimonial-item h4 {
    color: #d9d9d9;
    display: inline-block;
    vertical-align: top;
  }

  .owl-carousel .owl-item img,
  .testimonial-item img {
    border: 3px solid #ffffff;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }



  /*---------------------------------------
      PRICING             
  -----------------------------------------*/

  #about .section-title,
  #pricing .section-title {
    text-align: center;
  }

  #pricing .col-md-4 {
    margin: 0;
    padding: 0;
  }

  #pricing .col-md-4:last-child .pricing-thumb {
    border-right: 0;
  }

  .pricing-thumb {
    background: #ffffff;
    border-right: 2px solid #f0f0f0;
    padding: 20px 40px;
  }

  .pricing-title {
    padding-bottom: 5px;
  }

  .pricing-info {
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
  }

  .pricing-info,
  .pricing-bottom {
    padding: 20px 0;
  }

  .pricing-info p {
    font-size: 16px;
  }

  .pricing-bottom {
    position: relative;
  }

  .pricing-bottom span {
    font-size: 20px;
  }

  .pricing-btn {
    position: absolute;
    top: 15px;
    right: 0;
    display: inline-block;
  }

  .pricing-intro {
    max-width: 640px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: #757575;
    line-height: 1.6;
  }

  .pricing-table-wrap {
    margin-bottom: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  }

  .pricing-table {
    margin-bottom: 0;
    font-size: 14px;
  }

  .pricing-table thead th {
    background: #f8fafc;
    color: #353535;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    padding: 16px 12px !important;
    border-bottom: 2px solid #e2e8f0 !important;
  }

  .pricing-table thead th.pricing-corner {
    background: #fff;
    border-right: 1px solid #e2e8f0;
    width: 22%;
    min-width: 160px;
  }

  .pricing-table tbody th {
    background: #fafbfc;
    font-weight: 600;
    color: #353535;
    text-align: left;
    padding: 12px 16px !important;
    border-right: 1px solid #e2e8f0 !important;
    vertical-align: middle;
  }

  .pricing-table tbody td {
    text-align: center;
    vertical-align: middle;
    padding: 12px 10px !important;
    color: #575757;
    border-color: #e2e8f0 !important;
  }

  .pricing-table tbody tr:nth-child(even) td,
  .pricing-table tbody tr:nth-child(even) th[scope="row"] {
    background: rgba(240, 249, 255, 0.35);
  }

  .pricing-col-featured {
    background: rgba(14, 165, 233, 0.08) !important;
    box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.25);
  }

  .pricing-table thead th.pricing-col-featured {
    background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 100%) !important;
    color: #075985;
    position: relative;
  }

  .pricing-popular-badge {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f97316;
  }

  .pricing-yes {
    color: #059669;
    font-weight: 700;
    font-size: 16px;
  }

  .pricing-no {
    color: #94a3b8;
    font-weight: 600;
    font-size: 16px;
  }

  .pricing-table tfoot th,
  .pricing-table tfoot td {
    border-top: 2px solid #0ea5e9 !important;
    vertical-align: middle;
    padding: 18px 10px !important;
    background: #ffffff;
  }

  .pricing-table tfoot .pricing-buy-label {
    background: #fafbfc;
  }

  .pricing-buy-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 16px !important;
    font-size: 14px !important;
    text-align: center;
    white-space: nowrap;
  }

  button.pricing-buy-btn {
    border: none;
    cursor: pointer;
    font-family: inherit;
  }

  .pricing-col-featured .pricing-buy-btn {
    box-shadow: 0 2px 12px rgba(249, 115, 22, 0.25);
  }

  .setup-fees-section {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid #e2e8f0;
  }

  .setup-fees-heading {
    font-size: 1.65em;
    font-weight: 600;
    color: #353535;
    text-align: center;
    margin: 0 0 16px;
    line-height: 1.3;
  }

  .setup-fees-intro {
    max-width: 720px;
    margin: 0 auto 32px;
    font-size: 16px;
    line-height: 1.65;
    color: #757575;
    text-align: center;
  }

  .setup-fees-table-wrap {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  }

  .setup-fees-table {
    margin-bottom: 0;
    font-size: 14px;
  }

  .setup-fees-table thead th {
    background: #f8fafc;
    color: #353535;
    font-weight: 600;
    padding: 14px 16px !important;
    border-bottom: 2px solid #e2e8f0 !important;
    vertical-align: middle;
  }

  .setup-fees-table thead th:first-child {
    width: 18%;
    min-width: 100px;
  }

  .setup-fees-table tbody th {
    background: #fafbfc;
    font-weight: 600;
    color: #353535;
    padding: 14px 16px !important;
    border-right: 1px solid #e2e8f0 !important;
    vertical-align: top;
  }

  .setup-fees-table tbody td {
    color: #575757;
    padding: 14px 16px !important;
    vertical-align: top;
    line-height: 1.5;
    border-color: #e2e8f0 !important;
  }

  .setup-fees-table tbody tr:nth-child(even) td,
  .setup-fees-table tbody tr:nth-child(even) th[scope="row"] {
    background: rgba(240, 249, 255, 0.35);
  }

  .about-page .about-page-hero-title {
    font-size: 2.25em;
  }

  .about-lead-wide {
    max-width: 720px;
  }

  .sw-heading--sm {
    font-size: 1.35em;
    text-align: left;
  }

  .about-prose-col .sw-heading--sm {
    margin-top: 0;
  }

  .sw-sub--align-left {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    text-align: left;
  }

  .about-learn-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .about-learn-visual {
    margin-bottom: 28px;
  }

  @media (min-width: 992px) {
    .about-learn-visual {
      margin-bottom: 0;
    }
  }

  .about-side-img {
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
  }

  .about-vision-label {
    margin-top: 20px;
    margin-bottom: 6px;
  }

  .about-vision-preview {
    margin-bottom: 0;
  }

  .about-pullquote {
    margin: 0 0 28px;
    padding: 18px 22px;
    border-left: 4px solid #0ea5e9;
    font-size: 1.15em;
    font-style: italic;
    color: #454545;
    background: rgba(14, 165, 233, 0.06);
    border-radius: 0 10px 10px 0;
  }

  .about-who-last {
    margin-bottom: 0;
  }

  .about-mission-vision-row {
    margin-top: 36px;
  }

  .about-mv-card .about-mv-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0ea5e9;
    margin: 0 0 10px;
  }

  .about-mv-card p:last-child {
    margin-bottom: 0;
    color: #575757;
    font-size: 15px;
    line-height: 1.55;
  }

  .about-pillars .about-pillar-card {
    height: 100%;
  }

  .sw-footer-page {
    padding: 50px 0 70px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
  }

  .sw-footer-page .sw-footer-tagline {
    color: #575757;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .sw-footer-social-wrap {
    margin-top: 16px;
  }

  .sw-footer-social-wrap .social-icon {
    padding: 0;
    margin: 0;
  }

  /*---------------------------------------
      CONTACT             
  -----------------------------------------*/

  .contact-page-main {
    background: #ffffff;
    padding: 70px 0 90px;
  }

  .contact-form-status {
    margin-bottom: 24px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.5;
  }

  .contact-form-status--success {
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid #0ea5e9;
    color: #0c4a6e;
  }

  .contact-form-status-note {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.5;
    color: #0c4a6e;
    opacity: 0.95;
  }

  .contact-form-status-note code {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.6);
    padding: 2px 6px;
    border-radius: 4px;
  }

  .contact-form-status--error {
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid #f97316;
    color: #9a3412;
  }

  .contact-env-warning {
    background: #fef3c7;
    border-bottom: 2px solid #f59e0b;
    color: #78350f;
    padding: 14px 0;
    font-size: 14px;
    line-height: 1.55;
  }

  .contact-env-warning a {
    font-weight: 700;
    color: #b45309;
    text-decoration: underline;
  }

  .contact-env-warning a:hover,
  .contact-env-warning a:focus {
    color: #92400e;
  }

  .contact-map-section {
    background: #f0f9ff;
    padding: 70px 0 80px;
  }

  .contact-map-heading {
    text-align: center;
    margin: 0 0 10px;
    color: #353535;
    font-size: 1.85em;
    font-weight: 400;
  }

  .contact-map-address {
    color: #575757;
    font-size: 15px;
    margin-bottom: 28px;
  }

  .contact-map-frame-wrap {
    max-width: 960px;
    min-height: 420px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
    border: 1px solid #e2e8f0;
    background: #e2e8f0;
  }

  .contact-map-frame-wrap iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
  }

  .contact-map-frame-wrap--inline {
    max-width: none;
    min-height: 320px;
    margin: 28px 0 0;
  }

  .contact-map-frame-wrap--inline iframe {
    height: 320px;
  }

  .contact-map-open--inline {
    text-align: left;
    margin: 12px 0 0;
    font-size: 14px;
  }

  @media screen and (max-width: 767px) {
    .contact-map-frame-wrap {
      min-height: 280px;
    }

    .contact-map-frame-wrap iframe {
      height: 280px;
    }

    .contact-map-frame-wrap--inline {
      min-height: 260px;
    }

    .contact-map-frame-wrap--inline iframe {
      height: 260px;
    }

    .contact-map-section {
      padding: 50px 0 60px;
    }
  }

  .contact-map-open {
    text-align: center;
    margin: 18px 0 0;
    font-size: 15px;
  }

  .contact-map-open a {
    font-weight: 600;
    color: #0284c7;
  }

  .contact-map-open a:hover,
  .contact-map-open a:focus {
    color: #0369a1;
  }

  .contact-page-h2 {
    margin-top: 0;
    color: #353535;
    font-size: 1.85em;
    font-weight: 400;
  }

  .contact-page-lead {
    color: #575757;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .contact-details-list li {
    margin-bottom: 14px;
    color: #575757;
    font-size: 15px;
    line-height: 1.55;
  }

  .contact-details-list .fa {
    color: #0ea5e9;
    width: 22px;
    margin-right: 8px;
  }

  .contact-details-list a {
    color: #0284c7;
  }

  .contact-keep-touch {
    margin-top: 28px;
    margin-bottom: 12px;
  }

  .contact-inline-social {
    padding-left: 0;
    margin: 0;
  }

  .contact-inline-social li {
    padding-right: 14px;
    padding-left: 0;
    margin-bottom: 8px;
  }

  .contact-social-link {
    font-size: 14px;
    font-weight: 600;
    color: #0ea5e9;
  }

  .contact-social-link:hover,
  .contact-social-link:focus {
    color: #0284c7;
  }

  .contact-form-heading {
    margin-top: 0;
    font-size: 1.4em;
    color: #353535;
    font-weight: 400;
  }

  .contact-anna-lead {
    color: #757575;
    margin-bottom: 22px;
    font-size: 16px;
  }

  .sw-page-hero .contact-page-eyebrow {
    color: #7dd3fc;
    margin-bottom: 10px;
  }

  .contact-quick-cards {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .contact-info-card p {
    margin-bottom: 0;
    line-height: 1.65;
    color: #575757;
  }

  .contact-info-card a {
    color: #0284c7;
    font-weight: 600;
  }

  .contact-info-meta {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
    color: #94a3b8;
  }

  .contact-page-main .sw-sub--align-left {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .contact-form-panel {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 26px 24px;
  }

  .contact-form-panel .contact-form-heading {
    margin-top: 0;
  }

  .contact-form-status--cart {
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #92400e;
    margin-bottom: 16px;
  }

  .contact-page-social {
    margin: 0;
    padding: 0;
    text-align: left;
  }

  .contact-page-social li {
    display: inline-block;
    margin-right: 8px;
  }

  .contact-page-social .fa {
    font-size: 22px;
    color: #0ea5e9;
    transition: color 0.2s;
  }

  .contact-page-social .fa:hover,
  .contact-page-social .fa:focus {
    color: #0284c7;
  }

  .contact-page-main #contact-form .form-control {
    background: #ffffff;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px;
    box-shadow: none;
    margin: 10px 0;
    padding: 12px 14px;
  }

  .contact-page-main #contact-form input.form-control {
    height: 46px;
  }

  .contact-page-main #contact-form textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
  }

  .contact-page-main #contact-form .contact-comment-field {
    min-height: 80px;
  }

  .contact-page-main #contact-form .form-control:focus {
    border-color: #0ea5e9 !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
  }

  .contact-page-main #contact-form .form-control::placeholder {
    color: #94a3b8;
  }

  .contact-page-main #contact-form .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .contact-page-main #contact-form .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-map-section .sw-section-head {
    padding-bottom: 28px;
  }

  .contact-map-section .sw-sub {
    margin-bottom: 0;
  }

  .sw-auth-section {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .sw-auth-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 28px 8px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  }

  .sw-auth-panel--login-colorful {
    position: relative;
    border: none;
    border-radius: 20px;
    padding: 0 0 12px;
    overflow: hidden;
    background: linear-gradient(165deg, #f0f9ff 0%, #faf5ff 45%, #fff7ed 100%);
    box-shadow:
      0 12px 40px rgba(14, 165, 233, 0.15),
      0 0 0 2px transparent;
  }

  .sw-auth-panel--login-colorful::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(135deg, #38bdf8, #a78bfa, #fb923c);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  .sw-auth-login-header {
    text-align: center;
    padding: 28px 24px 20px;
    background: linear-gradient(120deg, #0ea5e9 0%, #8b5cf6 50%, #f97316 100%);
    color: #fff;
    margin-bottom: 20px;
  }

  .sw-auth-login-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.22);
    border: 2px solid rgba(255, 255, 255, 0.45);
    font-size: 1.5rem;
    margin-bottom: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .sw-auth-login-title {
    margin: 0 0 6px;
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  }

  .sw-auth-login-sub {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
  }

  .sw-auth-panel--login-colorful .sw-auth-intro,
  .sw-auth-panel--login-colorful .sw-auth-alt-link {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sw-auth-form--colorful {
    padding: 0 24px 8px;
  }

  .sw-auth-label--email {
    color: #0369a1 !important;
  }

  .sw-auth-label--password {
    color: #6d28d9 !important;
  }

  .sw-auth-input-wrap {
    position: relative;
    margin-bottom: 16px;
  }

  .sw-auth-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
  }

  .sw-auth-input-wrap--email .sw-auth-input-icon {
    color: #0ea5e9;
  }

  .sw-auth-input-wrap--password .sw-auth-input-icon {
    color: #8b5cf6;
  }

  .sw-auth-input-wrap .form-control.contact-field {
    padding-left: 42px;
    border-width: 2px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
  }

  .sw-auth-input-wrap--email .form-control.contact-field {
    border-color: #7dd3fc;
  }

  .sw-auth-input-wrap--email .form-control.contact-field:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2);
  }

  .sw-auth-input-wrap--password .form-control.contact-field {
    border-color: #c4b5fd;
  }

  .sw-auth-input-wrap--password .form-control.contact-field:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
  }

  .sw-auth-panel--login-colorful .sw-auth-forgot a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #7c3aed;
    font-weight: 700;
  }

  .sw-auth-panel--login-colorful .sw-auth-forgot a:hover,
  .sw-auth-panel--login-colorful .sw-auth-forgot a:focus {
    color: #ea580c;
  }

  .sw-auth-btn-signin {
    width: 100%;
    border: none !important;
    border-radius: 999px !important;
    padding: 14px 24px !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: linear-gradient(105deg, #0284c7 0%, #7c3aed 42%, #f97316 100%) !important;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
    transition: transform 0.15s, box-shadow 0.15s;
  }

  .sw-auth-btn-signin:hover,
  .sw-auth-btn-signin:focus {
    background: linear-gradient(105deg, #0369a1 0%, #6d28d9 45%, #ea580c 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
    color: #fff !important;
  }

  .sw-auth-intro {
    color: #353535;
    margin-bottom: 8px;
    font-size: 15px;
  }

  .sw-auth-alt-link {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .sw-auth-register-cta {
    color: #f97316 !important;
    font-weight: 700;
    text-decoration: none !important;
  }

  .sw-auth-register-cta:hover,
  .sw-auth-register-cta:focus {
    color: #ea580c !important;
    text-decoration: underline !important;
  }

  .sw-checkout-auth-modal__actions .sw-auth-register-cta.btn {
    color: #f97316 !important;
    border: 2px solid #f97316 !important;
    background: #ffffff !important;
    font-weight: 600;
  }

  .sw-checkout-auth-modal__actions .sw-auth-register-cta.btn:hover,
  .sw-checkout-auth-modal__actions .sw-auth-register-cta.btn:focus {
    color: #ffffff !important;
    background: #f97316 !important;
    border-color: #ea580c !important;
    text-decoration: none !important;
  }

  .sw-auth-form .contact-field {
    margin-bottom: 16px;
  }

  .sw-auth-forgot {
    margin: -4px 0 14px;
    text-align: right;
    font-size: 13px;
  }

  .sw-auth-forgot a {
    color: #0284c7;
    font-weight: 600;
    text-decoration: none;
  }

  .sw-auth-forgot a:hover,
  .sw-auth-forgot a:focus {
    color: #0c4a6e;
    text-decoration: underline;
  }

  .sw-auth-actions {
    margin-top: 24px;
    margin-bottom: 16px;
  }

  .sw-auth-hint {
    font-weight: 400;
    color: #757575;
    font-size: 12px;
  }

  .sw-auth-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 14px;
  }

  .sw-auth-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 14px;
  }

  .sw-auth-demo-note {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .sw-orders-section {
    padding-top: 40px;
    padding-bottom: 70px;
  }

  .sw-orders-root {
    max-width: 720px;
    margin: 0 auto;
  }

  .sw-orders-empty {
    text-align: center;
  }

  .sw-order-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  }

  .sw-order-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
  }

  .sw-order-card__id {
    font-size: 12px;
    color: #64748b;
    font-family: Consolas, monospace;
  }

  .sw-order-card__status {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 999px;
  }

  .sw-order-card__status--active {
    background: #dcfce7;
    color: #166534;
  }

  .sw-order-card__meta {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
  }

  .sw-order-card__lines li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
  }

  .sw-order-card__lines li:last-child {
    border-bottom: none;
  }

  .sw-order-card__totals {
    margin: 14px 0 0;
    font-size: 14px;
    color: #353535;
  }

  .sw-active-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
  }

  .sw-active-product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  }

  .sw-active-product-card--clickable {
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
  }

  .sw-active-product-card--clickable:hover,
  .sw-active-product-card--clickable:focus {
    border-color: #0284c7;
    box-shadow: 0 8px 28px rgba(2, 132, 199, 0.15);
    outline: none;
  }

  .sw-active-product-card__hint {
    margin: 12px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: #0284c7;
  }

  .sw-active-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
  }

  @media (min-width: 600px) {
    .sw-active-modal {
      align-items: center;
      padding: 16px;
    }
  }

  .sw-active-modal[hidden] {
    display: none !important;
  }

  .sw-active-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
  }

  .sw-active-modal__panel {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.2);
  }

  @media (min-width: 600px) {
    .sw-active-modal__panel {
      border-radius: 12px;
    }
  }

  .sw-active-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
  }

  .sw-active-modal__title {
    margin: 0;
    font-size: 1.2em;
    color: #0c4a6e;
    line-height: 1.3;
  }

  .sw-active-modal__close {
    flex-shrink: 0;
    border: none;
    background: #f1f5f9;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    color: #475569;
  }

  .sw-active-modal__close:hover {
    background: #e2e8f0;
  }

  .sw-active-modal__body {
    padding: 16px 18px 24px;
    font-size: 14px;
    color: #334155;
  }

  .sw-active-modal__section {
    margin-bottom: 1.25rem;
  }

  .sw-active-modal__section h4 {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
  }

  .sw-active-modal__dl {
    margin: 0;
  }

  .sw-active-modal__dl > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .sw-active-modal__dl dt {
    color: #64748b;
    flex-shrink: 0;
  }

  .sw-active-modal__dl dd {
    margin: 0;
    text-align: right;
    word-break: break-word;
  }

  .sw-active-modal__renewal {
    background: #f8fafc;
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: 8px;
  }

  .sw-active-modal__renewal h4 {
    margin-bottom: 6px;
  }

  .sw-active-modal__renewal p {
    margin: 0;
    line-height: 1.5;
  }

  .sw-active-product-card__running {
    font-size: 12px;
    font-weight: 700;
    color: #166534;
  }

  .sw-active-product-card__badge {
    margin-bottom: 10px;
  }

  .sw-active-product-card__title {
    margin: 0 0 8px;
    font-size: 1.15em;
    color: #0c4a6e;
  }

  .sw-active-product-card__meta,
  .sw-active-product-card__order {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 6px;
  }

  .sw-account-quick-links {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
  }

  .sw-account-quick-links a {
    font-weight: 600;
    color: #0284c7;
  }

  .sw-billing-summary {
    margin-bottom: 24px;
  }

  .sw-billing-stat {
    text-align: center;
    padding: 12px 8px;
  }

  .sw-billing-stat__label {
    margin: 0 0 4px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
  }

  .sw-billing-stat__value {
    margin: 0;
    font-size: 1.4em;
    font-weight: 700;
    color: #0c4a6e;
  }

  .sw-billing-stat__value--small {
    font-size: 0.95em;
    font-weight: 600;
  }

  .sw-billing-totals {
    margin: 16px 0 0;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: #475569;
  }

  .sw-billing-h2 {
    margin: 0 0 16px;
    font-size: 1.25em;
    color: #0c4a6e;
  }

  .sw-billing-table {
    margin-bottom: 0;
  }

  .sw-billing-table code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
  }

  .sw-account-quick-links__sep {
    margin: 0 10px;
    color: #cbd5e1;
  }

  .sw-account-secondary-actions {
    margin-top: 8px;
    text-align: center;
  }

  .sw-account-secondary-actions .btn {
    margin: 4px;
  }

  .contact-field-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #353535;
    margin-bottom: 6px;
  }

  .contact-field-label .req {
    color: #f97316;
  }

  .contact-page-main #contact-form .contact-field {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: none;
    margin: 0 0 4px;
    padding: 10px 14px;
    height: auto;
  }

  .contact-page-main #contact-form .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  .contact-page-main #contact-form .row > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }

  .contact-page-main #contact-form input.contact-field {
    height: 46px;
  }

  .contact-page-main #contact-form .contact-textarea {
    min-height: 100px;
    resize: vertical;
  }

  .contact-page-main #contact-form .form-control:focus {
    border-color: #0ea5e9;
    border-bottom-color: #0ea5e9;
  }

  .contact-submit-btn {
    margin-top: 12px;
    border: 0;
    cursor: pointer;
  }

  @media screen and (max-width: 991px) {
    .contact-page-col--form {
      margin-top: 40px;
    }
  }

  #contact-form .col-md-12,
  #contact-form .col-md-4 {
    padding-left: 0;
  }

  #contact-form .form-control {
    background: transparent;
    border: 0;
    border-bottom: 3px solid #f0f0f0;
    border-radius: 0;
    box-shadow: none;
    margin: 10px 0;
  }

  #contact-form .form-control:focus {
    border-bottom-color: #0ea5e9;
  }

  #contact-form input {
    height: 50px;
  }

  #contact-form input[type='submit'] {
    background: #f97316;
    border-radius: 50px;
    border: 0;
    color: #ffffff;
  }

  #contact-form input[type='submit']:hover {
    background: #ea580c;
    color: #ffffff;
  }
  


  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  footer {
    padding-bottom: 80px;
  }

  .copyright-text p {
    margin: 5px;
  }



  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    border-radius: 50px;
    color: #202020;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    position: relative;
    margin: 5px 5px 5px 0;
  }

  .social-icon li a:hover {
    background: #0ea5e9;
    color: #ffffff;
  }



  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media only screen and (max-width: 1200px) {

    .custom-navbar .navbar-nav {
      margin-left: 3em;
    }

    .home-info {
      margin-top: 0;
    }
  }


  @media only screen and (max-width: 992px) {

    section {
      padding: 60px 0;
    }

    .custom-navbar .navbar-nav {
      margin-left: 0;
    }

    .custom-navbar .nav li a {
      font-size: 14px;
      padding-right: 15px;
      padding-left: 15px;
    }

    #services .nav-tabs>li>a {
      font-size: 16px;
      margin-right: 20px;
    }

    .feature-image {
      bottom: -24em;
    }

    .pricing-thumb {
      margin-bottom: 30px;
    }

    footer {
      padding-bottom: 40px;
    }
  }


  @media screen and (max-width: 767px) {

    .section-title {
      padding-bottom: 20px;
    }

    .custom-navbar {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      text-align: center;
    }

    .custom-navbar .nav li a {
      line-height: normal;
      padding: 5px;
    }

    .custom-navbar .navbar-brand,
    .top-nav-collapse .navbar-brand {
      color: #202020;
      font-weight: normal;
    }

    .custom-navbar .nav li a,
    .top-nav-collapse .nav li a {
      color: #656565;
    }

    .custom-navbar .nav li a:hover,
    .custom-navbar .nav li.active > a {
      color: #0284c7;
    }

    .feature-image {
      position: relative;
      bottom: 0;
    }

    #about .col-md-4:nth-child(3n) .team-thumb {
      display: flex;
      -webkit-box-orient: vertical;
      flex-direction: column-reverse;
      -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
    }

    .team-thumb-down:after {
      top: -15px;
      bottom: inherit;
      border-top: inherit;
      border-bottom: 15px solid #ffffff;
    }

    .testimonial-image,
    .testimonial-info {
      height: 85vh;
    }

    .testimonial-info {
      padding: 30px;
    }
  }


  @media screen and (max-width: 480px) {

    .online-form input[type="email"],
    .online-form .form-control {
      width: 85%;
    }

    .online-form .form-control {
      display: block;
      margin: 20px auto;
    }

    .online-form button {
      position: relative;
      right: 0;
    }

    .testimonial-image,
    .testimonial-info {
      height: 65vh;
    }
  }

  /* Carousel — match sky blue theme */
  .owl-theme .owl-nav [class*=owl-]:hover {
    background: #0ea5e9;
  }

  .owl-theme .owl-dots .owl-dot.active span,
  .owl-theme .owl-dots .owl-dot:hover span {
    background: #0ea5e9;
  }

  /* Multi-page: feature mockup no longer overlaps next section */
  .inner-page .feature-image {
    position: relative;
    bottom: auto;
  }

  @media only screen and (max-width: 992px) {
    .inner-page .feature-image {
      bottom: auto;
    }
  }

  /* Blog */
  #blog {
    background: #ffffff;
  }

  .blog-post {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .blog-post h2 {
    margin-top: 0;
    font-size: 1.5em;
  }

  .blog-post .blog-meta {
    font-size: 13px;
    color: #0ea5e9;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
  }

  .blog-post p {
    margin-bottom: 16px;
  }

  .blog-post .read-more {
    font-weight: 600;
  }

  .blog-post h2 a {
    color: #353535;
  }

  .blog-post h2 a:hover,
  .blog-post h2 a:focus {
    color: #0284c7;
  }

  .sw-blog-dynamic-wrap {
    margin-bottom: 28px;
  }

  .sw-blog-dynamic-heading {
    font-size: 1.35em;
    margin-bottom: 18px;
    color: #0f172a;
    font-weight: 700;
  }

  .sw-blog-post--dynamic {
    border-left: 4px solid #0ea5e9;
  }

  .sw-blog-thumb-link {
    display: block;
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f5f9;
  }

  .sw-blog-thumb-link:focus {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
  }

  .sw-blog-thumb {
    display: block;
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    vertical-align: middle;
  }

  .sw-blog-article-figure {
    margin: 0 0 28px;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
  }

  .sw-blog-article-image {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
  }

  .blog-article-section {
    background: #ffffff;
  }

  .blog-back {
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
  }

  .blog-back a {
    color: #0ea5e9;
  }

  .blog-back a:hover,
  .blog-back a:focus {
    color: #0284c7;
  }

  .blog-article-body {
    max-width: 720px;
    margin: 0 auto 40px;
  }

  .blog-article-body .blog-meta {
    margin-bottom: 20px;
  }

  .blog-article-body p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 1.1em;
    color: #575757;
  }

  .blog-article-body h2 {
    font-size: 1.35em;
    color: #353535;
    margin: 1.75em 0 0.65em;
    font-weight: 600;
  }

  .blog-article-body a {
    color: #0284c7;
    font-weight: 600;
  }

  .blog-article-body a:hover,
  .blog-article-body a:focus {
    color: #0369a1;
  }

  .blog-sidebar {
    padding-left: 15px;
  }

  @media screen and (max-width: 991px) {
    .blog-sidebar {
      padding-left: 15px;
      margin-top: 20px;
      padding-top: 30px;
      border-top: 1px solid #f0f0f0;
    }
  }

  .blog-widget {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  .blog-widget-title {
    font-size: 1.1em;
    font-weight: 600;
    margin: 0 0 12px;
    color: #353535;
  }

  .blog-widget-intro {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .social-icon--sidebar {
    text-align: left;
    margin-bottom: 0;
  }

  .social-icon--sidebar li a {
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 18px;
    margin: 0 8px 0 0;
  }

  .blog-banner {
    background: linear-gradient(145deg, #075985 0%, #0ea5e9 55%, #38bdf8 100%);
    border: none;
    color: #f0f9ff;
    padding: 24px 22px;
  }

  .blog-banner p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .blog-banner--lead {
    background: linear-gradient(145deg, #9a3412 0%, #f97316 50%, #fb923c 100%);
  }

  .blog-banner-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0c4a6e;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
  }

  .blog-banner-badge--orange {
    color: #9a3412;
    background: rgba(255, 255, 255, 0.95);
  }

  .blog-banner-title {
    font-size: 1.25em;
    font-weight: 600;
    margin: 0 0 12px;
    color: #ffffff;
    line-height: 1.3;
  }

  .blog-banner-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
  }

  .blog-banner--bots .blog-banner-btn {
    margin-top: 4px;
  }

  /* ---- ServeWise home (servewiseai.com layout) ---- */
  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    padding: 0.75rem 1rem;
    background: #f97316;
    color: #fff;
    font-weight: 600;
  }
  .skip-link:focus {
    left: 1rem;
    top: 1rem;
  }

  .sw-home #home .home-kicker {
    color: #f0f0f0;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 10px 0;
  }

  .sw-home #home .home-headline {
    color: #ffffff;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin: 10px 0 20px;
    font-weight: 400;
  }

  .sw-home #home .home-lead {
    color: #e8f4fc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .sw-home #home .home-actions .section-btn {
    margin: 6px 8px 6px 0;
  }

  .sw-btn-outline {
    background: transparent !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
  }

  .sw-btn-outline:hover,
  .sw-btn-outline:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
  }

  .custom-navbar .navbar-nav.sw-nav-main {
    margin-left: 6em;
  }

  .custom-navbar .navbar-nav.sw-nav-cta {
    margin-left: 0;
  }

  @media (max-width: 767px) {
    .custom-navbar .navbar-nav.sw-nav-main {
      margin-left: 0;
    }
  }

  @media (min-width: 768px) {
    .custom-navbar > .container > .navbar-collapse.collapse {
      display: flex !important;
      align-items: center;
      justify-content: space-between;
      flex-wrap: nowrap;
      width: 100%;
      float: none;
    }

    .custom-navbar .navbar-nav.sw-nav-main {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      float: none !important;
      flex: 1 1 auto;
      min-width: 0;
      margin-bottom: 0;
    }

    .sw-nav-cta {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 10px;
      flex: 0 0 auto;
    }

    .sw-nav-cta > li {
      float: none !important;
    }

    /* Inner pages: align Book / cart / account on one horizontal line */
    .custom-navbar.navbar-inner-page > .container > .navbar-collapse.collapse {
      width: auto;
    }

    .navbar-inner-page .navbar-collapse.collapse {
      display: flex !important;
      align-items: center;
      justify-content: space-between;
      flex-wrap: nowrap;
      width: auto;
      border-top: 0;
      box-shadow: none;
      padding-left: 0;
      padding-right: 0;
    }

    .navbar-inner-page .sw-nav-main {
      float: none !important;
      margin: 0 auto 0 0 !important;
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      align-content: center;
      min-width: 0;
    }

    .navbar-inner-page .sw-nav-cta {
      float: none !important;
      margin-left: auto !important;
      margin-right: 0 !important;
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 12px;
    }

    .navbar-inner-page .sw-nav-cta > li {
      display: flex;
      align-items: center;
      margin: 0;
      padding: 0;
      line-height: 1;
    }

    .navbar-inner-page .sw-nav-cta > li > a.sw-btn-nav {
      margin-top: 0;
      margin-bottom: 0;
    }

    /* Home: keep brand + links + icons on one aligned row (no navbar-inner-page on hero) */
    body.sw-home .custom-navbar > .container {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      justify-content: space-between;
    }

    body.sw-home .custom-navbar .navbar-header {
      float: none;
      flex: 0 0 auto;
    }

    body.sw-home .custom-navbar > .container > .navbar-collapse.collapse {
      width: auto;
      flex: 1 1 auto;
      min-width: 0;
      justify-content: space-between;
      margin: 0;
      padding-left: 12px;
    }

    body.sw-home .custom-navbar .navbar-nav.sw-nav-main {
      margin-left: 0;
      margin-right: auto;
    }

    body.sw-home .custom-navbar .navbar-nav.sw-nav-cta {
      margin-left: 0;
      flex-shrink: 0;
    }
  }

  .sw-nav-cta li {
    margin-left: 0;
  }

  .sw-btn-nav {
    display: inline-block;
    margin-top: 0;
    padding: 8px 16px !important;
    border-radius: 50px;
    font-size: 14px !important;
    font-weight: 600;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: transparent !important;
    white-space: nowrap;
  }

  .sw-btn-nav:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
  }

  .sw-btn-nav--primary {
    background: #f97316 !important;
    border-color: #f97316 !important;
    color: #ffffff !important;
  }

  .sw-btn-nav--primary:hover {
    background: #ea580c !important;
    border-color: #ea580c !important;
    color: #ffffff !important;
  }

  .top-nav-collapse .sw-btn-nav:not(.sw-btn-nav--primary) {
    color: #0284c7 !important;
    border-color: #0ea5e9;
    background: transparent !important;
  }

  .top-nav-collapse .sw-btn-nav:not(.sw-btn-nav--primary):hover {
    background: rgba(14, 165, 233, 0.12) !important;
    color: #0369a1 !important;
  }

  .top-nav-collapse .sw-btn-nav--primary {
    background: #f97316 !important;
    border-color: #f97316 !important;
    color: #ffffff !important;
  }

  .top-nav-collapse .sw-btn-nav--primary:hover {
    background: #ea580c !important;
    border-color: #ea580c !important;
    color: #ffffff !important;
  }

  .sw-nav-account {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: 0 !important;
    padding: 0 !important;
    font-size: 26px;
    line-height: 1;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 50%;
    text-decoration: none !important;
  }

  .sw-nav-account:hover,
  .sw-nav-account:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
  }

  .top-nav-collapse .sw-nav-account {
    color: #0ea5e9 !important;
    border-color: #0ea5e9 !important;
  }

  .top-nav-collapse .sw-nav-account:hover,
  .top-nav-collapse .sw-nav-account:focus {
    background: rgba(14, 165, 233, 0.12);
    color: #0284c7 !important;
  }

  .sw-nav-account-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sw-nav-account-dropdown {
    position: relative;
  }

  button.sw-nav-account.sw-nav-account-trigger {
    cursor: pointer;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    box-sizing: border-box;
  }

  .sw-nav-account-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    min-width: 232px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.18);
    z-index: 10060;
  }

  .sw-nav-account-menu[hidden] {
    display: none !important;
  }

  .sw-nav-account-menu__link {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: #0c4a6e !important;
    text-decoration: none !important;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
  }

  .sw-nav-account-menu__link:hover,
  .sw-nav-account-menu__link:focus {
    background: #f0f9ff;
    color: #0284c7 !important;
  }

  .sw-nav-account-menu .sw-auth-register-cta {
    color: #f97316 !important;
  }

  .sw-nav-account-menu .sw-auth-register-cta:hover,
  .sw-nav-account-menu .sw-auth-register-cta:focus {
    color: #ea580c !important;
    background: #fff7ed;
  }

  .sw-nav-account-menu__link--dashboard {
    font-weight: 700;
    color: #7c3aed;
  }

  .sw-nav-account-menu__link--dashboard:hover,
  .sw-nav-account-menu__link--dashboard:focus {
    color: #6d28d9;
    background: rgba(124, 58, 237, 0.08);
  }

  .sw-nav-account-menu__link--active {
    background: #f0f9ff !important;
    color: #0284c7 !important;
    box-shadow: inset 0 0 0 1px #bae6fd;
  }

  .sw-nav-account-menu__meta {
    margin: 0;
    padding: 4px 18px 12px;
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    border-bottom: 1px solid #f1f5f9;
  }

  .sw-nav-account-menu__acct {
    padding-top: 0;
    margin-top: -6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-weight: 600;
    color: #0c4a6e;
  }

  .sw-nav-account-menu__btn {
    display: block;
    width: 100%;
    padding: 10px 18px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    line-height: 1.35;
    border: none;
    background: transparent;
    color: #991b1b;
    cursor: pointer;
    box-sizing: border-box;
  }

  .sw-nav-account-menu__btn:hover,
  .sw-nav-account-menu__btn:focus {
    background: #fef2f2;
    color: #7f1d1d;
  }

  .sw-nav-cart {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 44px;
    height: 44px;
    margin-top: 0 !important;
    padding: 0 !important;
    font-size: 20px;
    line-height: 1;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 50%;
    text-decoration: none !important;
  }

  .sw-nav-cart:hover,
  .sw-nav-cart:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
  }

  .top-nav-collapse .sw-nav-cart {
    color: #0ea5e9 !important;
    border-color: #0ea5e9 !important;
  }

  .top-nav-collapse .sw-nav-cart:hover,
  .top-nav-collapse .sw-nav-cart:focus {
    background: rgba(14, 165, 233, 0.12);
    color: #0284c7 !important;
  }

  .sw-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: #ffffff;
    background: #f97316;
    border-radius: 999px;
    border: 2px solid #ffffff;
  }

  .sw-cart-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    z-index: 10001;
    padding: 12px 22px;
    background: #0c4a6e;
    color: #ffffff;
    border-radius: 50px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    max-width: calc(100vw - 40px);
    text-align: center;
    font-size: 14px;
  }

  .sw-cart-toast--in {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .sw-cart-toast--out {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }

  .sw-checkout-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    box-sizing: border-box;
  }

  .sw-checkout-auth-modal[hidden] {
    display: none !important;
  }

  .sw-checkout-auth-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    cursor: pointer;
  }

  .sw-checkout-auth-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 24px 20px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
    animation: sw-checkout-auth-in 0.2s ease-out;
  }

  @keyframes sw-checkout-auth-in {
    from {
      opacity: 0;
      transform: translateY(12px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .sw-checkout-auth-modal__title {
    margin: 0 0 12px;
    font-size: 1.35em;
    font-weight: 600;
    color: #353535;
  }

  .sw-checkout-auth-modal__lead {
    margin: 0 0 22px;
    color: #575757;
    font-size: 15px;
    line-height: 1.55;
  }

  .sw-checkout-auth-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-bottom: 8px;
  }

  .sw-checkout-auth-modal__actions .section-btn {
    flex: 1 1 auto;
    min-width: 120px;
    text-align: center;
  }

  .sw-checkout-auth-modal__btn-secondary {
    flex: 1 1 auto;
    min-width: 120px;
    border-radius: 8px;
    padding: 12px 18px;
  }

  .sw-checkout-auth-modal__cancel {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding: 8px;
    color: #64748b;
    text-align: center;
  }

  .sw-checkout-auth-modal__cancel:hover,
  .sw-checkout-auth-modal__cancel:focus {
    color: #0c4a6e;
  }

  body.sw-checkout-auth-modal-active {
    overflow: hidden;
  }

  .sw-cart-page-section {
    padding: 50px 0 90px;
    background: #ffffff;
    min-height: 280px;
  }

  .sw-cart-table {
    margin-bottom: 0;
  }

  .sw-cart-table th {
    font-weight: 600;
    color: #353535;
  }

  .sw-cart-qty {
    max-width: 76px;
    margin: 0;
  }

  .sw-cart-totals-box {
    max-width: 480px;
    margin: 24px 0 8px;
    padding: 20px 22px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
  }

  .sw-cart-totals-heading {
    margin: 0 0 14px;
    font-size: 1.1em;
    font-weight: 600;
    color: #353535;
  }

  .sw-cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
  }

  .sw-cart-total-row:last-of-type {
    border-bottom: none;
    padding-bottom: 4px;
  }

  .sw-cart-total-label {
    color: #64748b;
    flex: 1;
    min-width: 0;
  }

  .sw-cart-total-value {
    font-weight: 600;
    color: #0c4a6e;
    text-align: right;
    white-space: nowrap;
  }

  .sw-cart-total-row--grand {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 2px solid #0ea5e9;
    border-bottom: none;
    font-size: 1.05em;
  }

  .sw-cart-total-value--grand {
    font-size: 1.25em;
    color: #0c4a6e;
  }

  .sw-cart-total-hint {
    margin: 12px 0 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.45;
  }

  @media screen and (max-width: 767px) {
    .sw-cart-totals-box {
      max-width: none;
    }

    .sw-cart-total-value {
      white-space: normal;
      text-align: right;
    }
  }

  .sw-cart-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .sw-cart-actions .section-btn {
    margin-right: 0;
    margin-bottom: 0;
  }

  .sw-cart-actions .sw-cart-clearall {
    margin: 0;
  }

  .checkout-page-section {
    padding: 50px 0 90px;
    background: #ffffff;
  }

  .checkout-section-title {
    font-size: 1.35em;
    font-weight: 400;
    color: #353535;
    margin: 0 0 18px;
  }

  .checkout-summary-table {
    margin-bottom: 12px;
  }

  .checkout-summary-table th {
    font-weight: 600;
    color: #353535;
  }

  .checkout-summary-totals {
    font-size: 15px;
    color: #575757;
    margin: 20px 0 0;
  }

  .checkout-payment-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 22px;
    margin-top: 8px;
  }

  @media (min-width: 992px) {
    .checkout-payment-card {
      margin-top: 42px;
    }
  }

  .checkout-payment-note {
    font-size: 14px;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .checkout-placeholder-fields {
    margin-bottom: 20px;
    opacity: 0.85;
  }

  .checkout-pl-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #575757;
    margin-bottom: 4px;
  }

  .checkout-pl-input {
    margin-bottom: 12px;
    background: #f1f5f9 !important;
    cursor: not-allowed;
  }

  .checkout-pl-row {
    margin-left: -8px;
    margin-right: -8px;
  }

  .checkout-pl-row > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }

  .checkout-payment-actions {
    margin: 20px 0 12px;
  }

  .checkout-pay-btn {
    width: 100%;
    text-align: center;
    display: block;
    border: none;
    cursor: pointer;
  }

  .checkout-back-link {
    font-size: 14px;
    margin: 0;
  }

  .checkout-back-link a {
    color: #0284c7;
    font-weight: 600;
  }

  .sw-payment-methods-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 0 10px;
  }

  .sw-stripe-payment-element {
    min-height: 120px;
    padding: 14px 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 8px;
  }

  .sw-stripe-payment-element:empty {
    min-height: 0;
    padding: 0;
    border: none;
    background: transparent;
  }

  .sw-demo-payment-panel {
    margin-bottom: 8px;
  }

  .sw-demo-pay-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
  }

  .sw-demo-pay-tab {
    flex: 1 1 auto;
    min-width: 88px;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
  }

  .sw-demo-pay-tab:hover,
  .sw-demo-pay-tab:focus {
    border-color: #f0a500;
    outline: none;
  }

  .sw-demo-pay-tab--active {
    border-color: #f0a500;
    background: rgba(240, 165, 0, 0.1);
    color: #b45309;
  }

  .sw-demo-pay-pane .checkout-pl-input {
    background: #fff !important;
    cursor: text;
  }

  .sw-demo-pay-badge {
    font-size: 12px;
    color: #64748b;
    margin: 12px 0 0;
    line-height: 1.45;
  }

  .sw-demo-pay-badge code {
    font-size: 11px;
    color: #475569;
  }

  .sw-payment-error {
    color: #dc2626;
    font-size: 14px;
    margin: 10px 0 0;
    line-height: 1.45;
  }

  .sw-checkout-unpayable {
    margin-bottom: 8px;
  }

  .sw-hosted-checkout-panel {
    margin-bottom: 8px;
  }

  .sw-hosted-checkout-lead {
    font-size: 14px;
    color: #475569;
    line-height: 1.55;
    margin: 0 0 14px;
  }

  .sw-pay-options-list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .sw-pay-options-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
  }

  .sw-pay-options-list .fa {
    color: #f0a500;
    width: 16px;
    text-align: center;
  }

  .sw-stripe-hosted-form {
    margin: 0;
  }

  .sw-stripe-hosted-form .checkout-pay-btn {
    margin-top: 4px;
  }

  .checkout-pay-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
  }

  }

  .sw-cart-empty {
    font-size: 16px;
    color: #575757;
    margin-bottom: 18px;
  }

  @media screen and (max-width: 767px) {
    .sw-nav-cta {
      width: 100%;
      margin-top: 8px;
      padding-top: 10px;
      border-top: 1px solid #f0f0f0;
    }

    .sw-nav-cta > li {
      float: none !important;
      width: 100%;
      text-align: center;
      margin: 6px 0;
    }

    .sw-nav-account,
    .sw-nav-cart {
      margin-left: auto !important;
      margin-right: auto !important;
    }
  }

  .sw-band {
    padding: 80px 0;
  }

  .sw-band--white {
    background: #ffffff;
  }

  .sw-band--muted {
    background: #f0f9ff;
  }

  .sw-band--testimonials {
    background: #0c4a6e;
    padding-bottom: 90px;
  }

  .sw-band--newsletter {
    background: linear-gradient(135deg, #075985 0%, #0ea5e9 100%);
    padding: 80px 0;
  }

  .sw-section-head {
    padding-bottom: 20px;
  }

  .sw-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0ea5e9;
    margin-bottom: 10px;
  }

  .sw-eyebrow--on-dark {
    color: #7dd3fc;
  }

  .sw-heading {
    color: #353535;
    font-size: 2em;
    font-weight: 400;
    margin: 0 0 15px;
  }

  .sw-heading--on-dark {
    color: #ffffff;
  }

  .sw-sub {
    font-size: 16px;
    color: #757575;
    margin-bottom: 25px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .sw-band--testimonials .sw-sub {
    color: rgba(255, 255, 255, 0.85);
  }

  .sw-course-row {
    margin-top: 20px;
  }

  .sw-course-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    height: calc(100% - 24px);
  }

  .sw-course-card h3 {
    font-size: 1.15em;
    margin-top: 12px;
    color: #353535;
  }

  .sw-course-progress {
    height: 6px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
  }

  .sw-course-progress span {
    display: block;
    height: 100%;
    background: #0ea5e9;
    border-radius: 999px;
  }

  .sw-course-tag {
    display: inline-block;
    margin-top: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #f97316;
  }

  .sw-stat-row .sw-stat h3 {
    font-size: 1.15em;
    color: #353535;
    margin-bottom: 8px;
  }

  .sw-feature-row {
    margin-top: 6px;
  }

  @media (min-width: 768px) {
    .sw-feature-row {
      display: flex;
      flex-wrap: wrap;
    }

    .sw-feature-row > [class*="col-"] {
      display: flex;
      margin-bottom: 12px;
    }

    .sw-feature-row > [class*="col-"] .sw-feature-card {
      margin-bottom: 0;
    }
  }

  .sw-feature-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 12px;
    min-height: 0;
    flex: 1 1 auto;
    width: 100%;
  }

  .sw-feature-card h3 {
    font-size: 1.05em;
    color: #252525;
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .sw-feature-card p {
    margin-bottom: 0;
  }

  .sw-feature-card h3 .fa {
    color: #0ea5e9;
    margin-right: 10px;
  }

  .sw-rating-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .sw-rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: #7dd3fc;
    line-height: 1;
  }

  .sw-rating-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin: 10px 0 6px;
    letter-spacing: 2px;
  }

  .sw-rating-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
  }

  .sw-testimonial-cards {
    margin-top: 10px;
  }

  .sw-quote-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 20px;
  }

  .sw-quote-stars {
    color: #fbbf24;
    margin: 0 0 12px;
    letter-spacing: 2px;
  }

  .sw-quote-card blockquote {
    border: 0;
    margin: 0 0 14px;
    padding: 0;
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
  }

  .sw-quote-card cite {
    font-style: normal;
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
  }

  .sw-newsletter-lead {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    margin-bottom: 24px;
  }

  .sw-newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    align-items: stretch;
  }

  .sw-newsletter-input {
    max-width: 320px;
    flex: 1 1 200px;
    height: 50px;
    border-radius: 50px !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    padding-left: 20px;
  }

  .sw-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }

  .sw-newsletter-btn {
    height: 50px;
    line-height: 1;
  }

  .sw-footer-home {
    text-align: left;
    padding: 60px 0 40px;
  }

  .sw-footer-home .sw-footer-tagline {
    color: #575757;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .sw-footer-heading {
    font-size: 1.25em;
    color: #353535;
    margin-top: 0;
    margin-bottom: 16px;
    font-weight: 600;
  }

  .sw-footer-contact {
    color: #575757;
    margin-bottom: 14px;
    line-height: 1.5;
  }

  .sw-footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
  }

  .sw-copyright,
  .sw-powered {
    color: #757575;
    font-size: 14px;
    margin: 6px 0;
  }

  .text-left-md {
    text-align: center;
  }

  @media (min-width: 992px) {
    .text-left-md {
      text-align: left;
    }
  }

  /* Chat widget */
  .chat-widget {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9998;
    width: min(360px, calc(100vw - 36px));
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .chat-panel {
    display: none;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    border: 1px solid #e2e8f0;
    overflow: hidden;
  }

  .chat-panel.is-open {
    display: block;
  }

  .chat-header {
    background: #0ea5e9;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .chat-header-role {
    font-size: 12px;
    opacity: 0.9;
  }

  .chat-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
  }

  .chat-body {
    padding: 16px;
    max-height: 380px;
    overflow-y: auto;
  }

  .chat-disclaimer {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.45;
  }

  .chat-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 14px;
  }

  .chat-form-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    color: #353535;
  }

  .chat-field {
    margin-bottom: 10px;
  }

  .chat-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #353535;
  }

  .chat-field .req {
    color: #f97316;
  }

  .chat-field input,
  .chat-field select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
  }

  .chat-form .company-field {
    display: none;
  }

  .chat-form.company .company-field {
    display: block;
  }

  .chat-submit {
    width: 100%;
    margin-top: 8px;
    border-radius: 50px;
  }

  .btn-chat-secondary {
    width: 100%;
    margin-top: 8px;
    padding: 10px;
    background: transparent;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    color: #64748b;
    cursor: pointer;
  }

  .fab {
    width: auto;
    min-width: 56px;
    height: 56px;
    padding: 0 16px;
    border-radius: 50px;
    background: #f97316;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
  }

  .fab:hover {
    background: #ea580c;
    color: #fff;
  }

  /*---------------------------------------
     SERVEWISE ANIMATIONS
  -----------------------------------------*/

  @keyframes swFadeUp {
    from {
      opacity: 0;
      transform: translateY(32px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes swFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes swFadeLeft {
    from {
      opacity: 0;
      transform: translateX(36px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes swFadeRight {
    from {
      opacity: 0;
      transform: translateX(-36px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes swScaleIn {
    from {
      opacity: 0;
      transform: scale(0.92);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes swNavDrop {
    from {
      opacity: 0;
      transform: translateY(-100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes swFabPulse {
    0%, 100% {
      box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
      transform: scale(1);
    }
    50% {
      box-shadow: 0 12px 32px rgba(249, 115, 22, 0.55);
      transform: scale(1.04);
    }
  }

  @keyframes swProgressGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }

  @keyframes swHeroGlow {
    0%, 100% { opacity: 0.92; }
    50% { opacity: 0.88; }
  }

  .sw-animate {
    opacity: 0;
    transform: translateY(32px);
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--sw-delay, 0ms);
    will-change: opacity, transform;
  }

  .sw-animate--fade {
    transform: none;
  }

  .sw-animate--left {
    transform: translateX(36px);
  }

  .sw-animate--right {
    transform: translateX(-36px);
  }

  .sw-animate--scale {
    transform: scale(0.92);
  }

  .sw-animate--visible {
    opacity: 1 !important;
    transform: none !important;
  }

  .sw-animate--visible .sw-course-progress span {
    animation: swProgressGrow 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform-origin: left center;
  }

  body.sw-motion-ready .custom-navbar {
    animation: swNavDrop 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.sw-motion-ready #home .overlay {
    animation: swHeroGlow 8s ease-in-out infinite;
  }

  body.sw-motion-ready .sw-hero-item {
    opacity: 0;
    animation: swFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--sw-hero-delay, 0ms);
  }

  body.sw-motion-ready .sw-page-hero-item {
    opacity: 0;
    animation: swFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--sw-hero-delay, 0ms);
  }

  .section-btn {
    transition:
      background 0.35s,
      color 0.35s,
      transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .section-btn:hover,
  .section-btn:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.35);
  }

  .sw-btn-outline:hover,
  .sw-btn-outline:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 255, 255, 0.2);
  }

  .sw-course-card,
  .sw-feature-card,
  .pricing-thumb,
  .sw-order-card {
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.35s;
  }

  .sw-course-card:hover,
  .sw-feature-card:hover,
  .pricing-thumb:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(14, 165, 233, 0.15);
  }

  .sw-stat {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .sw-stat:hover {
    transform: translateY(-4px) scale(1.02);
  }

  .fab {
    animation: swFabPulse 2.8s ease-in-out infinite;
    transition: transform 0.25s;
  }

  .fab:hover {
    animation: none;
    transform: scale(1.06);
  }

  .custom-navbar .nav > li > a {
    position: relative;
  }

  .custom-navbar .nav > li > a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    background: #0ea5e9;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .custom-navbar .nav > li > a:hover::after,
  .custom-navbar .nav > li.active > a::after {
    transform: scaleX(1);
  }

  .blog-post {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
  }

  .blog-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }

  @media (prefers-reduced-motion: reduce) {
    .sw-animate,
    .sw-hero-item,
    .sw-page-hero-item,
    .custom-navbar,
    #home .overlay,
    .fab,
    .sw-course-card,
    .sw-feature-card,
    .pricing-thumb,
    .sw-stat,
    .blog-post,
    .section-btn {
      animation: none !important;
      transition: none !important;
      opacity: 1 !important;
      transform: none !important;
    }

    .sw-animate--visible .sw-course-progress span {
      animation: none !important;
    }
  }

  /*---------------------------------------
     SERVEWISE GLASS THEME
  -----------------------------------------*/

  .sw-glass {
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.52);
    box-shadow:
      0 8px 32px rgba(14, 165, 233, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.65);
  }

  .sw-glass--dark {
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  }

  .preloader {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  @media (min-width: 768px) {
    .custom-navbar:not(.top-nav-collapse) {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(14px) saturate(160%);
      -webkit-backdrop-filter: blur(14px) saturate(160%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
  }

  @media (max-width: 767px) {
    .custom-navbar.top-nav-collapse .navbar-collapse,
    .custom-navbar .navbar-collapse.in,
    .custom-navbar .navbar-collapse.collapsing {
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.55);
      border-radius: 16px;
      margin-top: 10px;
      padding: 12px 8px;
      box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
    }
  }

  .sw-home #home .home-info {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 24px;
    padding: 2.25rem 1.75rem;
    box-shadow:
      0 16px 48px rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }

  .sw-page-hero .container > .row > [class*="col-"] {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }

  .sw-band--white,
  .sw-band--muted,
  #blog,
  #contact,
  .sw-auth-section {
    background: transparent !important;
  }

  .sw-band--muted {
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .sw-band--testimonials {
    background: rgba(12, 74, 110, 0.55) !important;
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .sw-band--newsletter {
    background: linear-gradient(
      135deg,
      rgba(7, 89, 133, 0.62) 0%,
      rgba(14, 165, 233, 0.48) 100%
    ) !important;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .sw-band--newsletter .sw-newsletter-form {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 6px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }

  .sw-course-card,
  .sw-feature-card,
  .pricing-thumb,
  .pricing-table-wrap,
  .blog-post,
  .sw-order-card,
  .sw-auth-panel {
    background: rgba(255, 255, 255, 0.58) !important;
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.52) !important;
    box-shadow:
      0 8px 32px rgba(14, 165, 233, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.65) !important;
  }

  .sw-feature-card {
    background: rgba(255, 255, 255, 0.48) !important;
  }

  .pricing-table thead th {
    background: rgba(248, 250, 252, 0.75) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .pricing-table thead th.pricing-corner {
    background: rgba(255, 255, 255, 0.65) !important;
  }

  .form-control,
  .online-form .form-control,
  .sw-newsletter-input,
  #contact-form .form-control,
  .contact-page-main #contact-form input.contact-field {
    background: rgba(255, 255, 255, 0.62) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
    box-shadow: inset 0 1px 2px rgba(14, 165, 233, 0.06);
  }

  .contact-page-main #contact-form .form-control,
  .contact-page-main #contact-form textarea.form-control {
    border: 1px solid rgba(14, 165, 233, 0.28) !important;
    border-radius: 8px;
  }

  .contact-page-main #contact-form textarea.form-control {
    min-height: 120px;
  }

  .contact-page-main #contact-form .contact-comment-field {
    min-height: 80px;
  }

  .form-control:focus,
  #contact-form .form-control:focus,
  .contact-page-main #contact-form .form-control:focus,
  .sw-admin-search:focus {
    background: rgba(255, 255, 255, 0.82) !important;
    border-color: rgba(14, 165, 233, 0.45) !important;
    box-shadow:
      0 0 0 3px rgba(14, 165, 233, 0.15),
      inset 0 1px 2px rgba(14, 165, 233, 0.06) !important;
  }

  .section-btn {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.92), rgba(234, 88, 12, 0.95));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
      0 8px 24px rgba(249, 115, 22, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }

  .section-btn:hover,
  .section-btn:focus {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.98), rgba(194, 65, 12, 0.98));
  }

  .sw-btn-outline {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.55) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .sw-btn-outline:hover,
  .sw-btn-outline:focus {
    background: rgba(255, 255, 255, 0.22) !important;
  }

  footer,
  .sw-footer-home,
  .sw-footer-page {
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 -8px 32px rgba(14, 165, 233, 0.08);
  }

  .chat-panel {
    background: rgba(255, 255, 255, 0.78) !important;
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
    box-shadow:
      0 16px 48px rgba(14, 165, 233, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  }

  .chat-header {
    background: linear-gradient(
      135deg,
      rgba(14, 165, 233, 0.88),
      rgba(2, 132, 199, 0.92)
    ) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .fab {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.95), rgba(234, 88, 12, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .sw-auth-error {
    background: rgba(254, 242, 242, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(254, 202, 202, 0.8);
  }

  .sw-auth-success {
    background: rgba(240, 253, 244, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(187, 247, 208, 0.8);
  }

  .sw-nav-account-dropdown .sw-nav-account-menu,
  .sw-checkout-auth-modal__dialog {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
    box-shadow: 0 16px 48px rgba(14, 165, 233, 0.15) !important;
  }

  .sw-checkout-auth-modal__backdrop {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .sw-section-head,
  .sw-band > .container > .row > [class*="col-"].text-center {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 8px 28px rgba(14, 165, 233, 0.08);
  }

  .sw-section-head {
    margin-bottom: 8px;
  }

  .sw-stat {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 20px 16px;
    box-shadow: 0 6px 24px rgba(14, 165, 233, 0.08);
  }

  @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .sw-glass,
    .sw-course-card,
    .sw-feature-card,
    .pricing-thumb,
    .blog-post,
    .sw-auth-panel,
    .custom-navbar.top-nav-collapse,
    footer {
      background: rgba(255, 255, 255, 0.94) !important;
    }

    .sw-home #home .home-info,
    .sw-page-hero .container > .row > [class*="col-"] {
      background: rgba(255, 255, 255, 0.25);
    }
  }
