:root {
    /* Colors */
    --primary-blue: #1e2a5e;
    /* الأزرق الداكن (القبعة والدرع) */
    --secondary-green: #2d7a5e;
    /* الأخضر الزمردي (الأوراق وجزء من الدرع) */
    --accent-light-blue: #0081c9;
    /* الأزرق الفاتح (الترس السفلي) */
    --neutral-silver: #b1b1b5;
    /* الرمادي الفضي (السهم) */
    --deep-gray: #4a4a4a;
    /* الرمادي الغامق (التروس الصغيرة) */
    /* ألوان الخلفيات - Backgrounds */
    --bg-main: #ffffff;
    /* الخلفية البيضاء الأساسية */
    --bg-soft: #f8fafc;
    /* رمادي فاتح جداً لفصل الأقسام */
    --bg-dark: #020617;
    /* الخلفية الداكنة جداً (Footer أو Dark Mode) */
    /* ألوان النصوص - Text Colors */
    --text-main: #334155;
    /* لون الفقرات (Paragraphs) */
    --text-muted: #64748b;
    /* لون النصوص الأقل أهمية */
    --text-light: #f1f5f9;
    /* نصوص فاتحة للخلفيات الغامقة */
    /* ألوان التدرجات - Gradients (ميزة الموقع الأساسية) */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-soft: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    /* Gradients */
    --shield-gradient: linear-gradient(135deg, #1e2a5e 0%, #2d7a5e 100%);
    --arrow-gradient: linear-gradient(to top, #b1b1b5, #e0e0e0);
    /* ألوان التنبيه والنجاح - Status Colors */
    --success: #10b981;
    /* الأخضر للإحصائيات الإيجابية */
    --border-color: #e2e8f0;
    --transition: 0.4s;
}  
  /* لون الحدود والخطوط الفاصلة */

.contact_infoQuickReq {
    color: var(--accent-light-blue);
    font-size: 20px;
    border-radius: 8px;
    background: #fff;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid var(--accent-light-blue);
    margin: 0 5px;
    text-decoration: none !important;
}

    .contact_infoQuickReq:hover {
        background: var(--accent-light-blue);
        color: #fff;
    }

#leadModal .small_title {
    font-size: 25px;
    color: var(--accent-light-blue);
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    transition: var(--transition);
}

#leadModal p {
    color: #656565;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.6em;
}

.errorForWhatssApp, .errorForNumberFormat, .validTrueWhatsapp {
    display: none;
}

#leadModal {
    background: #00000080;
    z-index: 1099;
}



.modal-content {
    padding: 30px 15px;
    border-radius: 30px !important;
    background: #ffffff;
}

#leadModal .modal-content {
    border-radius: 20px 15px !important;
    padding: 24px;
}

#leadModal .btn_close_modal {
    position: relative;
    margin: 0 0 0 auto;
    border-radius: 10px;
    background: red;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.modal-content .modal-body {
    padding: 0;
}

.dropdown-menu.country-dropdown {
    max-height: 300px;
    overflow-y: auto;
    width: 100%;
}

.input_control {
    font-size: 14px;
    font-weight: 400;
    color: var(--deep-gray);
    min-height: 45px;
    border-radius: 10px;
    border: 1px solid var(--accent-light-blue);
    transition: var(--transition);
    background: var(--bg-soft);
}

    .input_control::placeholder {
        font-size: 13px;
    }

    .input_control:focus {
        box-shadow: 0 0 0 .2rem #5d7ca540;
    }

.country-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
}

    .country-item:hover {
        background-color: #f8f9fa;
    }

.country-flag {
    width: 20px;
    margin-right: 10px;
}

.country-name {
    flex-grow: 1;
}

.country-code {
    color: #6c757d;
    margin-left: 10px;
}

.search-box {
    padding: 10px;
    border-bottom: 1px solid #dee2e6;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.selected-flag {
    display: flex;
    align-items: center;
}

    .selected-flag img {
        width: 20px;
        margin-right: 8px;
    }

.dropdown-menu.country {
    animation: none;
    padding: 0 !important;
}

.btn:focus {
    box-shadow: none;
}
/* Global Styles */
#navbar_content.collapse_content_shadow {
  display: none !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
    /*font-family: "Playfair Display", serif;*/
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

/* Utilities */

.bg-soft {
  background: var(--bg-soft);
}

.text-primary-dark {
  color: var(--primary-dark);
}

.btn-primary-grad {
  background-image: var(--gradient-primary);
  border: none;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary-grad:hover {
  filter: brightness(0.96);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
}

/* From Uiverse.io by Randdose */
.primary-btn {
  all: unset;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.3em 1em;
  border: var(--secondary-green) solid 0.15em;
  border-radius: 0.25em;
  color: black;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition:
    border 300ms,
    color 300ms;
  user-select: none;
  z-index: 1;
  border-radius: 5px;
  background-color: var(--bg-soft);
}

.primary-btn p {
  z-index: 1;
}

.primary-btn:hover {
  color: #fff;
  border-radius: 5px;
}

.primary-btn:active {
  border-color: var(--bg-soft);
  background: var(--shield-gradient);
  color: #fff !important;
}

.primary-btn::after,
.primary-btn::before {
  content: "";
  position: absolute;
  width: 10em;
  aspect-ratio: 1;
  background: var(--shield-gradient);
  opacity: 50%;
  border-radius: 50%;
  transition:
    transform 500ms,
    background 300ms;
  z-index: -1;
}

.primary-btn::before {
  left: 0;
  transform: translateX(-9em);
}

.primary-btn::after {
  right: 0;
  transform: translateX(9em);
}

.primary-btn:hover:before {
  transform: translateX(-1em);
}

.primary-btn:hover:after {
  transform: translateX(1em);
}

.secondary-btn {
  color: var(--deep-gray);
  border: 1px solid var(--deep-gray);
  transition: 0.5s;
}

.secondary-btn:hover {
  color: var(--bg-soft);
  background: var(--accent-light-blue);
}

.bg-soft-primary {
  background: linear-gradient(135deg, #1e2a5e5a 0%, #2d7a5e4f 100%);
}

.bg-success-subtle {
  background-color: rgba(16, 185, 129, 0.12);
}

.bg-primary-subtle {
  background-color: rgba(37, 99, 235, 0.12);
}

.bg-warning-subtle {
  background-color: rgba(234, 179, 8, 0.12);
}

.bg-purple-subtle {
  background-color: rgba(124, 58, 237, 0.12);
}

.text-purple {
  color: var(--accent-purple);
}

/* Navbar */

.navbar {
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(10px);
}

.navbar .nav-link {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--primary-blue);
}

.brand-badge {
    width: 100px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

.logo_name {
  background: var(--shield-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Section */

.badge {
  color: var(--primary-blue) !important;
}

.hero-section {
  background-image: var(--gradient-soft);
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.hero-title {
  font-size: clamp(2.3rem, 3vw + 1.5rem, 3.2rem);
  font-weight: 800;
  color: var(--primary-blue);
}

.hero-title span {
  background: var(--shield-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
}

.hero-card {
  border-radius: 1.5rem;
}

.hero-card .stats-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.hero-card .stats-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.avatar-stack {
  display: flex;
  position: relative;
}

.avatar-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: inline-block;
}

.avatar-circle:nth-child(2) {
  margin-left: -10px;
}

.avatar-circle:nth-child(3) {
  margin-left: -10px;
}

.progress-bar.bg-primary-grad {
  background-image: var(--shield-gradient);
}

.partners-logos span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.8;
}

.partners-logos span:hover {
  opacity: 1;
}

/* Sections common */

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* Feature cards */

.feature-card {
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.feature-card .icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.06);
}

/* Comparison table */

.comparison-table-wrapper {
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.comparison-table thead {
  background-color: #f1f5f9;
}

.comparison-table th {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.comparison-table td {
  font-size: 0.95rem;
  color: var(--text-main);
}

.comparison-label {
  font-weight: 600;
  color: var(--primary-dark);
}

.comparison-negative,
.comparison-positive {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.comparison-negative i {
  color: #ef4444;
  font-size: 0.95rem;
}

.comparison-positive i {
  color: #16a34a;
  font-size: 0.95rem;
}

.comparison-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.comparison-badge-muted {
  background-color: #e5e7eb;
  color: #374151;
}

.comparison-badge-success {
  background-color: #16a34a;
  color: #f9fafb;
}

/* Steps */

.step-card {
  border-radius: 1rem;
  border: 1px dashed var(--border-color);
  padding: 1.5rem 1.4rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top right,
      rgba(37, 99, 235, 0.06),
      transparent 55%);
  pointer-events: none;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-image: var(--gradient-primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.step-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
}

/* Testimonials */

.testimonials-carousel {
  max-width: 880px;
  margin: 0 auto;
}

.testimonial-card {
    padding: 2rem 2.2rem;
    border-radius: 1.25rem;
    background-color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.2);
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08); */
}

    .testimonial-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at top right, rgba(37, 99, 235, 0.06), transparent 55%);
        pointer-events: none;
    }

.testmonial_bodycon {
    padding: 2rem 2.2rem;
}

.testmonial_media {
    border-radius: 10px 10px 0 0;
    min-height: 300px;
}

.testmonial_mediaoptions {
    position: relative;
    overflow: hidden;
}

.play_tetmonial {
    border: 0;
    outline: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: var(--accent-light-blue);
    background: var(--bg-soft);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 45px;
    -webkit-box-shadow: 0 0 0 0 rgba(25, 113, 195, 0.4);
    -moz-box-shadow: 0 0 0 0 rgba(25, 93, 195, 0.4);
    -ms-box-shadow: 0 0 0 0 rgba(25, 133, 195, 0.4);
    -o-box-shadow: 0 0 0 0 rgba(25, 133, 195, 0.4);
    box-shadow: 0 0 0 0 rgba(25, 119, 195, 0.4);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 0.9s infinite;
    z-index: 2;
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }

    50% {
        box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.play_tetmonial i {
    line-height: 0.3rem;
}

@media (max-width: 600px) {

    .testimonial-card,
    .testmonial_bodycon {
        padding: 1rem 0.8rem;
    }
}


.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.Cta_section {
    padding: 50px 0;
    background-color: #ffffff;
    position: relative;
}
    .Cta_section::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at top right, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0.06) 55%);
        pointer-events: none;
    }
/* Categories */
.category-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.4rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--primary-blue);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-main);
}

/* FAQ */

.accordion-item {
  border-radius: 0.75rem !important;
  overflow: hidden;
  border-color: var(--border-color);
}

.accordion-button {
  font-size: 0.95rem;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(37, 99, 235, 0.04);
  color: var(--primary-dark);
  box-shadow: none;
}

.accordion-body {
  font-size: 0.9rem;
  color: var(--text-main);
}

/* Footer */
/* Footer */

.footer-section {
    background-color: var(--bg-dark);
}

.footer-link {
    color: var(--text-light);
    opacity: 0.8;
}

    .footer-link:hover {
        opacity: 1;
        color: #ffffff;
    }

.text-footer-muted {
    color: rgba(148, 163, 184, 0.9);
}

.footer-section hr {
    border-color: rgba(148, 163, 184, 0.4);
}



.swiper-pagination {
  position: static;
  max-width: max-content;
}



.swiper-pagination-bullet {
  background: var(--accent-light-blue) !important;
  opacity: 0.3 !important;
  width: 15px;
  height: 15px;
  transition: 0.4s ease-in;
  border-radius: 3px;
}

.swiper-pagination-bullet-active {
  width: 25px;
  opacity: 1 !important;
  background: var(--secondary-green) !important;
}







.dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    min-width: 220px;
    margin-top: 0.5rem;
    animation: fadeIn 0.2s ease-out;
    border: none;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 0.75rem 1.25rem;
    font-size: 15px;
    font-weight: 400;
    color: var(--deep-gray);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .dropdown-item:hover {
        background-color: rgba(0, 102, 204, 0.08);
        color: var(--accent-light-blue);
        padding-left: 1.5rem;
    }

    .dropdown-item i {
        width: 20px;
        color: var(--accent-light-blue);
        text-align: center;
        font-size: 0.9rem;
    }

.dropdown-header {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
}

.dropdown-divider {
    margin: 0.5rem 1.25rem;
    border-color: #e2e8f0;
}

/* User Avatar & Dropdown */
.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-light-blue), var(--primary-blue));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .user-avatar:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.5rem;
    cursor: pointer;
}

.user-name {
    font-weight: 600;
    color: var(--deep-gray);
    font-size: 0.9rem;
}

.user-role {
    font-size: 0.75rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
}








/* Hero Section */
.aboutus-section {
    background: var(--shield-gradient);
    padding: 120px 0;
    color: var(--text-light);
    text-align: center;
    clip-path: ellipse(100% 100% at 50% 0%);
}

    .hero-section h1 {
        font-weight: 800;
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 20px;
    }

/* Section Styling */
.section-padding {
    padding: 90px 0;
}

.bg-soft {
    background-color: var(--bg-soft);
}

.section-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: "";
        width: 60%;
        height: 4px;
        background: var(--accent-light-blue);
        position: absolute;
        bottom: -10px;
        left: 0;
        border-radius: 2px;
    }

/* Cards Styling */
.custom-card {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

    .custom-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(30, 42, 94, 0.1);
    }

.icon-box {
    width: 65px;
    height: 65px;
    background: var(--bg-soft);
    color: var(--accent-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.6rem;
    margin-bottom: 25px;
}

/* Stats Section */
.stats-box {
    text-align: center;
    padding: 25px;
}

.stats-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--success);
    display: block;
    margin-bottom: 5px;
}

/* Vision Badge */
.badge-tag {
    background-color: var(--accent-light-blue);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
}

/* CTA Section */
.cta-section {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: 30px;
    margin-bottom: 50px;
}

.btn-grad {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s;
}

    .btn-grad:hover {
        opacity: 0.9;
        color: white;
    }


.search-container {
    max-width: 600px;
    margin: -30px auto 0;
    position: relative;
    z-index: 10;
}

.search-input {
    border-radius: 50px;
    padding: 15px 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Accordion Customization */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 15px !important;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .accordion-item:hover {
        border-color: var(--accent-light-blue);
        box-shadow: 0 5px 15px rgba(0, 129, 201, 0.05);
    }

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--primary-blue);
    background-color: white;
}

    .accordion-button:not(.collapsed) {
        background-color: var(--bg-soft);
        color: var(--accent-light-blue);
        box-shadow: none;
    }

    .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e2a5e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

.accordion-body {
    color: var(--text-muted);
    padding: 20px 25px;
    line-height: 1.8;
    background-color: white;
}

.category-title {
    color: var(--secondary-green);
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Contact Support Box */
.support-box {
    background: var(--bg-soft);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px dashed var(--border-color);
}



/* ================= CAREER TIMELINE ================= */

.career-timeline {
    position: relative;
    margin-left: 0.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(148, 163, 184, 0.6);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.career-timeline-item {
    position: relative;
}

.career-timeline-dot {
    position: absolute;
    left: -1.1rem;
    top: 1.1rem;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background-image: var(--gradient-primary);
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

.career-timeline-content {
    margin-left: 0.25rem;
}

@media (min-width: 768px) {
    .career-timeline {
        margin-left: 1.5rem;
        padding-left: 2.5rem;
    }

    .career-timeline-dot {
        left: -1.5rem;
    }
}


/* ==================== */
/* policy page */
/* ==================== */
.privacy-sec {
    margin-top: 100px;
}
/* Content Card */
.policy-container {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    margin-top: -40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 80px;
}

.privacy-h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .privacy-h2 i {
        color: var(--secondary-green);
        font-size: 1.2rem;
    }

.update-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.policy-section {
    border-bottom: 1px solid var(--bg-soft);
    padding-bottom: 25px;
}

    .policy-section:last-child {
        border-bottom: none;
    }

.privacy-sec ul {
    padding-left: 20px;
    color: var(--text-muted);
}

.privacy-sec li {
    margin-bottom: 10px;
}



/* ================= POLICY PAGES (Cookie / Privacy / Terms) ================= */

.policy-content p,
.policy-content li {
    font-size: 0.98rem;
    line-height: 1.8;
}

.policy-content h2,
.policy-content h3 {
    color: var(--primary-blue);
}

.policy-content ul {
    padding-left: 1.1rem;
    margin-bottom: 1rem;
}

.policy-link {
    color: var(--accent-light-blue);
    font-weight: 600;
}

    .policy-link:hover {
        text-decoration: underline;
    }

.policy-callout {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--text-main);
    border: 1px solid rgba(37, 99, 235, 0.18);
    font-size: 0.95rem;
}
