
      :root {
        --primary-color: #06aeef;
        --secondary-color: #f9efca;
        --accent-color: #fede42;
        --black-color: #000;
        --white-color: #fff;
        --text-color: #8f8f8f;
        --divider-color: #dfe1de;
        --error-color: rgb(230, 87, 87);
        --default-font: "Rubik", sans-serif;
        --body-font: "Inter", sans-serif;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: var(--body-font);
        color: var(--black-color);
        line-height: 1.6;
        background-color: var(--white-color);
      }

      h1,
      h2,
      h3,
      h4 {
        font-family: var(--default-font);
        font-weight: 700;
      }

      a {
        text-decoration: none;
        transition: 0.3s;
      }
      ul {
        list-style: none;
      }

     /* --- Navigation Core Styling --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    transition: transform 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    margin-bottom: 0;
}

.nav-links li {
    padding: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #2a2a2a;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #06aeef; /* Primary Blue */
}

/* --- Navigation CTA Button --- */
.btn-cta {
    background: #06aeef;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px !important;
    box-shadow: 0 4px 12px rgba(6, 174, 239, 0.2);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* --- Mobile Menu Toggle (Hamburger) --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #06aeef;
    margin: 2px 0;
    transition: 0.4s;
}

/* --- Responsive Media Queries --- */
@media screen and (max-width: 991px) {
    .menu-toggle {
        display: flex;
        order: 2;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background: #fff;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        display: none; /* Controlled by JS class 'active' */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 15px 0;
    }
}

/* --- Modal/Popup Styling --- */
.popupContainer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 90%;
    max-width: 450px;
    z-index: 9999;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    padding: 30px;
}

.popupHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.header_title {
    font-weight: 700;
    color: #06aeef;
    font-size: 18px;
}

.modal_close {
    cursor: pointer;
    font-size: 20px;
    color: #999;
}

/* --- Overlay Background for Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9998;
    display: none;
}

      /* Hero Section */
      .hero {
        background: var(--primary-color);
        color: var(--white-color);
        padding: 100px 10%;
        display: flex;
        align-items: center;
        gap: 50px;
      }

      .hero-text {
        flex: 1;
      }
      .hero-text h1 {
        font-size: 48px;
        line-height: 1.1;
        margin-bottom: 20px;
      }
      .hero-text p {
        font-size: 18px;
        color: var(--secondary-color);
        margin-bottom: 30px;
      }

      .hero-btns {
        display: flex;
        gap: 15px;
      }
      .btn-hero-primary {
        background: var(--accent-color);
        color: var(--black-color);
        padding: 15px 30px;
        border-radius: 5px;
        font-weight: bold;
      }
      .btn-hero-secondary {
        border: 2px solid var(--white-color);
        color: var(--white-color);
        padding: 15px 30px;
        border-radius: 5px;
      }

      .hero-image {
        flex: 1;
        text-align: center;
      }
      .hero-image img {
        width: 100%;
        max-width: 500px;
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
      }

      /* Features */
      .section {
        padding: 80px 10%;
        text-align: center;
      }
      .section-tag {
        color: var(--primary-color);
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 13px;
      }
      .section h2 {
        font-size: 32px;
        margin: 10px 0 40px;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
      }

      .feature-card {
        padding: 40px;
        background: var(--white-color);
        border: 1px solid var(--divider-color);
        border-radius: 15px;
        transition: 0.3s;
      }

      .feature-card:hover {
        border-color: var(--primary-color);
        transform: translateY(-10px);
      }
      .feature-card i {
        font-size: 40px;
        color: var(--primary-color);
        
      }
      .feature-card h3 {
        margin-bottom: 15px;
      }
      .feature-card p {
        color: var(--text-color);
        font-size: 14px;
      }

      /* Technical Details Section */
      .tech-section {
        background: var(--secondary-color);
        display: flex;
        align-items: center;
        gap: 50px;
        text-align: left;
      }
      .tech-content {
        flex: 1;
      }
      .tech-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 30px;
      }
      .tech-item h4 {
        color: var(--primary-color);
        margin-bottom: 5px;
      }
      .tech-item p {
        font-size: 13px;
        color: var(--text-color);
      }
      /* Add padding to items so they don't touch when 2 are shown */
.testimonial-item {
    margin: 10px 15px; 
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f1f1;
}

/* Customizing the Dots */
.slick-dots li button:before {
    color: #06aeef; /* Your Corporate Blue */
    font-size: 12px;
}
.slick-dots li.slick-active button:before {
    color: #06aeef;
}

/* Hide arrows on mobile for a cleaner look */
@media (max-width: 768px) {
    .slick-prev, .slick-next {
        display: none !important;
    }
}

      /* LOGO CAROUSEL */
      .logo-strip {
        padding: 50px 10%;
        background: var(--white-color);
        overflow: hidden;
        white-space: nowrap;
        border-bottom: 1px solid var(--divider-color);
      }
      .logo-track {
        display: flex;
        align-items: center;
        gap: 80px;
        animation: scroll 30s linear infinite;
      }
      .logo-track img {
        height: 100%;
        filter: grayscale(100%);
        opacity: 0.6;
        transition: 0.3s;
      }
      .logo-track img:hover {
        filter: grayscale(0%);
        opacity: 1;
      }
      /* Animation */
      @keyframes scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-100%);
        }
      }
      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      /* Form Section */
      .contact-container {
        background: var(--white-color);
        display: flex;
        box-shadow: 0 50px 100px rgba(0, 0, 0, 0.05);
        border-radius: 20px;
        overflow: hidden;
        max-width: 1000px;
        margin: 0px auto 80px;
        border: 1px solid var(--divider-color);
      }

      .contact-info {
        background: var(--secondary-color);
        color: var(--black-color);
        padding: 50px;
        flex: 1;
      }
      .contact-form {
        padding: 50px;
        flex: 2;
        text-align: center;
      }

      .form-group {
        margin-bottom: 20px;
      }
      .form-group input {
        width: 100%;
        padding: 15px;
        border: 1px solid var(--divider-color);
        border-radius: 8px;
        font-family: var(--body-font);
      }

      .submit-btn {
        background: var(--primary-color);
        color: white;
        border: none;
        padding: 15px 40px;
        border-radius: 8px;
        cursor: pointer;
        font-family: var(--default-font);
        font-weight: bold;
        width: 100%;
      }

/* --- New Footer Styling --- */
.main-footer {
    background-color: #06aeef; /* Your primary blue */
    padding: 70px 0 30px 0;
    color: #ffffff;
    font-family: sans-serif;
}

.footer-flex-container {
    display: flex;
    flex-wrap: wrap; /* This is the secret to responsiveness */
    justify-content: space-between;
}

.footer-item {
    flex: 1; /* All columns equal width on desktop */
    min-width: 200px; /* Prevents columns from getting too thin */
    margin-bottom: 30px;
    padding: 0 15px;
}

.about-col {
    flex: 2; /* Give the about section a bit more space on desktop */
}
.header-logo {
    height: 70px;
    filter: brightness(0) invert(1);
   
}

.footer-logo {
    height: 70px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}
.social-links a {
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
    color: #007bff; /* Or your brand's primary color */
}
.footer-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-item ul li {
    margin-bottom: 12px;
}

.footer-item ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-item ul li a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-item p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

/* --- Responsive Adjustments --- */

/* For Tablets */
@media (max-width: 991px) {
    .footer-item {
        flex: 0 0 50%; /* 2 columns per row */
    }
    .about-col {
        flex: 0 0 100%; /* About section takes full width on tablet */
    }
}

/* For Phones */
@media (max-width: 575px) {
    .footer-item {
        flex: 0 0 100%; /* 1 column per row */
        text-align: center;
    }
    
    .footer-item h4::after {
        display: none;
    }
}

      @media (max-width: 768px) {
        .hero,
        .tech-section {
          flex-direction: column;
          padding: 60px 5%;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
        .contact-container {
          flex-direction: column;
          margin: 20px;
        }
        .nav-links {
          display: none;
        }
      }
    /* ---------------------------------------------
Services Section - New Modern Design
--------------------------------------------- */

.services {
  padding: 100px 0;
  background-color: #f8fbff; /* Very light blue tint for contrast */
}

.services .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.services .section-heading h4 em {
  font-style: normal;
  color: #06aeef; /* Primary Brand Blue */
}

.service-item {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 30px; /* Matching the Corporate Clients container */
  border: 1px solid #dfe1de;
  margin-bottom: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}

.service-item .icon {
  width: 80px;
  height: 80px;
  background-color: #f9efca; /* Secondary Brand Color */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s;
}

.service-item .icon img {
  width: 45px;
}

.service-item h4 {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.service-item p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #8f8f8f;
  line-height: 24px;
  margin-bottom: 25px;
}

.service-item .text-button a {
  font-weight: 500;
  color: #06aeef;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Hover Effects */
.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(6, 174, 239, 0.1);
  border-color: #06aeef;
}

.service-item:hover .icon {
  background-color: #06aeef; /* Flip to primary on hover */
  transform: rotate(10deg);
}

.service-item:hover .icon img {
  filter: brightness(0) invert(1); /* Turns icon white */
}

.service-item:hover .text-button a {
  color: #fede42; /* Highlight link with Accent Yellow */
}
/* ---------------------------------------------
Message Features Styles
--------------------------------------------- */

.features {
    padding: 100px 0;
    background: #fff;
}

.section-tag {
    color: #06aeef;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

/* Feature Cards */
.feature-card {
    padding: 40px 30px;
    border-radius: 25px;
    background: #fff;
    border: 1px solid #dfe1de;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    border-color: #06aeef;
    box-shadow: 0 15px 35px rgba(6, 174, 239, 0.08);
    transform: translateY(-5px);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: #f9efca; /* Cream */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon-box i {
    font-size: 24px;
    color: #06aeef; /* Blue */
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.feature-card p {
    font-size: 14px;
    color: #8f8f8f;
    line-height: 1.6;
}

/* Highlights Section */
.highlight-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
}

.highlight-item:hover {
    background: #f8fbff;
}

.highlight-icon {
    min-width: 50px;
    height: 50px;
    background: #06aeef;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: left;
}

.highlight-text p {
    font-size: 14px;
    color: #8f8f8f;
    margin-bottom: 0;
    text-align: left;
}

/* CTA Box */
.feature-cta-box {
    background: #f9efca;
    padding: 60px;
    border-radius: 40px;
    text-align: center;
}

.feature-cta-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-cta-main {
    display: inline-block;
    background: #06aeef;
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-cta-main:hover {
    background: #000;
    transform: scale(1.05);
}

.btn-cta-main i {
    margin-left: 10px;
    font-size: 14px;
}

/* Promotional SMS Custom Styling */
.info-box-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.info-box-item:hover {
    border-color: #06aeef;
    transform: translateX(10px);
}

.info-box-item .icon-sm {
    min-width: 50px;
    height: 50px;
    background: #f9efca;
    color: #06aeef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.info-box-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
    text-align: left;
}

.info-box-item p {
    font-size: 14px;
    margin-bottom: 0;
     text-align: left;
}

.feature-sidebar-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid #dfe1de;
    text-align: left;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: #06aeef;
}

.trai-compliance-box {
    background: #f8fbff;
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #06aeef;
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.c-item {
    font-size: 13px;
    font-weight: 500;
    color: #555;
}

.c-item i {
    color: #06aeef;
    margin-right: 5px;
}

.notice-bar {
    background: #f9efca;
    padding: 20px 40px;
    border-radius: 50px;
}

.notice-bar p {
    margin: 0;
    font-size: 14px;
}

.btn-primary-custom {
    display: inline-block;
    padding: 12px 30px;
    background: #06aeef;
    color: #fff !important;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background: #000;
    transform: translateY(-3px);
}

/* Industry Section Styles */
.industry-usage-container {
    background: #f8fbff;
    padding: 60px 40px;
    border-radius: 40px;
}

.industry-card {
    text-align: center;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.industry-card:hover {
    transform: translateY(-10px);
    border-color: #06aeef;
}

.ind-icon {
    font-size: 30px;
    color: #06aeef;
    margin-bottom: 10px;
}

.industry-card p {
    font-weight: 700;
    margin-bottom: 0;
    color: #2a2a2a;
}

/* CTA Banner Styles */
.cta-banner-blue {
    background: #06aeef;
    padding: 50px;
    border-radius: 40px;
    color: #fff;
}

.cta-banner-blue h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-banner-blue p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

.btn-yellow-cta {
    background: #fede42;
    color: #000 !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
        text-align: center;
}

.btn-yellow-cta:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Workflow Styles */
.workflow-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 40px;
    border: 1px dashed #06aeef;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    position: relative;
    background: #fff;
    transition: 0.3s;
}

.step-card.active {
    background: #f9efca;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step-num {
    width: 60px;
    height: 60px;
    background: #06aeef;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin: 0 auto 20px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(6, 174, 239, 0.3);
}

.step-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Contact Form Card Styling --- */
.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f1f1;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h4 {
    color: #06aeef; /* Primary Blue */
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 14px;
    color: #666;
}

/* --- Custom Input Styles --- */
.form-label-custom {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 8px;
    margin-left: 5px;
}

.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form textarea,
.form-select-custom {
    width: 100%;
    background-color: #f9fbfd;
    border: 1px solid #e1e8ee;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 14px;
    color: #444;
    transition: all 0.3s ease;
    outline: none;
}

.custom-form input:focus,
.custom-form textarea:focus,
.form-select-custom:focus {
    background-color: #fff;
    border-color: #06aeef;
    box-shadow: 0 0 0 4px rgba(6, 174, 239, 0.1);
}

.form-select-custom {
    height: 50px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.custom-form textarea {
    resize: none;
}

/* --- Form Button --- */
.btn-primary-custom {
    background: #06aeef; /* Primary Blue */
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(6, 174, 239, 0.2);
}

.btn-primary-custom:hover {
    background: #0593ca;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(6, 174, 239, 0.3);
    color: #fff;
}

/* --- Alert Styling --- */
.alert {
    border-radius: 10px;
    padding: 15px;
    font-size: 14px;
    margin-bottom: 25px;
    border: none;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
}

.alert-danger {
    background-color: #f8d7da;
    color: #842029;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .contact-form-card {
        margin-top: 50px;
        padding: 25px;
    }
}

.pricing-item-regular, .pricing-item-pro {
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-item-pro {
    background: #06aeef;
    color: #fff;
}

.plan-title {
    font-size: 18px;
    font-weight: 700;
    color: #06aeef;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.plan-title.white { color: #fff; }

.price-box .price {
    font-size: 32px;
    font-weight: 800;
    display: block;
}

.price-box .period {
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
}

.pricing-item-pro .period { color: #eee; }

.plan-features {
    margin: 20px 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.plan-features li {
    font-size: 14px;
    margin-bottom: 10px;
}

.badge-popular {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #f9efca;
    color: #2a2a2a;
    padding: 5px 35px;
    font-size: 10px;
    font-weight: 700;
    transform: rotate(45deg);
}

.high-volume {
    text-align: left;
    display: flex;
    justify-content: center;
}

.high-volume h3 {
    font-size: 28px;
    margin-top: 5px;
}

.high-volume h3 small { font-size: 14px; }