@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-teal: #00A693;
    --primary-text: #1C2329;
    --text-muted: #535C65;
    --accent-yellow: #FFD25F;
    --link-color: #01695F;
    --highlight-pink: #F8498F;
    --highlight-yellow: #FFEBCC;
    --bg-mint: #eef9f8;
    --primary-yellow: #fdb913;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --teal-main: #00a99d;
    --quote-bg: #eaf7f6;

    --font-family: "Roboto", sans-serif;
    --font-size-14: 14px;
    --font-size-16: 16px;
    --font-size-18: 18px;
    --font-size-20: 20px;
    --font-size-22: 22px;
    --font-size-24: 24px;
    --font-size-26: 26px;
    --font-size-28: 28px;
    --font-size-30: 30px;
    --font-size-32: 32px;
    --font-size-38: 38px;
    --font-size-50: 50px;
}

body {
    font-family: var(--font-family);
    color: var(--primary-text);
    background-color: #FFFFFF;
}

.section-padding {
    padding: 4rem 0;
}

a {
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--link-color);
}

.quote-bg {
    background-color: var(--quote-bg);
}

/* 1. Header */
/* HEADER */
.header-section {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.header-section.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* LOGO */
.navbar-brand img {
    height: 36px;
}

/* NAV LINKS */
.navbar-nav {
    gap: 30px;
}

.nav-link {
    position: relative;
    color: var(--primary-text);
    font-weight: 500;
}

/* underline animation */
.nav-link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-teal);
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-teal);
}

/* LOGIN */
.login-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.login-link i {
    transition: 0.3s;
}

.login-link:hover i {
    transform: rotate(-10deg) scale(1.1);
}

/* BUTTON */
.btn-header {
    background: linear-gradient(135deg, #FFD54F, #FFC107);
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

/* DROPDOWN */
.nav-item.dropdown {
    position: relative;
}

/* invisible bridge fix */
.nav-item.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    height: 20px;
    width: 100%;
}

/* DROPDOWN CONTAINER */
.custom-dropdown {
    min-width: 320px;
    background: #F7F9FA;
    border-radius: 8px;
    padding: 18px 0;
    border: none;
    box-shadow: 0px 1px 20px 7px rgb(0 166 147 / 29%) !important;
    position: absolute;
}

/* TOP ARROW (triangle) */
.custom-dropdown::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #F7F9FA;
    rotate: 45deg;
    border-radius: 2px;
}

/* DROPDOWN ITEMS */
.custom-dropdown .dropdown-item {
    padding: 16px 24px;
    font-size: 17px;
    font-weight: 500;
    color: #5A5F63;
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
}

/* ICON STYLE */
.icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* ICON COLORS (exact UI feel) */
.icon-box i {
    color: #00A99D;
}

/* SECOND ICON (orange accent like image) */
.dropdown-item:nth-child(2) .icon-box i {
    color: #F5A623;
}

/* FOURTH ICON dual color feel */
.dropdown-item:nth-child(4) .icon-box i {
    color: #F5A623;
}

/* HOVER STATE */
.custom-dropdown .dropdown-item:hover {
    background: #EAF7F6;
    border-radius: 10px;
    color: #222;
}

/* ACTIVE ITEM (optional highlight like UI) */
.custom-dropdown .dropdown-item.active {
    background: #EAF7F6;
}

/* REMOVE DEFAULT BOOTSTRAP ARROW */
.dropdown-toggle::after {
    margin-left: 6px;
}

/* SMOOTH ENTRY */
.custom-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 15px);
    transition: all 0.25s ease;
}

/* SHOW */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .custom-dropdown {
        opacity: 1;
        visibility: visible;
        /* transform: translate(-50%, 0); */
        display: block;
        left: 50%;
        top: 100%;
    }
}

/* --- 2. Hero Title & Yellow Underline Fix --- */
.hero-title {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.border-img-1 {
    max-width: 320px;
    /* Image size as per design */
}

/* --- 3. Hero Right Image Positioning --- */
.hero-img-right {
    max-width: 55%;
    z-index: 1;
    /* Image ko vertical center aur right align karne ke liye */
}

/* Mobile par image ko text ke niche lane ke liye */
@media (max-width: 991px) {
    .hero-img-right {
        position: relative !important;
        max-width: 100%;
        margin-top: 50px;
        top: 0 !important;
        transform: none !important;
    }

    .border-img-1 {
        max-width: 200px;
    }
}

/* --- 4. Button & Icon Animations --- */
.btn-cta {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 166, 147, 0.2);
}

.btn-cta:hover {
    background-color: #008f81;
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 166, 147, 0.3);
}

.watch-demo {
    transition: 0.3s ease;
}

.watch-demo:hover {
    color: var(--link-color) !important;
    transform: translateX(5px);
}

.btn-header:hover {
    background-color: #f5c442;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 210, 95, 0.4);
}

/* --- 5. Logo Bar Grayscale Effect --- */
.logo-bar img {
    filter: grayscale(100%);
    opacity: 0.5;
    transition: 0.4s ease;
}

.logo-bar img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* 2. Hero Section */
.hero-title {
    font-size: var(--font-size-50);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-teal);
}

.hero-title .text-black {
    color: var(--primary-text);
}

.text-lead {
    font-size: var(--font-size-20);
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.8;
}

.btn-cta {
    background-color: var(--primary-teal);
    color: white;
    border: none;
    font-weight: 600;
    padding: 14px 40px;
    font-size: var(--font-size-16);
    border-radius: 5px;
}

.btn-cta:hover {
    background-color: #008f81;
    color: #fff;
}

.watch-demo {
    color: var(--primary-teal);
    font-size: var(--font-size-16);
}

.watch-demo img {
    width: 30px;
    height: 30px;
}

.watch-demo:hover {
    color: #008f81;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: var(--font-size-38);
    }
}

.logo-bar img {
    height: 40px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
}

.logo-bar img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.border-img-1 {
    max-width: 46%;
}

.clients-section {
    margin-top: 10rem;
}

.client-stats {
    font-size: var(--font-size-24);
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 2rem;
}

.client-stats span.teal-text {
    color: var(--primary-teal);
    font-size: var(--font-size-28);
    font-weight: 700;
    text-decoration: underline;
}



/* Header Underline Style */
.features-section {
    background-color: #EAF7F6;
}

/* Feature Card Styling */
.feature-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 50px 25px;
    height: 100%;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 60px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.icon-box img {
    width: 50px;
    height: auto;
}

/* Background Patterns */
.dot-pattern {
    position: absolute;
    top: 10rem;
    left: 2rem;
    width: 200px;
    height: 200px;
    opacity: 0.1;
    background-image: radial-gradient(#000 1px, transparent 2px);
    background-size: 10px 10px;
    z-index: 0;
}

.leaf-pattern {
    position: absolute;
    bottom: 1rem;
    right: 3rem;
    width: 150px;
    height: 150px;
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .text-lg-end {
        text-align: left !important;
    }
}



.text-teal {
    color: var(--teal-main);
}

.main-title {
    line-height: 1.2;
}

/* Hand-drawn Underline Effect */
.custom-underline-yellow {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80%;
    /* Adjust width to match image */
    height: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 10" xmlns="http://www.w3.org/2000/svg"><path d="M2 5 Q 50 1 98 7" stroke="%23fdb913" stroke-width="4" fill="transparent" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
}

/* Testimonial Quote Box */
.testimonial-box {
    background-color: var(--quote-bg);
    border-radius: 12px;
    width: 65%;
}

.quote-icon-wrapper {
    position: absolute;
    top: -25px;
    left: 25px;
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .main-title {
        font-size: 2rem;
    }

    .custom-underline-yellow {
        width: 100%;
    }

    .testimonial-box {
        margin-top: 40px;
    }
}


/* Header Background Style */
.segments-header-bg {
    background-image: url(../images/video-bg-1.png);
    background-size: cover;
    background-position: center;
    height: 400px;
}

.official-header-bg {
    background-image: url(../images/video-bg-1.png);
    background-size: cover;
    background-position: center;
    height: 500px;
}

.wavy-line.top-left {
    top: 30px;
    left: 10px;
}

.wavy-line.top-right {
    top: 0;
    right: 20px;
    transform: scaleY(-1) scaleX(-1);
}

/* Custom Carousel Controls */
.carousel-controls-custom .control-btn {
    background-color: #f5f5f5;
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.carousel-controls-custom .control-btn:hover {
    background-color: #e2e2e2;
}

.carousel-controls-custom .next-btn {
    background-color: #fff;
    color: var(--primary-teal);
}

.carousel-controls-custom .next-btn:hover {
    background-color: #f1f1f1;
}

/* Swap Icon Colors for visual match */
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2316a78d'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2316a78d'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Segment Card Styling */
.segment-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card-icon {
    line-height: 1;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Corner Dots Design */
.corner-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.corner-dots.top-right.teal-dots {
    background-image: url(../images/shape-2.png);
    /* background-size: 10px 10px; */
}

.corner-dots.top-right.yellow-dots {
    background-image: url(../images/shape-1.png);
    /* background-size: 10px 10px; */
}

/* Fix z-index for content over dots */
.card-icon,
.segment-card h3,
.segment-card p {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .segments-header-bg {
        height: 35%;
    }
}

@media (max-width: 767.98px) {
    .segments-header-bg {
        height: 25%;
    }
}

@media (max-width: 575.98px) {
    .segments-header-bg {
        height: 18%;
    }

    .segments-section.pb-5 {
        padding-bottom: 2rem !important;
    }

    .row.align-items-center.text-md-start {
        text-align: center !important;
    }
}



.hero-section {
    padding: 80px 0;
}

/* LEFT CONTENT */
.left-content {
    max-width: 520px;
}

/* ICON */
.icon img {
    display: block;
}

/* TITLE */
.title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: #111;
    margin-bottom: 10px;
}

.highlight {
    color: #0aa89e;
}

/* BORDER IMAGE (underline stroke) */
.left-content img {
    margin: 10px 0 20px;
}

/* DESCRIPTION */
.description {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* FEATURE POINT */
.feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.feature i {
    color: #0aa89e;
    font-size: 18px;
    margin-top: 2px;
}

/* RIGHT SIDE IMAGE */
.right-ui {
    text-align: right;
}

.right-ui img {
    max-width: 100%;
    height: auto;
}

/* =========================
   RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0;
    }

    .title {
        font-size: 34px;
    }

    .right-ui {
        text-align: center;
        margin-top: 40px;
    }

    .left-content {
        margin: 0 auto;
        text-align: center;
    }

    .feature {
        justify-content: center;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .hero-section {
        padding: 50px 15px;
    }

    .title {
        font-size: 28px;
    }

    .description {
        font-size: 14px;
    }

    .feature {
        font-size: 13px;
    }

    .icon img {
        width: 60px !important;
        height: 60px !important;
    }
}

.customizable-btn {
    background-color: #FFF7D9;
    color: #008f81;
    border: none;
    padding: 15px 25px;
    width: 170px;
    font-size: var(--font-size-18);
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.customizable-btn:hover {
    background-color: #f5e0b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 177, 19, 0.4);
}

.custom-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #ddd;
}

.custom-accordion .accordion-button {
    font-weight: 600;
    font-size: 18px;
    color: #222;
    background: transparent;
    box-shadow: none;
    padding: 18px 0;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #000;
    background: transparent;
    box-shadow: none;
}

.custom-accordion .accordion-body {
    color: #666;
    font-size: 15px;
    padding: 10px 0 20px;
}

.custom-accordion .accordion-button::after {
    transform: rotate(0deg);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.cta-section {
    overflow: hidden;
    background-image: url(../images/video-bg.png);
    background-size: cover;
    background-position: center;
    position: relative;

}

/* TEXT */
.tagline {
    color: #ffd54f;
    font-weight: 500;
    margin-bottom: 10px;
}

.title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

.desc {
    font-size: 15px;
    margin-top: 15px;
    max-width: 450px;
}

/* RIGHT IMAGE */
.cta-right {
    min-height: 400px;
}

.cta-right img {
    height: 100%;
    object-fit: cover;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 70px;
    height: 70px;
    background: #fff;
    color: #0fa39a;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .cta-left,
    .cta-right {
        min-height: auto;
    }

    .title {
        font-size: 28px;
    }

    .cta-left {
        text-align: center;
        padding: 50px 20px;
    }

    .desc {
        margin: 0 auto;
    }
}

/* Section */
.testimonial-section {
    padding: 80px 0;
    background: #ffffff;
}

.underline {
    width: 120px;
    height: 4px;
    background: #f59e0b;
    margin: 10px 0;
    border-radius: 10px;
}

.subtitle {
    color: #777;
    font-size: 14px;
}

/* Nav Buttons */
.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #0ea5a4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Swiper Fix */
.swiper {
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

/* Card */
.testimonial-card {
    /* width: 100%; */
    width: 500px;
    border-radius: 10px;
    background: #f6e7b0;
    transition: all 0.4s ease;
    opacity: 0.5;
}

/* Active Center Card */
.swiper-slide-active .testimonial-card {
    background: #f4c430;
    transform: scale(1);
    opacity: 1;
}

/* Text */
.testimonial-card h6 {
    font-weight: 600;
}

.testimonial-card p {
    font-size: 13px;
}

/* User */
.user {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.user h5 {
    font-size: 14px;
    margin: 0;
}

.user span {
    font-size: 12px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 26px;
    }
}

/* CTA */
.enough-cta-section {
    background-color: #EAF7F6;
    padding: 80px 0 60px;
}

.enough-cta-title {
    color: #1aa39a;
    font-weight: 600;
    font-size: 28px;
}

.enough-cta-heading {
    font-size: 40px;
    font-weight: 700;
    margin-top: 5px;
}

.enough-cta-subtext {
    color: #6c757d;
    margin-top: 15px;
    font-size: 14px;
}

/* FORM */
.enough-cta-form {
    margin-top: 25px;
}

.enough-email-input {
    max-width: 350px;
    border-radius: 6px 0 0 6px;
    border: 1px solid #ccc;
    padding: 12px;
}

.enough-get-started-btn {
    background-color: #ff4f81;
    color: #fff;
    padding: 12px 25px;
    border-radius: 0 6px 6px 0;
    font-weight: 500;
}

.enough-get-started-btn:hover {
    background-color: #e84370;
}

/* CONTACT */
.enough-contact-info {
    margin-top: 50px;
}

.enough-contact-info h6 {
    font-weight: 600;
}

.enough-contact-info p {
    color: #6c757d;
    margin-top: 5px;
}

/* SCROLL BUTTON */
.enough-scroll-top {
    position: relative;
    margin: -25px auto;
    width: 55px;
    height: 55px;
    background-color: #FFD74B;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    border: solid 3px #fff;
}

/* FOOTER */
.enough-footer-section {
    background-color: #037B73;
    color: #fff;
    padding-top: 60px;
}

.enough-footer-logo {
    width: 120px;
}

.enough-footer-section h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.enough-footer-list {
    list-style: none;
    padding: 0;
}

.enough-footer-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #d1f0ec;
}

.enough-footer-left p {
    font-size: 14px;
    color: #d1f0ec;
}

/* SOCIAL */
.enough-social-icons i {
    width: 35px;
    height: 35px;
    background: #fff;
    color: #0f766e;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    cursor: pointer;
}

/* BOTTOM */
.enough-footer-bottom {
    background-color: #03534D;
    padding: 15px;
    margin-top: 40px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .enough-cta-heading {
        font-size: 28px;
    }

    .enough-cta-form {
        flex-direction: column;
        align-items: center;
    }

    .enough-email-input {
        border-radius: 6px;
        margin-bottom: 10px;
    }

    .enough-get-started-btn {
        border-radius: 6px;
        width: 100%;
        max-width: 350px;
    }

    .enough-contact-info {
        text-align: center;
    }
}

.trusted-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    width: 180px;
}

.be-where-section {
    background-image: url(../images/video-bg-1.png);
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
}

/* Toggle EXACT STYLE */
.billing-toggle {
    display: inline-flex;
    background: #e8f5f3;
    border-radius: 50px;
    padding: 4px;
}

.toggle-btn {
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    background: transparent;
    font-weight: 500;
    color: #6c757d;
    transition: 0.3s;
}

.toggle-btn.active {
    background: #159a8c;
    color: #fff;
}

/* Cards */
.pricing-card {
    background: #fff;
    border: 1px solid #00A89C80;
    border-radius: 10px;
    height: 100%;
}

.pricing-card h6 {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-card h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 15px 0 20px;
}

.pricing-card small {
    font-size: 14px;
    color: #777;
}

/* List */
.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.pricing-card ul li i {
    color: #159a8c;
    margin-right: 8px;
}

/* Highlight */
.highlight-box {
    background: #159a8c;
    color: white;
    transform: scale(1.07);
}

.highlight-box small {
    color: #cdeeed;
}

.highlight-box ul li i {
    color: white;
}

/* Buttons */
.btn-main {
    background: #159a8c;
    color: #fff;
    border-radius: 6px;
}

.btn-highlight {
    background: #f4c542;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card {
        text-align: center;
    }
}

.submit-message-btn {
    background-color: #00A89C;
    color: #fff;
    border: none;
    font-weight: 500;
}

.submit-message-btn:hover {
    background-color: #0a5e5a;
    color: #fff;
}

.official-features-section {
    background: linear-gradient(180deg, #fff 20%, #00a89c8a 100%);
}