* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}
html{
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: #0a0a0a
}

::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 3px
}
body{
  font-family: "Verdana", Sans-serif;
}


/* CLIENT LOGO MARQUE  START*/
 @keyframes marquee {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .animate-marquee {
        display: flex;
        width: max-content;
        animation: marquee 40s linear infinite;
    }

    .animate-marquee:hover {
        animation-play-state: paused;
    }



/* CKEDITOR DESIGN SYSTEM — Clean & Readable Content */


.ckeditordesign {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
    letter-spacing: -0.01em;
}

/* ── HEADINGS ── */
.ckeditordesign h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
    scroll-margin-top: 100px;
}

.ckeditordesign h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f3f4f6;
    scroll-margin-top: 100px;
}

.ckeditordesign h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 0.875rem;
    line-height: 1.3;
    scroll-margin-top: 100px;
}

.ckeditordesign h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.ckeditordesign h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.ckeditordesign h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* First heading should not have top margin */
.ckeditordesign>h1:first-child,
.ckeditordesign>h2:first-child,
.ckeditordesign>h3:first-child {
    margin-top: 0;
}

/* ── PARAGRAPHS ── */
.ckeditordesign p {
    margin-bottom: 1.25rem;
}

/* ── LINKS ── */
.ckeditordesign a {
    color: #FF6B2B;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: all 0.2s ease;
}

.ckeditordesign a:hover {
    color: #E63946;
    text-decoration-thickness: 2px;
}

/* ── LISTS ── */
.ckeditordesign ul {
    list-style: none;
    margin-bottom: 1.25rem;
    padding-left: 0;
}

.ckeditordesign ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.625rem;
}

.ckeditordesign ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B2B, #E63946);
}

.ckeditordesign ol {
    list-style: none;
    counter-reset: ck-counter;
    margin-bottom: 1.25rem;
    padding-left: 0;
}

.ckeditordesign ol li {
    position: relative;
    padding-left: 2.25rem;
    margin-bottom: 0.625rem;
    counter-increment: ck-counter;
}

.ckeditordesign ol li::before {
    content: counter(ck-counter);
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #FF6B2B, #E63946);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.ckeditordesign li>ul,
.ckeditordesign li>ol {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* ── BLOCKQUOTE ── */
.ckeditordesign blockquote {
    position: relative;
    margin: 2rem 0;
    padding: 1.5rem 1.75rem 1.5rem 2rem;
    background: linear-gradient(135deg, #fff7ed, #fff1f2);
    border-radius: 16px;
    border-left: 4px solid #FF6B2B;
    font-style: italic;
    color: #374151;
}

.ckeditordesign blockquote p {
    margin-bottom: 0.5rem;
}

.ckeditordesign blockquote p:last-child {
    margin-bottom: 0;
}

/* ── IMAGES ── */
/* .ckeditordesign img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
} */

/* Normal images */
.ckeditordesign > img,
.ckeditordesign figure img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

/* Images inside tables */
.ckeditordesign table img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    border-radius: 8px;
    box-shadow: none;
}

.ckeditordesign figure {
    margin: 2rem 0;
}

.ckeditordesign figure img {
    margin: 0;
}

.ckeditordesign figcaption {
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.75rem;
    font-style: italic;
}

/* ── TABLES ── */
.ckeditordesign table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    font-size: 0.9375rem;
}

.ckeditordesign thead {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}


.ckeditordesign table td,
.ckeditordesign table th {
    vertical-align: top;
}

.ckeditordesign table td p {
    margin: 0;
}

.ckeditordesign table {
    table-layout: fixed;
}

.ckeditordesign table td img {
    width: 100%;
    object-fit: cover;
}

.ckeditordesign th {
    padding: 0.875rem 1rem;
    font-weight: 600;
    text-align: left;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ckeditordesign td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
}

.ckeditordesign tbody tr:last-child td {
    border-bottom: none;
}

.ckeditordesign tbody tr:hover {
    background-color: #fefce8;
}

/* ── CODE ── */
.ckeditordesign code {
    background: #fef3c7;
    color: #92400e;
    padding: 0.15em 0.4em;
    border-radius: 6px;
    font-size: 0.875em;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

.ckeditordesign pre {
    background: #1e1e2e;
    color: #cdd6f4;
    padding: 1.5rem;
    border-radius: 16px;
    overflow-x: auto;
    margin: 2rem 0;
    font-size: 0.875rem;
    line-height: 1.7;
    border: 1px solid #313244;
}

.ckeditordesign pre code {
    background: none;
    color: inherit;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
}

/* ── HORIZONTAL RULE ── */
.ckeditordesign hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 3rem 0;
}

/* ── IFRAMES / VIDEOS ── */
.ckeditordesign iframe {
    max-width: 100%;
    border-radius: 16px;
    margin: 2rem 0;
}

.ckeditordesign video {
    max-width: 100%;
    border-radius: 16px;
    margin: 2rem 0;
}

/* ── MISC ── */
.ckeditordesign strong,
.ckeditordesign b {
    font-weight: 700;
    color: #111827;
}

.ckeditordesign em,
.ckeditordesign i {
    font-style: italic;
}

.ckeditordesign u {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ckeditordesign sub,
.ckeditordesign sup {
    font-size: 0.75em;
}

/* ── CKEDITOR SPECIFIC CLASSES ── */
.ckeditordesign .image-align-center,
.ckeditordesign .image-style-align-center {
    text-align: center;
}

.ckeditordesign .image-align-left,
.ckeditordesign .image-style-align-left {
    float: left;
    margin-right: 1.5rem;
    margin-top: 0.5rem;
    max-width: 50%;
}

.ckeditordesign .image-align-right,
.ckeditordesign .image-style-align-right {
    float: right;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    max-width: 50%;
}

.ckeditordesign .image-style-side {
    float: right;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    max-width: 50%;
}

/* Clear floats */
.ckeditordesign::after {
    content: "";
    display: table;
    clear: both;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .ckeditordesign {
        font-size: 16px;
    }

    .ckeditordesign h1 {
        font-size: 1.875rem;
    }

    .ckeditordesign h2 {
        font-size: 1.5rem;
    }

    .ckeditordesign h3 {
        font-size: 1.25rem;
    }

    .ckeditordesign .image-align-left,
    .ckeditordesign .image-align-right,
    .ckeditordesign .image-style-align-left,
    .ckeditordesign .image-style-align-right,
    .ckeditordesign .image-style-side {
        float: none;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
}

/* ── PRINT ── */
@media print {
    .ckeditordesign {
        font-size: 12pt;
        line-height: 1.6;
        color: #000;
    }

    .ckeditordesign a {
        color: #000;
        text-decoration: underline;
    }

    .ckeditordesign img {
        box-shadow: none;
    }
}

/* whatsapp */


/* The main button container */
.whatsapp-button {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* --- Animation --- */
    animation: pulse 2s infinite;
    transition: transform 0.2s ease-in-out;
}

/* Hover effect */
.whatsapp-button:hover {
    transform: scale(1.1);
}

/* The pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(247 167 7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Styling for the SVG icon */
.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

.d-none {
    display: none;
}

[x-cloak] {
    display: none !important;
}



