﻿:root {
    --event-primary: var(--primary-color);
    --event-secondary: var(--secondary-color);
    --event-accent: var(--basic-color);
    --event-gold: #c9a227;
    --event-light: color-mix(in srgb, var(--primary-color) 8%, white);
    --event-dark: color-mix(in srgb, var(--primary-color) 70%, black);
    --event-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--basic-color) 100%);
    --event-gradient-reverse: linear-gradient(135deg, var(--basic-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    --event-shadow: 0 10px 40px color-mix(in srgb, var(--primary-color) 12%, transparent);
    --event-shadow-hover: 0 20px 60px color-mix(in srgb, var(--primary-color) 20%, transparent);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

/* ============================================
   Modal Styles
   ============================================ */
.registration-modal .modal-content,
.guide-modal .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 80px color-mix(in srgb, var(--event-primary) 25%, transparent);
}

.registration-modal .modal-header,
.guide-modal .modal-header {
    background: var(--event-gradient);
    padding: 25px 30px;
    border: none;
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.modal-icon.guide {
    background: rgba(231, 76, 60, 0.3);
}

.modal-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 5px 0 0;
}

.btn-close-modal {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.registration-modal .modal-body,
.guide-modal .modal-body {
    padding: 30px;
}

/* Form Styles */
.registration-form .form-group {
    margin-bottom: 0;
}

.registration-form .form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--event-dark);
    margin-bottom: 10px;
}

.registration-form .required {
    color: #e74c3c;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--event-secondary);
    font-size: 1rem;
    z-index: 2;
}

.input-wrapper.textarea-wrapper i {
    top: 18px;
    transform: none;
}

.input-wrapper .form-control,
.input-wrapper .form-select {
    padding: 14px 45px 14px 15px;
    border: 2px solid #e8f0f3;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: #f8fbfc;
}

.input-wrapper .form-control:focus,
.input-wrapper .form-select:focus {
    border-color: var(--event-secondary);
    background: white;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--event-secondary) 10%, transparent);
}

.input-wrapper .form-control::placeholder {
    color: #aaa;
}

.input-wrapper textarea.form-control {
    min-height: 100px;
    resize: none;
}

.terms-check {
    padding: 20px;
    background: var(--event-light);
    border-radius: var(--radius-sm);
    margin-top: 10px;
}

.terms-check .form-check-input {
    width: 20px;
    height: 20px;
    margin-left: 12px;
    border: 2px solid var(--event-primary);
    cursor: pointer;
}

.terms-check .form-check-input:checked {
    background-color: var(--event-primary);
    border-color: var(--event-primary);
}

.terms-check .form-check-label {
    font-size: 0.95rem;
    color: #555;
    cursor: pointer;
}

.terms-link {
    color: var(--event-primary);
    text-decoration: underline;
    font-weight: 600;
}

/* Modal Footer */
.registration-modal .modal-footer,
.guide-modal .modal-footer {
    padding: 20px 30px;
    border-top: 2px solid var(--event-light);
    gap: 12px;
}

.btn-modal-cancel {
    padding: 12px 25px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.btn-modal-cancel:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.btn-modal-submit {
    padding: 12px 30px;
    background: var(--event-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px color-mix(in srgb, var(--event-primary) 30%, transparent);
}

.btn-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--event-primary) 40%, transparent);
}

.btn-modal-download {
    padding: 12px 30px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.btn-modal-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    color: white;
}




/* CV Modal Adjustments */
.cv-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.h6-project-item .project-content .project-text .title {
    max-width: 100%;
}

.cv-modal.active {
    display: flex;
}

.cv-modal-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cv-modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f44336;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    z-index: 1;
}

.cv-modal-close:hover {
    background: #d32f2f;
    transform: rotate(90deg);
}

.cv-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--primary-color);
    margin-bottom: 25px;
}

.cv-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(93, 208, 240, 0.3);
}

.cv-name {
    font-size: 24px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 5px;
}

.cv-position {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.cv-section {
    margin-bottom: 25px;
}

.cv-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f4f8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cv-section-title i {
    color: var(--primary-color);
    font-size: 20px;
}

.cv-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
}

.cv-info-item i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
}

.cv-info-item a {
    color: #2c3e50;
    text-decoration: none;
}

.cv-info-item a:hover {
    color: var(--primary-color);
}

.cv-text {
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.cv-list {
    list-style: none;
    padding: 0;
}

.cv-list li {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
    padding-right: 35px;
}

.cv-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 12px;
    color: #5DD0F0;
}

.cv-experience-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 12px;
    border-right: 4px solid #5DD0F0;
}

.cv-exp-title {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.cv-exp-company {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.cv-exp-period {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.cv-exp-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.cv-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cv-skill-tag {
    background: linear-gradient(135deg, #5DD0F0, #3B82F6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}





.team__single-content {
    min-height: 140px;
}

/** lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: color-mix(in srgb, var(--event-dark) 95%, transparent);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 34, 64, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(10px);
}

/*//other css//*/
.footer-logo {
    max-width: 250px;
}



.btn-cus {
    background-color: #218358 !important;
}

.btn-cus .btn-icon {
    background-color: #185e3f !important;
}

.txt-webyan {
    color: #2bc4ee;
}



.sec-heading.style-6 .sub-title {
    background-color: rgba(255, 255, 255, 0.15);
    font-size: 18px;
    line-height: 1;
    font-weight: var(--tj-fw-medium);
    padding: 8px 14px 8px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #dcf2fd;
    backdrop-filter: blur(15px);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .h6-project-item {
        border-radius: 45px !important;
    }

    .footer-logo {
        max-width: 250px;
        justify-self: center;
    }
}

/* CV Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal.active {
    display: flex;
}

.contact-modal-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f44336;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    z-index: 1;
}

.contact-modal-close:hover {
    background: #d32f2f;
    transform: rotate(90deg);
}

.contact-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--primary-color);
    margin-bottom: 25px;
}

.contact-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(93, 208, 240, 0.3);
}

.contact-name {
    font-size: 24px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-position {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-section {
    margin-bottom: 25px;
}

.contact-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f4f8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-section-title i {
    color: var(--primary-color);
    font-size: 20px;
}



.microsoft-form,
.google-form {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: auto;
}


p iframe {
    width: 100% !important;
}

p img {
    width: 100% !important;
    height: auto;
    padding: 0 0 10px 0;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.google-form iframe,
.microsoft-form iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    border: 0
}

/* ============================================================
   Section Headings — Designer Edition v6
   Badge: بوردر فقط بلون الأساسي، شفاف، بدون زوايا حادة
   ============================================================ */

/* ── 0. Wrapper ── */
.sec-heading {
    position: relative !important;
    isolation: isolate !important;
}

/* ── 1. SUB-TITLE: شفاف + بوردر بلون الأساسي ── */
.sec-heading .sub-title,
.sec-heading.style-2 .sub-title,
.sec-heading.style-3 .sub-title,
.sec-heading.style-4 .sub-title,
.sec-heading.style-6 .sub-title,
.sec-heading.style-7 .sub-title,
.sec-heading.style-8 .sub-title {
    background: transparent !important;
    border: 1.5px solid var(--primary-color) !important;
    border-radius: 6px !important;
    clip-path: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    padding: 7px 20px !important;

    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;

    color: var(--primary-color) !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
    line-height: 1 !important;
}

/* ── 2. ICON: استبدال tji-box بنجمة صغيرة بلون الأساسي ── */
.sec-heading .sub-title i {
    display: none !important;
}

.sec-heading .sub-title::before {
    content: '✦' !important;
    display: inline-block !important;
    color: var(--primary-color) !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    font-size: 12px !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
}

.sec-heading .sub-title::after {
    display: none !important;
}

/* ── 3. SEC-TITLE: نص داكن + خط سفلي ── */
.sec-heading .sec-title {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #0c1523 !important;
    color: #0c1523 !important;
    font-weight: 800 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    display: block !important;
    position: relative !important;
    letter-spacing: 0 !important;
}

/* لا شيء فوق العنوان */
.sec-heading .sec-title::before {
    display: none !important;
}

/* خط تحت العنوان */
.sec-heading .sec-title::after {
    content: '' !important;
    display: block !important;
    width: 52px !important;
    height: 3px !important;
    border-radius: 3px !important;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) !important;
    margin-top: 16px !important;
}

[dir="rtl"] .sec-heading .sec-title::after {
    margin-right: 0;
    margin-inline: auto;
}

[dir="ltr"] .sec-heading .sec-title::after {
    margin-left: 0;
    margin-right: auto;
}

.sec-heading-centered .sec-title::after {
    margin-inline: auto !important;
}

/* ============================================================
   Unified Headings — sec-heading-wrap + ab-badge (AboutUs / Projects)
   ============================================================ */

/* ── sub-title خارج .sec-heading (داخل sec-heading-wrap) ── */
.sec-heading-wrap .sub-title {
    background: transparent !important;
    border: 1.5px solid var(--primary-color) !important;
    border-radius: 6px !important;
    clip-path: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    padding: 7px 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: var(--primary-color) !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
    line-height: 1 !important;
}

.sec-heading-wrap .sub-title i { display: none !important; }

.sec-heading-wrap .sub-title::before {
    content: '✦' !important;
    display: inline-block !important;
    color: var(--primary-color) !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    font-size: 12px !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
}

.sec-heading-wrap .sub-title::after { display: none !important; }

/* ── .ab-badge (AboutUs Style 1 / 2 / 4) ── */
.ab-badge {
    background: transparent !important;
    border: 1.5px solid var(--primary-color) !important;
    border-radius: 6px !important;
    padding: 7px 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: var(--primary-color) !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
    line-height: 1 !important;
}

.ab-badge i { display: none !important; }

.ab-badge::before {
    content: '✦' !important;
    display: inline-block !important;
    color: var(--primary-color) !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    font-size: 12px !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
}

/* ── إخفاء خط .ab-rule القديم (الخط الآن تحت العنوان) ── */
.ab-rule { display: none !important; }

/* ── .ab2-title: عنوان رئيسي + خط تدرجي تحته ── */
.ab2-title {
    font-weight: 800 !important;
    position: relative !important;
}

.ab2-title::after {
    content: '' !important;
    display: block !important;
    width: 52px !important;
    height: 3px !important;
    border-radius: 3px !important;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) !important;
    margin-top: 16px !important;
}

[dir="rtl"] .ab2-title::after { margin-right: 0; margin-left: auto; }
[dir="ltr"] .ab2-title::after { margin-left: 0; margin-right: auto; }

/* ============================================================
   RTL Text Animation Support (extracted from _Header.cshtml)
   [dir="rtl"] selectors are safe to load globally — they only
   match when the page direction is already RTL.
   ============================================================ */

.title-highlight[dir="rtl"],
.title-anim[dir="rtl"],
.text-anim[dir="rtl"] {
    direction: rtl !important;
    text-align: right !important;
    unicode-bidi: embed !important;
    font-family: "Tajawal", sans-serif !important;
}

.title-anim div,
.title-anim span,
.text-anim div,
.text-anim span {
    display: inline-block !important;
    letter-spacing: normal !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ============================================================
   Header Navigation Overrides (extracted from _Header.cshtml)
   ============================================================ */

.header-area.header-2.header-absolute {
    border-radius: 15px;
    background-image: linear-gradient(to bottom, #0c7fae4d 5%, #ffffff03);
}

.header-2.header-absolute .mainmenu > ul > li > a {
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.header-2.header-absolute .mainmenu > ul > li > a:hover {
    transform: translateY(-3px);
}

.header-2.header-absolute .mainmenu > ul > li > a::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #A6A6A6;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.header-2.header-absolute .mainmenu > ul > li > a:hover::before {
    transform: scaleY(1);
}

.header-2.header-duplicate .mainmenu > ul > li > a {
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.header-2.header-duplicate .mainmenu > ul > li > a:hover {
    transform: translateY(-3px);
}

.header-2.header-duplicate .mainmenu > ul > li > a::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #A6A6A6;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.header-2.header-duplicate .mainmenu > ul > li > a:hover::before {
    transform: scaleY(1);
}

/* ============================================================
   Project Items (extracted from _Header.cshtml)
   ============================================================ */

.h6-project-item.active .h6-project-item-inner::after {
    background: right 100% / 110% repeat-x url(/Webyan/webyanTemp/Pattern-BG.svg), linear-gradient(to top, #13236e94 30%, #ffffff03);
}

.h6-project-item-inner::after {
    background: right 100% / 110% repeat-x url(/Webyan/webyanTemp/Pattern-BG.svg), linear-gradient(to top, #13236e94 30%, #ffffff03);
    background-size: cover;
    opacity: 0.1;
    height: 40%;
}

.h6-project-item {
    border-radius: 90px !important;
}

.h6-project-item.active {
    border-radius: 45px !important;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .h6-project-item {
        border-radius: 45px !important;
    }
}

/* ============================================================
   Utility Classes (extracted from _Header.cshtml)
   ============================================================ */

.w-85 {
    width: 85%;
}

.cust_border {
    border: solid 2px #d4f0fc;
}

.bg-wh {
    background-color: #ffffff80;
}

.bg-border {
    background-color: #f7fcff;
    border: solid 2px #d4f0fc;
}

.bg-custom {
    background-color: #f7fcff;
}

/* ============================================================
   Public Site Body & Component Styles (extracted from _Header.cshtml)
   ============================================================ */

body {
    background-color: #f7f9fa;
}

.card {
    border-radius: 12px;
}

.project-item .categories a {
    background-color: #f7fcff;
    backdrop-filter: none;
    color: var(--tj-color-text-body);
    border-color: #d4f0fc;
}

.categories a {
    background-color: rgba(255, 255, 255, 0.15);
    font-size: 18px;
    line-height: 1;
    color: var(--tj-color-text-body);
    font-weight: var(--tj-fw-medium);
    padding: 8px 14px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #dcf2fd;
    backdrop-filter: blur(15px);
}

.client-item {
    transition: transform 0.3s ease;
}

.client-item:hover {
    transform: translateY(-10px);
}

.client-logo:hover {
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.2));
}

.client-logo:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.client-logo {
    padding: 20px;
    border-radius: 12px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.lang .nice-select,
.lang select {
    background-color: transparent;
    color: var(--tj-color-heading-primary);
    padding: 0px 20px;
    border: 0;
    border-bottom: 1px dashed var(--tj-color-border-1);
}

.nice-select:active,
.nice-select.open,
.nice-select:focus,
.nice-select {
    color: var(--tj-color-text-body-2);
}

.social-links ul li a i {
    color: var(--tj-color-common-white) !important;
}

.social-links ul li a {
    background-color: var(--tj-color-theme-primary) !important;
}

.funfact-one .funfact-one__icon img {
    font-size: 24px;
    width: 60px;
    height: 60px;
    background: #115da9;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
}

.tj-page-link {
    padding: 10px;
}

.tj-page-link span i {
    color: white;
}

.infos-item .project-text {
    align-content: center;
}

.team .team__single-content p {
    color: var(--primary-color);
}

/* ============================================================
   WhatsApp Floating Button (extracted from _Header.cshtml)
   ============================================================ */

.WhatsAppLink {
    font-size: 23px !important;
    border-radius: 100%;
    background: #25d366 !important;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    bottom: 10px;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 80px;
    right: 35px;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 999999;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .btn-whatsapp-pulse {
        bottom: 75px;
        right: 10px;
        font-size: 25px;
        padding: 20px;
    }
}

/* ============================================================
   Registration / Guide Modal Styles (extracted from _Header.cshtml)
   Class names use double-n (.registrationn-modal) to match HTML.
   ============================================================ */

.registrationn-modal .modal-content,
.guide-modal .modal-content {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(13, 74, 111, 0.25);
}

.registrationn-modal .modal-header,
.guide-modal .modal-header {
    background: var(--event-gradient);
    padding: 25px 30px;
    border: none;
}

.btn-close-modall {
    position: absolute;
    left: 20px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.registrationn-form .form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--tj-color-theme-dark);
    margin-bottom: 10px;
}

.registrationn-form .form-control,
.registrationn-form .form-select {
    padding: 14px 45px 14px 15px;
    border: 2px solid #e8f0f3;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fbfc;
}

/* ============================================================
   Modal Form-Check Radio Buttons (extracted from _Layout.cshtml)
   Scoped to #modal-form-container
   ============================================================ */

#modal-form-container .form-check.form-check-inline {
    display: flex !important;
    align-items: center;
    margin-bottom: 12px;
    margin-right: 0 !important;
    margin-left: 0 !important;
    width: 100%;
}

#modal-form-container .form-check-input[type="radio"] {
    margin-left: 10px !important;
    margin-right: 0 !important;
    float: none !important;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

#modal-form-container .form-check-label {
    cursor: pointer;
    font-size: 15px;
    color: #333;
    margin-bottom: 0 !important;
    line-height: 1.5;
}

/* ============================================================
   Footer Margin Utility (used on non-home pages)
   ============================================================ */

.foooter-p {
    margin-bottom: 50px;
}