/* ==========================================================================
   Utility Classes — replaces inline styles across all templates
   ========================================================================== */

/* --- Breadcrumb Utilities (used site-wide) --- */
.breadcrumb-icon {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    vertical-align: -1px;
}
.breadcrumb-sep {
    opacity: 0.4;
}
.breadcrumb-current {
    color: var(--color-accent);
    font-weight: 600;
}
.breadcrumb-container--spaced {
    margin-top: 16px;
}
.breadcrumb-container--centered {
    justify-content: center;
}

/* --- Container Utilities --- */
.container-max {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

/* --- Section Layout Utilities --- */
.section-padded {
    padding: 50px 24px;
}
.section-padded-sm {
    padding: 40px 24px;
}
.section-bg-primary {
    background-color: var(--bg-primary);
}
.section-bg-secondary {
    background-color: var(--bg-secondary);
}
.section-header-centered {
    text-align: center;
    margin-bottom: 40px;
}
.section-header-lg {
    text-align: center;
    margin-bottom: 48px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mt-40 {
    margin-top: 40px;
}

/* --- Section Header Patterns --- */
.section-subtitle {
    font-size: var(--fs-subtitle);
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-title {
    font-size: var(--fs-h3);
    color: var(--color-primary);
    font-weight: 800;
    margin-top: 8px;
}
.section-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: var(--fs-body-lg);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Button Utilities --- */
.btn-padded {
    padding: 12px 28px;
    font-weight: 700;
    font-size: 14px;
}
.btn-quote-cta {
    padding: 8px 24px;
    white-space: nowrap;
}
.btn-success-close {
    padding: 10px 30px;
    font-weight: 700;
    display: inline-block;
}

/* --- Link Utilities --- */
.link-reset {
    color: inherit;
    text-decoration: none;
}
.link-accent {
    color: var(--color-accent);
    text-decoration: none;
}

/* --- Flex Utilities --- */
.flex-grow-1 {
    flex: 1;
}

/* --- Border Utilities --- */
.border-0-force {
    border: 0;
}
.mb-0 {
    margin-bottom: 0;
}

/* --- Divider Accent --- */
.header-divider-accent {
    margin: 20px 0 20px 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

/* ==========================================================================
   Footer Utilities
   ========================================================================== */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 0px;
}
.footer-logo-img {
    max-height: 100px;
    width: auto;
   
}
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    transition: background-color 0.22s ease, transform 0.22s ease;
    text-decoration: none;
}
.footer-social-link:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    color: #FFFFFF;
}
.footer-social-icon {
    width: 16px;
    height: 16px;
}
.footer-col h4 {
    color: #FFFFFF;
}
.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
}
.footer-col p + p {
    margin-top: 16px;
}
.footer-links {
    margin-top: 16px;
    padding-left: 0;
}
.footer-bottom--clean {
    border-top: none;
    padding-top: 0;
    padding-bottom: 0;
}

/* ==========================================================================
   Skeleton Loader Utilities (base.html)
   ========================================================================== */
.skel-bg-light { background: rgba(255,255,255,0.15); }
.skel-bg-med   { background: rgba(255,255,255,0.2); }
.skel-bg-dark  { background: rgba(255,255,255,0.1); }
.skel-bg-darker { background: rgba(255,255,255,0.08); }

.skel-circle-48 {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.15); flex-shrink: 0;
}
.skel-circle-24 {
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(255,255,255,0.15); flex-shrink: 0;
}
.skel-flex-row {
    flex-grow: 1; margin-left: 16px;
}
.skel-ribbon-title {
    width: 80px; height: 14px;
    background: rgba(255,255,255,0.2);
}
.skel-ribbon-desc {
    width: 110px; height: 11px; margin-top: 6px;
    background: rgba(255,255,255,0.15);
}
.skel-service-icon {
    width: 50px; height: 50px; border-radius: 8px;
    background: rgba(255,255,255,0.2);
}
.skel-service-badge {
    width: 120px; height: 12px; margin-top: 120px;
    background: rgba(255,255,255,0.15);
}
.skel-service-title {
    width: 75%; height: 20px; margin-top: 12px;
    background: rgba(255,255,255,0.2);
}
.skel-service-desc {
    width: 90%; height: 36px; margin-top: 12px;
    background: rgba(255,255,255,0.15);
}
.skel-service-btn {
    width: 100px; height: 14px; margin-top: 16px;
    background: rgba(255,255,255,0.2);
}
.skel-prod-img {
    width: 100%; height: 200px;
    border-radius: 8px 8px 0 0;
    background: rgba(255,255,255,0.15);
}
.skel-prod-content {
    padding: 24px;
}
.skel-prod-actions {
    display: flex; gap: 12px; margin-top: 20px;
}
.skel-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.skel-faq-item {
    width: 100%; height: 60px; border-radius: 6px;
    background: rgba(255,255,255,0.1);
}
.skel-faq-item-open {
    width: 100%; height: 130px; border-radius: 8px;
    background: rgba(255,255,255,0.08);
}
.skel-form-input {
    width: 100%; height: 44px; border-radius: 6px;
    background: rgba(255,255,255,0.1);
}
.skel-form-textarea {
    width: 100%; height: 110px; border-radius: 6px;
    background: rgba(255,255,255,0.08);
}
.skel-form-submit {
    width: 100%; height: 48px; border-radius: 6px;
    background: rgba(255,255,255,0.15); margin-top: 8px;
}

/* ==========================================================================
   About Page Utilities
   ========================================================================== */
.about-image-container--flush {
    padding: 0;
}
.about-img--450 {
    height: 450px;
}
.badge-icon--accent {
    background-color: var(--color-accent);
}
.counter-card--primary {
    padding: 20px;
    border-top-color: var(--color-primary);
}
.counter-card--accent {
    padding: 20px;
    border-top-color: var(--color-accent);
}
.counter-num--accent {
    color: var(--color-accent);
}
.counter-label--compact {
    font-size: 15px;
    font-weight: 700;
    margin: 8px 0 4px 0;
    color: var(--color-primary);
}
.counter-desc--compact {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}
.pane-desc--lg {
    font-size: var(--fs-body-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}
.info-card--accent-top {
    padding: 36px 28px;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--color-accent);
    box-shadow: 0 4px 15px rgba(11,37,69,0.02);
}
.info-card--primary-top {
    padding: 36px 28px;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--color-primary);
    box-shadow: 0 4px 15px rgba(11,37,69,0.02);
}
.info-card--blue-top {
    padding: 36px 28px;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--color-light-blue);
    box-shadow: 0 4px 15px rgba(11,37,69,0.02);
}
.card-num--accent {
    color: rgba(30, 64, 175, 0.15);
    font-size: 48px;
    font-weight: 800;
    float: right;
    line-height: 1;
}
.card-num--primary {
    color: rgba(11, 37, 69, 0.15);
    font-size: 48px;
    font-weight: 800;
    float: right;
    line-height: 1;
}
.card-num--blue {
    color: rgba(0, 168, 228, 0.15);
    font-size: 48px;
    font-weight: 800;
    float: right;
    line-height: 1;
}
.info-card-paragraph {
    font-size: var(--fs-body-md);
    color: var(--text-secondary);
    line-height: 1.6;
    clear: both;
    margin-top: 20px;
}
.timeline-year {
    font-size: 20px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}
.timeline-year--accent {
    color: var(--color-accent);
}
.timeline-year--primary {
    color: var(--color-primary);
}
.timeline-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.timeline-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Partner Section Utilities
   ========================================================================== */
.partners-header-custom {
    text-align: center;
    margin-bottom: 40px;
}
.partner-logo-svg {
    width: 28px;
    height: 28px;
}
.partner-logo--julphar { color: #1976D2; }
.partner-logo--constromech { color: #1e40af; }
.partner-logo--atlantic { color: #00A8E8; }
.partner-logo--al-muqarram { color: #008080; }
.partner-logo--al-zaabi { color: #D9381E; }
.partner-logo--genworld { color: #1565C0; }
.partner-logo--goldenway { color: #3B82F6; }
.partner-logo--aerojet { color: #37474F; }

.partner-brand-text--julphar { font-weight: 700; color: #0B2545; }
.partner-brand-text--constromech { font-weight: 600; color: #37474F; }
.partner-brand-text--atlantic { font-weight: 800; color: #0D47A1; letter-spacing: 0.5px; }
.partner-brand-text--al-muqarram { font-weight: 700; color: #004D40; }
.partner-brand-text--al-zaabi { font-weight: 700; color: #D9381E; }
.partner-brand-text--genworld { font-weight: 900; color: #1565C0; letter-spacing: -0.5px; }
.partner-brand-text--goldenway { font-weight: 600; color: #FF8F00; }
.partner-brand-text--aerojet { font-weight: 700; color: #263238; font-style: italic; }

/* ==========================================================================
   Services Page Utilities
   ========================================================================== */
.turnkey-consult-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--color-primary), #113660);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(11,37,69,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.turnkey-banner-content {
    flex: 1 1 500px;
}
.turnkey-banner-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}
.turnkey-banner-title {
    font-size: var(--fs-h4);
    color: #FFFFFF;
    font-weight: 800;
    margin: 0 0 12px 0;
    line-height: 1.3;
}
.turnkey-banner-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0;
}
.prod-cat-tag {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.prod-main-title {
    font-size: var(--fs-h2);
    color: var(--color-primary);
    font-weight: 800;
    margin-bottom: 16px;
}
.prod-detail-desc {
    font-size: var(--fs-body-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}
.service-main-section {
    padding: 50px 24px;
    background-color: var(--bg-primary);
}
.service-features-section {
    padding: 50px 24px;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.service-process-section {
    padding: 50px 24px;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}
.service-enquiry-section {
    padding: 50px 24px;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}
.feature-card {
    background: var(--bg-primary);
    padding: 32px 24px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(11,37,69,0.01);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--color-primary);
}
.feature-card-number {
    background-color: rgba(30, 64, 175, 0.08);
    color: var(--color-primary);
    width: auto;
    display: inline-flex;
    padding: 6px 14px;
    height: auto;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 20px;
}
.feature-card-title {
    font-size: var(--fs-card-title-sm);
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 12px;
}
.feature-card-text {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}
.process-icon-wrapper {
    margin-top: 10px;
    margin-bottom: 16px;
    color: var(--color-primary);
}
.process-step-icon {
    width: 32px;
    height: 32px;
}
.process-step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}
.process-step-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}
.faq-list-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 8px 0;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 16px;
    line-height: 1.4;
}
.faq-contact-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}
.faq-contact-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}
.faq-contact-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}
.form-container {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    position: relative;
}
.form-heading {
    font-size: var(--fs-card-title-sm);
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 24px 0;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 16px;
    line-height: 1.4;
}

/* ==========================================================================
   Service Card Background Utilities
   ========================================================================== */
.service-card-bg-overlay {
    background-image: linear-gradient(to bottom, rgba(11, 37, 69, 0.3) 0%, rgba(11, 37, 69, 0.9) 100%);
}
.service-card-bg-1 {
    background-image: linear-gradient(to bottom, rgba(11, 37, 69, 0.3) 0%, rgba(11, 37, 69, 0.9) 100%),
        url('/media/services/service_1.png');
}
.service-card-bg-2 {
    background-image: linear-gradient(to bottom, rgba(11, 37, 69, 0.3) 0%, rgba(11, 37, 69, 0.9) 100%),
        url('/media/services/service_2.png');
}
.service-card-bg-3 {
    background-image: linear-gradient(to bottom, rgba(11, 37, 69, 0.3) 0%, rgba(11, 37, 69, 0.9) 100%),
        url('/media/services/service_3.png');
}
.service-card-bg-4 {
    background-image: linear-gradient(to bottom, rgba(11, 37, 69, 0.3) 0%, rgba(11, 37, 69, 0.9) 100%),
        url('/media/services/service_4.png');
}
.service-card-bg-5 {
    background-image: linear-gradient(to bottom, rgba(11, 37, 69, 0.3) 0%, rgba(11, 37, 69, 0.9) 100%),
        url('/media/services/service_5.png');
}
.service-card-bg-6 {
    background-image: linear-gradient(to bottom, rgba(11, 37, 69, 0.3) 0%, rgba(11, 37, 69, 0.9) 100%),
        url('/media/services/service_6.png');
}

/* ==========================================================================
   Products Page Utilities
   ========================================================================== */
.products-section-padded {
    padding: 30px 24px;
    background-color: var(--bg-primary);
}
.prod-controls-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.prod-filter-row--no-margin {
    margin-bottom: 0;
}
.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    pointer-events: none;
}
.prod-search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-muted);
    cursor: pointer;
    display: none;
    padding: 0;
    line-height: 1;
}
.no-products-message {
    display: none;
    text-align: center;
    padding: 60px 20px;
    width: 100%;
}
.no-products-icon {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    margin-bottom: 16px;
    margin-inline: auto;
}
.no-products-title {
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 8px;
}
.no-products-desc {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
}
.products-hero--dynamic {
    background: linear-gradient(rgba(11, 37, 69, 0.9), rgba(11, 37, 69, 0.98));
}
.slide-badge--accent {
    color: var(--color-accent);
}
.slide-title--h2 {
    font-size: var(--fs-h2);
}
.gallery-main-frame {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    position: relative;
    background-color: var(--bg-tertiary);
}
.gallery-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}
.prod-spec-badge--overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--color-primary);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.gallery-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
}
.gallery-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-info-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.detail-quick-specs {
    background-color: var(--bg-secondary);
    border-radius: 6px;
    padding: 20px;
    border: 1px solid var(--border-color);
    margin-bottom: 28px;
}
.detail-specs-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}
.detail-specs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.detail-spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
}
.detail-spec-label {
    color: var(--text-secondary);
    font-weight: 500;
}
.detail-spec-value {
    color: var(--text-primary);
    font-weight: 700;
}
.detail-actions {
    display: flex;
    gap: 16px;
    margin-top: auto;
}
.btn-detail-quote {
    flex: 1;
    padding: 12px 24px;
    text-align: center;
    font-weight: 700;
    font-size: var(--fs-body-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-detail-download {
    flex: 1;
    padding: 12px 24px;
    text-align: center;
    font-weight: 700;
    font-size: var(--fs-body-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-tertiary);
    border-color: var(--border-color);
    color: var(--color-primary);
}
.engineering-help-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.help-card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}
.help-card-title {
    font-size: var(--fs-h4);
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 16px;
}
.help-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}
.help-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.help-feature-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.help-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(30, 64, 175, 0.1);
    color: var(--color-accent);
    flex-shrink: 0;
    font-weight: bold;
    font-size: 14px;
}
.help-feature-title {
    font-size: 13.5px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 4px;
}
.help-feature-text {
    font-size: 13px;
    color: var(--text-secondary);
    display: block;
    line-height: 1.5;
}

/* ==========================================================================
   Blog Detail Utilities
   ========================================================================== */
.blog-hero--details {
    min-height: 320px;
    padding: 60px 24px;
}
.blog-detail-title {
    max-width: 800px;
    margin: 0 auto 16px;
}
.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    flex-wrap: wrap;
}
.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-meta-icon {
    width: 14px;
    height: 14px;
}
.blog-back-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.22s;
}
.blog-back-link:hover {
    color: var(--color-accent);
}
.blog-featured-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
    border: 1px solid var(--border-color);
}
.blog-featured-image {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}
.blog-category-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.blog-category-badge {
    background-color: var(--color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 4px;
}
.blog-category-text {
    font-size: 13px;
    color: var(--text-muted);
}
.blog-detail-heading {
    font-size: var(--fs-h2);
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}
.blog-detail-lead {
    font-size: var(--fs-body-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.blog-detail-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.blog-sidebar {
    position: sticky;
    top: 90px;
}
.blog-sidebar-widget {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
}
.blog-sidebar-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}
.blog-related-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.blog-related-link {
    display: flex;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.22s;
}
.blog-related-link:hover {
    opacity: 0.8;
}
.blog-related-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}
.blog-related-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-related-meta {
    font-size: 11.5px;
    color: var(--text-muted);
}
.blog-cta-card {
    background: linear-gradient(145deg, #0052FF 0%, #0036A3 100%);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    color: #fff;
}
.blog-cta-emoji {
    font-size: 36px;
    margin-bottom: 12px;
}
.blog-cta-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
}
.blog-cta-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    margin: 0 0 20px;
}

/* ==========================================================================
   Project Page Utilities
   ========================================================================== */
.project-slide-card--compact {
    height: 480px;
}
.btn-case-study {
    flex: 1;
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    color: #FFFFFF;
    display: block;
    text-decoration: none;
}

/* ==========================================================================
   Contact Page Utilities
   ========================================================================== */
.contact-link {
    color: inherit;
    text-decoration: none;
}
.contact-accent-link {
    color: var(--color-accent);
    text-decoration: none;
}
.contact-submit-btn--success {
    background: var(--color-primary);
    width: auto;
    padding: 12px 36px;
    margin-top: 0;
}

/* ==========================================================================
   Blog Section (Homepage) Utilities
   ========================================================================== */
.blog-section {
    padding: 50px 24px;
    background-color: var(--bg-primary);
}
.blog-card {
    height: 100%;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(11,37,69,0.13);
}
.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 185px;
    flex-shrink: 0;
}
.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}
.blog-card:hover .blog-card-img {
    transform: scale(1.07);
}
.blog-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
}
.blog-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.blog-card-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}
.blog-card-sep {
    color: var(--border-color);
}
.blog-card-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.45;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-desc {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.65;
    flex-grow: 1;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-footer {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--color-primary);
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
    margin-top: auto;
}
.blog-view-all-wrapper {
    text-align: center;
    margin-top: 40px;
}
.blog-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--color-primary);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.blog-view-all-link:hover {
    background: var(--color-accent);
}

/* ==========================================================================
   Slide Background Utilities
   ========================================================================== */
.slide-1 .slide-bg {
    background-image: url('/media/banners/hero_banner.png');
}
.slide-2 .slide-bg {
    background-image: url('/media/banners/banner1.png.webp');
}
.slide-3 .slide-bg {
    background-image: url('/media/banners/banner2.png.webp');
}

/* ==========================================================================
   Estimator Section
   ========================================================================== */
.estimator-actions .btn {
    height: 44px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-body-md);
    font-weight: 700;
}

/* ==========================================================================
   Custom Button Theme (Navy Blue)
   ========================================================================== */
.btn-primary {
    background-color: #1e40af !important;
    background-image: none !important;
    color: #FFFFFF !important;
    border: none !important;
    transition: var(--transition-smooth) !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #1e3a8a !important;
    background-image: none !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

.btn-outline-primary {
    background-color: transparent !important;
    background-image: none !important;
    color: #1e40af !important;
    border: 2px solid #1e40af !important;
    transition: var(--transition-smooth) !important;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background-color: #1e40af !important;
    background-image: none !important;
    color: #FFFFFF !important;
    border-color: #1e40af !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

/* Extracted Style Blocks from index.html */

    /* Premium Service Card Badge */
    .service-card-details .service-card-badge {
        display: inline-block;
        padding: 5px 12px;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        line-height: 1.2;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 30px;
        margin-bottom: 12px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        text-align: center;
        max-width: fit-content;
    }
    
    .service-card:hover .service-card-details .service-card-badge {
        background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
        color: var(--color-primary);
        border-color: transparent;
        box-shadow: 0 4px 15px rgba(0, 242, 254, 0.4);
        transform: translateY(-2px);
    }


        .industries-marquee-row {
            display: flex;
            overflow: hidden;
            width: 100%;
            user-select: none;
            padding: 10px 0;
            position: relative;
        }
        
        /* Fade effects on the edges of the marquee */
        .industries-marquee-row::before,
        .industries-marquee-row::after {
            content: "";
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }
        .industries-marquee-row::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
        }
        .industries-marquee-row::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
        }

        .industries-marquee-track-left {
            display: flex;
            gap: 20px;
            width: max-content;
            animation: industries-scroll-left 35s linear infinite;
        }
        .industries-marquee-track-right {
            display: flex;
            gap: 20px;
            width: max-content;
            animation: industries-scroll-right 35s linear infinite;
        }
        
        /* Pause scroll on hover */
        .industries-marquee-row:hover .industries-marquee-track-left,
        .industries-marquee-row:hover .industries-marquee-track-right {
            animation-play-state: paused;
        }

        .industry-marquee-card {
            display: flex;
            align-items: center;
            gap: 15px;
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 18px 28px;
            min-width: 260px;
            box-shadow: 0 4px 12px rgba(11, 37, 69, 0.03);
            transition: var(--transition-smooth);
            cursor: pointer;
        }
        .industry-marquee-card:hover {
            transform: translateY(-4px);
            border-color: var(--color-accent) !important;
            box-shadow: 0 6px 20px rgba(0, 229, 255, 0.1) !important;
        }

        .industry-icon-wrap {
            font-size: 24px;
            color: var(--color-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background-color: rgba(0, 229, 255, 0.05);
            border-radius: 50%;
            flex-shrink: 0;
            transition: var(--transition-smooth);
        }
        .industry-marquee-card:hover .industry-icon-wrap {
            background-color: var(--color-accent);
            color: var(--color-primary);
            transform: rotate(360deg);
        }

        .industry-marquee-card h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--color-primary);
            margin: 0;
            white-space: nowrap;
        }

        @keyframes industries-scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-50% - 10px)); }
        }
        @keyframes industries-scroll-right {
            0% { transform: translateX(calc(-50% - 10px)); }
            100% { transform: translateX(0); }
        }
    

        @media (min-width: 992px) {
            .timeline-grid {
                margin-top: 40px;
            }
        }
        .process-card {
            position: relative;
        }
        .process-card:hover {
            transform: translateY(-8px);
            border-color: var(--color-accent) !important;
            box-shadow: 0 20px 40px rgba(11, 37, 69, 0.08) !important;
        }
        .process-card:hover .process-badge {
            background-color: var(--color-accent) !important;
            color: var(--color-primary) !important;
            border-color: var(--color-primary) !important;
            box-shadow: 0 4px 20px rgba(0, 229, 255, 0.5) !important;
            transform: scale(1.1);
        }
        .process-card:hover .process-icon {
            background-color: var(--color-accent) !important;
            color: var(--color-primary) !important;
            transform: scale(1.05);
        }
    

        .tech-marquee-wrapper {
            position: relative;
        }
        /* Fade effects on the edges of the marquee */
        .tech-marquee-wrapper::before,
        .tech-marquee-wrapper::after {
            content: "";
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }
        .tech-marquee-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
        }
        .tech-marquee-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
        }

        .tech-marquee-track {
            display: flex;
            gap: 24px;
            width: max-content;
            animation: tech-marquee-scroll 45s linear infinite;
        }
        .tech-marquee-wrapper:hover .tech-marquee-track {
            animation-play-state: paused;
        }

        .tech-slide-item {
            flex-shrink: 0;
            width: 320px;
        }

        .tech-card {
            background-color: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            height: 100%;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 15px rgba(11, 37, 69, 0.02);
            display: flex;
            flex-direction: column;
        }
        .tech-card:hover {
            transform: translateY(-6px);
            border-color: var(--color-accent) !important;
            box-shadow: 0 10px 30px rgba(0, 229, 255, 0.06) !important;
        }

        .tech-category-header {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(0, 229, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .tech-cat-icon {
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .tech-category-header h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-primary);
            margin: 0;
        }

        .tech-badge-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .tech-badge-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 8px 12px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            transition: var(--transition-smooth);
        }
        .tech-card:hover .tech-badge-item {
            background-color: var(--bg-secondary);
        }
        .tech-badge-item:hover {
            border-color: var(--color-accent) !important;
            color: var(--color-accent) !important;
            transform: translateY(-2px);
        }
        .tech-badge-item i {
            font-size: 16px;
        }

        @keyframes tech-marquee-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-50% - 12px)); }
        }
    

        .home-blog-card:hover {
            transform: translateY(-8px);
            border-color: var(--color-accent) !important;
            box-shadow: 0 15px 35px rgba(0, 229, 255, 0.06) !important;
        }
        .home-blog-card:hover img {
            transform: scale(1.05);
        }
        .home-blog-card:hover h3 {
            color: var(--color-accent) !important;
        }
        .home-blog-card:hover .home-blog-link {
            color: var(--color-accent) !important;
        }
        .home-blog-card:hover .home-blog-link i {
            transform: translateX(5px);
        }
        .btn-outline-primary:hover {
            background-color: var(--color-accent) !important;
            border-color: var(--color-accent) !important;
            color: var(--color-primary) !important;
            transform: scale(1.03);
        }
    

    /* Scroll Reveal Transition styling */
    .reveal-single,
    .reveal-item {
        opacity: 0;
        transform: translateY(35px);
        transition: opacity 1.0s cubic-bezier(0.2, 0.8, 0.2, 1), 
                    transform 1.0s cubic-bezier(0.2, 0.8, 0.2, 1);
        will-change: transform, opacity;
    }
    
    .reveal-single.active,
    .reveal-item.active {
        opacity: 1;
        transform: translateY(0);
    }


/* Extracted Inline Styles from index.html */
.extracted-style-1 { background-color: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 70px 0 }
.extracted-style-2 { max-width: 800px; margin: 0 auto 50px auto; text-align: center }
.extracted-style-3 { display: block; font-size: var(--fs-subtitle); font-weight: 700; color: var(--color-accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px }
.extracted-style-4 { font-size: var(--fs-h2); font-weight: 800; color: var(--color-primary); margin-bottom: 16px }
.extracted-style-5 { width: 50px; height: 3px; background-color: var(--color-accent); margin: 16px auto }
.extracted-style-6 { font-size: var(--fs-body-lg); color: var(--text-secondary); line-height: 1.6; margin: 0 }
.extracted-style-7 { background-color: var(--bg-primary); border: 1px solid var(--border-color); border-radius: 12px; transition: var(--transition-smooth); box-shadow: 0 4px 12px rgba(11,37,69,0.02); display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100% }
.extracted-style-8 { width: 48px; height: 48px; border-radius: 50%; background-color: var(--color-light-blue); display: flex; align-items: center; justify-content: center; color: var(--color-accent); font-weight: 700; font-size: 20px }
.extracted-style-9 { font-size: 16px; font-weight: 700; color: var(--color-primary); margin-bottom: 8px }
.extracted-style-10 { font-size: var(--fs-body-sm); color: var(--text-muted); line-height: 1.4; margin: 0 }
.extracted-style-11 { color: white }
.extracted-style-12 { background-color: var(--bg-primary); padding: 70px 0; border-top: 1px solid var(--border-color); overflow: hidden }
.extracted-style-13 { max-width: 800px; margin: 0 auto 40px auto; text-align: center }
.extracted-style-14 { width: 100%; display: flex; flex-direction: column; gap: 20px }
.extracted-style-15 { color: inherit; text-decoration: none }
.extracted-style-16 { background-color: var(--bg-secondary); padding: 80px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); position: relative; overflow: hidden }
.extracted-style-17 { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0, 229, 255, 0.03) 0%, transparent 70%); top: -300px; left: -200px; pointer-events: none }
.extracted-style-18 { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0, 82, 255, 0.03) 0%, transparent 70%); bottom: -300px; right: -200px; pointer-events: none }
.extracted-style-19 { position: absolute; top: 85px; left: 12.5%; width: 75%; height: 2px; background: linear-gradient(to right, var(--color-accent) 0%, rgba(0, 82, 255, 0.3) 50%, var(--color-accent) 100%); z-index: 1 }
.extracted-style-20 { z-index: 2 }
.extracted-style-21 { background-color: var(--bg-primary); border: 1px solid var(--border-color); border-radius: 16px; height: 100%; box-shadow: 0 10px 30px rgba(11,37,69,0.03); transition: var(--transition-smooth); display: flex; flex-direction: column; align-items: center; padding-top: 50px !important }
.extracted-style-22 { position: absolute; top: -25px; width: 50px; height: 50px; border-radius: 50%; background-color: var(--color-primary); border: 3px solid var(--color-accent); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: #fff; box-shadow: 0 4px 12px rgba(0,229,255,0.25); transition: var(--transition-smooth) }
.extracted-style-23 { width: 60px; height: 60px; border-radius: 12px; background-color: rgba(0, 229, 255, 0.05); display: flex; align-items: center; justify-content: center; color: var(--color-accent); font-size: 24px; transition: var(--transition-smooth) }
.extracted-style-24 { font-size: 18px; font-weight: 700; color: var(--color-primary); margin-bottom: 12px }
.extracted-style-25 { font-size: var(--fs-body-sm); color: var(--text-secondary); line-height: 1.5; margin: 0 }
.extracted-style-26 { position: absolute; top: -25px; width: 50px; height: 50px; border-radius: 50%; background-color: var(--color-primary); border: 3px solid rgba(0, 82, 255, 0.5); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: #fff; box-shadow: 0 4px 12px rgba(0,82,255,0.15); transition: var(--transition-smooth) }
.extracted-style-27 { width: 60px; height: 60px; border-radius: 12px; background-color: rgba(0, 82, 255, 0.05); display: flex; align-items: center; justify-content: center; color: var(--color-primary); font-size: 24px; transition: var(--transition-smooth) }
.extracted-style-28 { background-color: var(--bg-primary); padding: 80px 0; overflow: hidden; position: relative }
.extracted-style-29 { overflow: hidden; width: 100%; position: relative; padding: 20px 0 }
.extracted-style-30 { color: var(--color-accent) }
.extracted-style-31 { color: #61DAFB }
.extracted-style-32 { color: #F7DF1E }
.extracted-style-33 { color: #E34F26 }
.extracted-style-34 { color: #1572B6 }
.extracted-style-35 { color: #000000 }
.extracted-style-36 { color: #00E5FF }
.extracted-style-37 { color: var(--color-primary) }
.extracted-style-38 { color: #3776AB }
.extracted-style-39 { color: #339933 }
.extracted-style-40 { color: #092E20 }
.extracted-style-41 { color: #4facfe }
.extracted-style-42 { color: #E10098 }
.extracted-style-43 { color: #336791 }
.extracted-style-44 { color: #47A248 }
.extracted-style-45 { color: #00758F }
.extracted-style-46 { color: #DC382D }
.extracted-style-47 { color: #003B57 }
.extracted-style-48 { color: #FF9900 }
.extracted-style-49 { color: #2496ED }
.extracted-style-50 { color: #484848 }
.extracted-style-51 { color: #F05032 }
.extracted-style-52 { background-color: var(--bg-secondary); padding: 80px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color) }
.extracted-style-53 { background-color: var(--bg-primary); border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: var(--transition-smooth); box-shadow: 0 4px 15px rgba(11,37,69,0.02) }
.extracted-style-54 { text-decoration: none; display: flex; flex-direction: column; height: 100% }
.extracted-style-55 { position: relative; width: 100%; height: 220px; overflow: hidden; background-color: var(--bg-secondary) }
.extracted-style-56 { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth) }
.extracted-style-57 { position: absolute; bottom: 15px; left: 15px; background-color: var(--color-primary); color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 6px 12px; border-radius: 20px; border: 1px solid var(--color-accent) }
.extracted-style-58 { padding: 24px; flex-grow: 1; display: flex; flex-direction: column }
.extracted-style-59 { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; display: flex; align-items: center; gap: 6px }
.extracted-style-60 { font-size: 18px; font-weight: 700; color: var(--color-primary); margin-bottom: 12px; line-height: 1.4; transition: var(--transition-smooth) }
.extracted-style-61 { font-size: var(--fs-body-sm); color: var(--text-secondary); line-height: 1.5; margin: 0 0 20px 0; flex-grow: 1 }
.extracted-style-62 { font-size: 14px; font-weight: 700; color: var(--color-primary); display: flex; align-items: center; gap: 8px; transition: var(--transition-smooth) }
.extracted-style-63 { transition: var(--transition-smooth) }
.extracted-style-64 { color: var(--text-muted) }
.extracted-style-65 { padding: 12px 30px; font-size: 15px; font-weight: 700; border-radius: 30px; border: 2px solid var(--color-accent); color: var(--color-primary); background-color: transparent; text-decoration: none; transition: var(--transition-smooth) }
