﻿:root {
  --primary: #1D3A67;
  --primary-dark: #004F87;
  --primary-light: #2A4F8A;
  --teal: #1D3A67;
  --teal-glow: #1D3A67;
  --gold: #FBBC14;
  --gold-light: #ffd7a5;
  --cream: #f8f2e7;
  --white: #ffffff;
  --gradient-start: #1D3A67;
  --gradient-end: #2A4F8A;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
   background: linear-gradient(
    145deg,
    rgba(0, 79, 135, 0.9) 0%,
    rgba(29, 58, 103, 0.9) 45%,
    rgba(42, 79, 138, 0.9) 100%
  );
   overflow: hidden;
  display: flex;
  align-items: center;
  padding: 50px 20px 50px;
}

.hero-bg-animated {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-animated .gradient-layer {
  position: absolute;
  inset: -50%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(29, 58, 103, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(251, 188, 20, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  animation: gradientMove 20s ease-in-out infinite alternate;
}

@keyframes gradientMove {
  0% { transform: translate(0%, 0%) scale(1); }
  33% { transform: translate(5%, -5%) scale(1.1); }
  66% { transform: translate(-5%, 3%) scale(0.95); }
  100% { transform: translate(3%, -3%) scale(1.05); }
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6; 
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.shape--1 { width: 600px; height: 600px; background: var(--teal); top: -200px; right: -200px; animation: floatShape 16s ease-in-out infinite alternate; }
.shape--2 { width: 400px; height: 400px; background: var(--gold); bottom: -100px; left: -100px; animation: floatShape 20s ease-in-out infinite alternate-reverse; }

@keyframes floatShape {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -40px) scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1350px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  color: var(--white);
  text-align: start !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.55rem 2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
.hero-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(251, 188, 20, 0.65); }
    70% { box-shadow: 0 0 0 10px rgba(251, 188, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 188, 20, 0); }
}

.hero-title-ar {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

body[dir="rtl"] .hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 0px;
    margin-bottom: 1.5rem;
}

body[dir="rtl"] .hero-title .highlight {
    margin: 0 4px;
    padding: 0 2px;
}

body[dir="rtl"] .hero-title .highlight + br {
    display: none;
}

.hero-title .highlight {
  background: linear-gradient(
    135deg,
    #001F3A,
    #102B52,
    #C77B1A,
    #D99B00
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.meta-item { display: flex; align-items: center; gap: 0.7rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08); padding: 0.6rem 1.2rem; border-radius: 50px; font-size: 0.85rem; }
.meta-item .label { opacity: 0.6; font-size: 0.65rem; text-transform: uppercase; }
.meta-item .value { font-weight: 600; color: #fff; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.btn-hero { display: inline-block; padding: 0.9rem 2.2rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.3s ease; }
.btn-hero--primary { background: linear-gradient(135deg, var(--teal), #2A4F8A); color: #fff; box-shadow: 0 10px 25px rgba(29, 58, 103, 0.3); }
.btn-hero--primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(29, 58, 103, 0.45); }
.btn-hero--ghost { background: rgba(255, 255, 255, 0.04); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); backdrop-filter: blur(4px); }
.btn-hero--ghost:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-3px); }

.countdown { display: flex; gap: 1rem; }
.cd-item { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 0.6rem 1.2rem; text-align: center; min-width: 75px; }
.cd-item .number { display: block; font-size: 1.8rem; font-weight: 800; color: #fff; }
.cd-item .unit { font-size: 0.6rem; text-transform: uppercase; opacity: 0.5; letter-spacing: 1px; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
  perspective: 1000px;
}

.ai-cyber-sphere {
  position: relative;
  width: 280px;
  height: 280px;
  transform-style: preserve-3d;
    animation: rotateSphere 20s linear infinite;
}

.ai-cyber-sphere::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 188, 20, 0.25) 0%, transparent 70%);
    filter: blur(30px);
    transform: translateZ(-60px);
}

.sphere-ring {
  position: absolute;
  inset: 0;
    border: 2px solid rgba(251, 188, 20, 0.28);
  border-radius: 50%;
    box-shadow: 0 0 20px rgba(251, 188, 20, 0.08), inset 0 0 20px rgba(251, 188, 20, 0.08);
}

.sphere-ring:nth-child(1) { transform: rotateX(0deg) rotateY(0deg); border-color: rgba(251, 188, 20, 0.38); border-style: solid; }
.sphere-ring:nth-child(2) { transform: rotateX(60deg) rotateY(30deg); border-color: rgba(255, 255, 255, 0.24); border-style: dashed; }
.sphere-ring:nth-child(3) { transform: rotateX(-60deg) rotateY(30deg); border-color: rgba(251, 188, 20, 0.24); border-style: dotted; }
.sphere-ring:nth-child(4) { transform: rotateX(90deg) rotateY(0deg); border-color: rgba(255, 255, 255, 0.14); }
.sphere-ring:nth-child(5) { transform: rotateX(0deg) rotateY(90deg); border-color: rgba(251, 188, 20, 0.2); border-style: dashed; }

.sphere-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FBBC14;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(251, 188, 20, 0.65);
    top: 50%;
    left: 50%;
}

.sphere-dot:nth-child(6) { transform: translate(-50%, -50%) rotate(0deg) translateX(140px); }
.sphere-dot:nth-child(7) { transform: translate(-50%, -50%) rotate(45deg) translateX(140px); }
.sphere-dot:nth-child(8) { transform: translate(-50%, -50%) rotate(90deg) translateX(140px); }
.sphere-dot:nth-child(9) { transform: translate(-50%, -50%) rotate(135deg) translateX(140px); }
.sphere-dot:nth-child(10) { transform: translate(-50%, -50%) rotate(180deg) translateX(140px); }
.sphere-dot:nth-child(11) { transform: translate(-50%, -50%) rotate(225deg) translateX(140px); }
.sphere-dot:nth-child(12) { transform: translate(-50%, -50%) rotate(270deg) translateX(140px); }
.sphere-dot:nth-child(13) { transform: translate(-50%, -50%) rotate(315deg) translateX(140px); }

.sphere-core {
  position: absolute;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #ffffff 0%, #FBBC14 50%, transparent 100%);
  border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 40px rgba(251, 188, 20, 0.55), 0 0 80px rgba(251, 188, 20, 0.22);
  animation: pulseCore 3s ease-in-out infinite alternate;
}

@keyframes rotateSphere {
  0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(180deg); }
}

@keyframes pulseCore {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr; 
    text-align: center;
    gap: 3rem;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-desc { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-title {  text-align: center; }
  .hero-badge { text-align: center; }

  .hero-meta, .hero-actions, .countdown { justify-content: center; }
  .hero-visual { height: 320px; }
  .ai-cyber-sphere { width: 200px; height: 200px; }
    .sphere-dot:nth-child(6) { transform: translate(-50%, -50%) rotate(0deg) translateX(90px); }
    .sphere-dot:nth-child(7) { transform: translate(-50%, -50%) rotate(45deg) translateX(90px); }
    .sphere-dot:nth-child(8) { transform: translate(-50%, -50%) rotate(90deg) translateX(90px); }
    .sphere-dot:nth-child(9) { transform: translate(-50%, -50%) rotate(135deg) translateX(90px); }
    .sphere-dot:nth-child(10) { transform: translate(-50%, -50%) rotate(180deg) translateX(90px); }
    .sphere-dot:nth-child(11) { transform: translate(-50%, -50%) rotate(225deg) translateX(90px); }
    .sphere-dot:nth-child(12) { transform: translate(-50%, -50%) rotate(270deg) translateX(90px); }
    .sphere-dot:nth-child(13) { transform: translate(-50%, -50%) rotate(315deg) translateX(90px); }
    .sphere-core { width: 36px; height: 36px; }
}

@media (max-width: 576px) {
  .hero { padding: 6rem 1rem 2rem; }
  .hero-meta { flex-direction: column; width: 100%; }
  .meta-item { width: 100%; justify-content: center; }
  .countdown { flex-wrap: wrap; justify-content: center; }
  .hero-actions { flex-direction: column; width: 100%; align-items: center; }
  .btn-hero { width: 100%; max-width: 320px; }
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.btn-hero {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn-hero--primary {
  background: linear-gradient(135deg, var(--teal), #2A4F8A);
  color: #fff;
  box-shadow: 0 12px 30px rgba(29, 58, 103, 0.3);
}

.btn-hero--primary:hover {
  background: #000000; 
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.btn-hero--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

.btn-hero--ghost:hover {
  background: #000000; 
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}


.hero-stats {
  padding: 4rem 0;
  background: #ffffff; 
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
  padding: 50px 20px 50px;
  display: flex;
  justify-content: center;
}

.hero-stats .stats-inner {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(29, 58, 103, 0.05), rgba(251, 188, 20, 0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item .number {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}

.stat-item .label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #333333; 
  position: relative;
  z-index: 1;
}

.stat-item .stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
  opacity: 0.6;
  position: relative;
  z-index: 1;
}

@media (max-width: 1600px) {
  .hero-stats .stats-inner {
    max-width: 100%;
  }
}

@media (max-width: 960px) {
  .hero-stats .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item .number {
    font-size: 2.8rem;
  }
}

@media (max-width: 500px) {

  .hero-stats .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .stat-item {
    padding: 1rem 0.5rem;
  }

  .stat-item .number {
    font-size: 2.2rem;
  }

  .stat-item .label {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .stat-item .stat-icon {
    font-size: 1.2rem;
  }
}

.about-section {
    padding: 5rem 0;
    background: #ffffff;
}

.about-container {
    text-align: start !important;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal);
    background: rgba(29, 58, 103, 0.08);
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    width: fit-content;
}

.about-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
    margin: 0;
}

.about-title .highlight {
    background: linear-gradient(135deg, var(--teal), var(--teal-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--teal), #2A4F8A);
    color: #fff;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    border: none;
    cursor: pointer;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(29, 58, 103, 0.35);
    color: #fff;
}

.about-btn svg {
    transition: transform 0.3s ease;
}

.about-btn:hover svg {
    transform: translateX(5px);
}

html[dir="rtl"] .about-btn:hover svg {
    transform: translateX(-5px);
}

html[dir="rtl"] .about-btn {
    direction: rtl;
}

html[dir="rtl"] .about-btn svg {
    transform: scaleX(-1);
}

html[dir="rtl"] .about-btn:hover svg {
    transform: scaleX(-1) translateX(5px);
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    box-shadow: 0 30px 60px rgba(29, 58, 103, 0.2);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.85;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.4rem;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatCard 4s ease-in-out infinite;
}

.float-card .float-icon {
    font-size: 1.3rem;
}

.float-card .float-text {
    white-space: nowrap;
}

.float-card-1 {
    top: 0px;
    left: -20px;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: -8px;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* -------- Responsive -------- */
@media (max-width: 960px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-content {
        order: 1;
    }

    .about-visual {
        order: 0;
    }

    .about-image-wrapper {
        max-width: 100%;
    }

    .float-card-1 {
        top: -10px;
        left: 10px;
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }

    .float-card-2 {
        bottom: -10px;
        right: 10px;
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 500px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .about-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .float-card-1 {
        top: -8px;
        left: 5px;
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
        border-radius: 12px;
    }

    .float-card-2 {
        bottom: -8px;
        right: 5px;
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
        border-radius: 12px;
    }

    .float-card .float-icon {
        font-size: 0.9rem;
    }
}

.tracks-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.tracks-section .tracks-container {
    text-align: start !important;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sec Title - LEFT ALIGNED */
.tracks-section .sec-title {
    text-align: start !important;
    margin-bottom: 50px;
}

.tracks-section .sec-title .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1D3A67;
    background: rgba(29, 58, 103, 0.08);
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 12px;
}

.tracks-section .sec-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1D3A67;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.tracks-section .sec-title .sec-lead {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0;
    line-height: 1.6;
}

.tracks-section .track-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tracks-section .track {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 30px 30px 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tracks-section .track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.tracks-section .track:hover::before {
    transform: scaleX(1);
}

.tracks-section .track:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.tracks-section .track.t1::before {
    background: linear-gradient(90deg, #e0556b, #b8324a);
}
.tracks-section .track.t1 .badge {
    background: linear-gradient(135deg, #e0556b, #b8324a);
}

.tracks-section .track.t2::before {
    background: linear-gradient(90deg, #1D3A67, #1f4d6b);
}
.tracks-section .track.t2 .badge {
    background: linear-gradient(135deg, #1D3A67, #1f4d6b);
}

.tracks-section .track.t3::before {
    background: linear-gradient(90deg, #3ca55c, #2e8b6b);
}
.tracks-section .track.t3 .badge {
    background: linear-gradient(135deg, #3ca55c, #2e8b6b);
}

.tracks-section .track.t4::before {
    background: linear-gradient(90deg, #d98c2b, #c2701a);
}
.tracks-section .track.t4 .badge {
    background: linear-gradient(135deg, #d98c2b, #c2701a);
}

.tracks-section .track .top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.tracks-section .track .badge {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.tracks-section .track:hover .badge {
    transform: scale(1.05) rotate(-5deg);
}

.tracks-section .track .num {
    font-size: 11px;
    font-weight: 700;
    color: #1D3A67;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.tracks-section .track h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1D3A67;
    margin: 0;
    line-height: 1.3;
}

.tracks-section .track ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tracks-section .track ul li {
    font-size: 13px;
    background: rgba(0, 0, 0, 0.03);
    color: #444;
    padding: 5px 14px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
    transition: all 0.3s ease;
}

.tracks-section .track:hover ul li {
    background: rgba(0, 0, 0, 0.05);
}

.tracks-section .track ul li:hover {
    background: #1D3A67;
    color: #fff;
    border-color: #1D3A67;
    transform: scale(1.04);
}


@media (max-width: 992px) {
    .tracks-section .track-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .tracks-section .track {
        padding: 24px 24px 26px 24px;
    }
}

@media (max-width: 768px) {
    .tracks-section {
        padding: 60px 0;
    }

    .tracks-section .tracks-container {
        padding: 0 16px;
    }

    .tracks-section .sec-title {
        margin-bottom: 36px;
    }

    .tracks-section .sec-title h2 {
        font-size: 30px;
    }

    .tracks-section .sec-title .sec-lead {
        font-size: 15px;
    }

    .tracks-section .track-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tracks-section .track {
        padding: 20px 20px 22px 20px;
    }

    .tracks-section .track .badge {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 10px;
    }

    .tracks-section .track h3 {
        font-size: 16px;
    }

    .tracks-section .track ul li {
        font-size: 12px;
        padding: 4px 12px;
    }
}

@media (max-width: 500px) {
    .tracks-section {
        padding: 40px 0;
    }

    .tracks-section .tracks-container {
        padding: 0 12px;
    }

    .tracks-section .sec-title {
        margin-bottom: 28px;
    }

    .tracks-section .sec-title .eyebrow {
        font-size: 10px;
        padding: 4px 14px;
    }

    .tracks-section .sec-title h2 {
        font-size: 24px;
    }

    .tracks-section .sec-title .sec-lead {
        font-size: 14px;
    }

    .tracks-section .track-grid {
        gap: 14px;
    }

    .tracks-section .track {
        padding: 16px 16px 18px 16px;
        border-radius: 14px;
    }

    .tracks-section .track .top {
        gap: 10px;
        margin-bottom: 12px;
    }

    .tracks-section .track .badge {
        width: 38px;
        height: 38px;
        font-size: 16px;
        border-radius: 8px;
    }

    .tracks-section .track .num {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .tracks-section .track h3 {
        font-size: 14px;
    }

    .tracks-section .track ul {
        gap: 6px;
    }

    .tracks-section .track ul li {
        font-size: 11px;
        padding: 3px 10px;
    }
}


/* ============================================
   TIMELINE SECTION
   ============================================ */
.timeline-section {
    padding: 80px 0;
    background: #f2f0f8;
}

.timeline-section .sec-title {
    text-align: left;
    margin-bottom: 50px;
}

.timeline-section .sec-title .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1D3A67;
    background: rgba(29, 58, 103, 0.08);
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 12px;
}

.timeline-section .sec-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1D3A67;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.timeline-section .sec-title .sec-lead {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0;
    line-height: 1.6;
}

.timeline-section .timeline-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-section .sec-title {
    text-align: center;
    margin-bottom: 50px;
}

.timeline-section .sec-title .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1D3A67;
    background: rgba(29, 58, 103, 0.08);
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 12px;
}

.timeline-section .sec-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1D3A67;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.timeline-section .sec-title .sec-lead {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== Ø§Ù„ØªØ¹Ø¯ÙŠÙ„: Timeline Alternating Left & Right ===== */
.timeline-section .timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.timeline-section .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #1D3A67, #1D3A67);
    border-radius: 2px;
    transform: translateX(-50%);
}

.timeline-section .timeline-item {
    position: relative;
    padding: 0 0 40px 0;
    width: 50%;
    left: 0;
}

.timeline-section .timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-section .timeline-item:nth-child(odd) {
    padding-right: 50px;
    text-align: right;
}

.timeline-section .timeline-item:nth-child(even) {
    margin-left: auto;
    padding-left: 50px;
    text-align: start !important;
}

.timeline-section .timeline-item .tl-dot {
    position: absolute;
    top: 4px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #1D3A67;
    box-shadow: 0 0 0 6px rgba(29, 58, 103, 0.10);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-section .timeline-item:nth-child(odd) .tl-dot {
    right: -13px;
    left: auto;
}

.timeline-section .timeline-item:nth-child(even) .tl-dot {
    left: -13px;
    right: auto;
}

.timeline-section .timeline-item:hover .tl-dot {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(29, 58, 103, 0.15);
}

.timeline-section .timeline-item.done .tl-dot {
    background: #1D3A67;
    border-color: #1D3A67;
}

.timeline-section .timeline-item.done .tl-dot::after {
    content: '';
    position: absolute;
    top: 46%;
    left: 50%;
    width: 6px;
    height: 11px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

.timeline-section .timeline-item .tl-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 18px 24px 20px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    display: inline-block;
    text-align: start !important;
    max-width: 100%;
}

.timeline-section .timeline-item:nth-child(odd) .tl-card {
    text-align: right;
}

.timeline-section .timeline-item:hover .tl-card {
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(29, 58, 103, 0.10);
}

.timeline-section .timeline-item:nth-child(even):hover .tl-card {
    transform: translateX(-6px);
}

.timeline-section .timeline-item .tl-date {
    font-size: 12px;
    color: #1D3A67;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.timeline-section .timeline-item .tl-card h3 {
    font-size: 18px;
    color: #1D3A67;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.timeline-section .timeline-item .tl-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 60px 0;
    }

    .timeline-section .timeline-container {
        padding: 0 16px;
    }

    .timeline-section .sec-title {
        margin-bottom: 36px;
    }

    .timeline-section .sec-title h2 {
        font-size: 30px;
    }

    .timeline-section .sec-title .sec-lead {
        font-size: 15px;
    }

    .timeline-section .timeline {
        max-width: 100%;
    }

    .timeline-section .timeline::before {
        left: 20px;
        transform: none;
    }

    .timeline-section .timeline-item {
        width: 100%;
        padding: 0 0 32px 56px !important;
        margin-left: 0 !important;
        text-align: left !important;
    }

    .timeline-section .timeline-item .tl-dot {
        left: 10px !important;
        right: auto !important;
        width: 22px;
        height: 22px;
        border-width: 3px;
        box-shadow: 0 0 0 4px rgba(29, 58, 103, 0.10);
    }

    .timeline-section .timeline-item .tl-card {
        text-align: left !important;
        padding: 14px 18px 16px 18px;
        display: block;
    }

    .timeline-section .timeline-item .tl-card h3 {
        font-size: 16px;
    }

    .timeline-section .timeline-item .tl-card p {
        font-size: 13px;
    }

    .timeline-section .timeline-item:nth-child(even):hover .tl-card,
    .timeline-section .timeline-item:nth-child(odd):hover .tl-card {
        transform: translateX(6px);
    }
}

@media (max-width: 500px) {
    .timeline-section {
        padding: 40px 0;
    }

    .timeline-section .timeline-container {
        padding: 0 12px;
    }

    .timeline-section .sec-title {
        margin-bottom: 28px;
    }

    .timeline-section .sec-title .eyebrow {
        font-size: 10px;
        padding: 4px 14px;
    }

    .timeline-section .sec-title h2 {
        font-size: 24px;
    }

    .timeline-section .sec-title .sec-lead {
        font-size: 14px;
    }

    .timeline-section .timeline::before {
        left: 14px;
    }

    .timeline-section .timeline-item {
        padding: 0 0 24px 44px !important;
    }

    .timeline-section .timeline-item .tl-dot {
        left: 6px !important;
        width: 18px;
        height: 18px;
        border-width: 3px;
        box-shadow: 0 0 0 3px rgba(29, 58, 103, 0.10);
    }

    .timeline-section .timeline-item.done .tl-dot::after {
        width: 5px;
        height: 9px;
        border-right-width: 2px;
        border-bottom-width: 2px;
    }

    .timeline-section .timeline-item .tl-card {
        padding: 12px 14px 14px 14px;
        border-radius: 12px;
    }

    .timeline-section .timeline-item .tl-date {
        font-size: 10px;
    }

    .timeline-section .timeline-item .tl-card h3 {
        font-size: 14px;
    }

    .timeline-section .timeline-item .tl-card p {
        font-size: 12px;
    }
}

/* ============================================
   RTL Timeline Support
   ============================================ */

html[dir="rtl"] .timeline-section {
    direction: rtl;
    text-align: right;
}

/* Title */
html[dir="rtl"] .timeline-section .sec-title {
    text-align: center;
}

/* Center line */
html[dir="rtl"] .timeline-section .timeline::before {
    left: 50%;
    right: auto;
}

/* Timeline items */
html[dir="rtl"] .timeline-section .timeline-item {
    left: auto;
}

/* Odd items -> Right side */
html[dir="rtl"] .timeline-section .timeline-item:nth-child(odd) {
    padding-right: 0;
    padding-left: 50px;
    text-align: left;
}

/* Even items -> Left side */
html[dir="rtl"] .timeline-section .timeline-item:nth-child(even) {
    margin-left: 0;
    margin-right: auto;
    padding-left: 0;
    padding-right: 50px;
    text-align: right !important;
}


/* Dots */
html[dir="rtl"] .timeline-section .timeline-item:nth-child(odd) .tl-dot {
    right: auto;
    left: -13px;
}

html[dir="rtl"] .timeline-section .timeline-item:nth-child(even) .tl-dot {
    left: auto;
    right: -13px;
}


/* Cards */
html[dir="rtl"] .timeline-section .timeline-item .tl-card {
    text-align: right !important;
}


/* Hover animation */
html[dir="rtl"] .timeline-section .timeline-item:hover .tl-card {
    transform: translateX(-6px);
}

html[dir="rtl"] .timeline-section .timeline-item:nth-child(even):hover .tl-card {
    transform: translateX(6px);
}


/* Check icon */
html[dir="rtl"] .timeline-section .timeline-item.done .tl-dot::after {
    left: 50%;
    right: auto;
}


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

    html[dir="rtl"] .timeline-section .timeline::before {
        left: auto;
        right: 20px;
    }

    html[dir="rtl"] .timeline-section .timeline-item {
        padding: 0 56px 32px 0 !important;
        margin-right: 0 !important;
        text-align: right !important;
    }

    html[dir="rtl"] .timeline-section .timeline-item .tl-dot {
        left: auto !important;
        right: 10px !important;
    }

    html[dir="rtl"] .timeline-section .timeline-item .tl-card {
        text-align: right !important;
    }

}


@media (max-width: 500px) {

    html[dir="rtl"] .timeline-section .timeline::before {
        right: 14px;
    }

    html[dir="rtl"] .timeline-section .timeline-item {
        padding: 0 44px 24px 0 !important;
    }

    html[dir="rtl"] .timeline-section .timeline-item .tl-dot {
        right: 6px !important;
    }

}

.awards-section {
    padding: 80px 0;
    background: #1D3A67;
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(29, 58, 103, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 188, 20, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.awards-section .awards-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Sec Title - CENTERED */
.awards-section .sec-title {
    text-align: center;
    margin-bottom: 50px;
}

.awards-section .sec-title .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: rgba(251, 188, 20, 0.10);
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 12px;
}

.awards-section .sec-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.awards-section .sec-title .sec-lead {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.70);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}


.awards-section .awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.awards-section .award {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 24px 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.awards-section .award::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FBBC14, #F4D35E);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.awards-section .award:hover::before {
    transform: scaleX(1);
}

.awards-section .award:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 188, 20, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.20);
}

.awards-section .award .ic {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
    transition: transform 0.4s ease;
}

.awards-section .award:hover .ic {
    transform: scale(1.10) rotate(-5deg);
}

.awards-section .award h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.awards-section .award p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.60);
    margin: 0;
    line-height: 1.6;
}


@media (max-width: 992px) {
    .awards-section .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .awards-section {
        padding: 60px 0;
    }

    .awards-section .awards-container {
        padding: 0 16px;
    }

    .awards-section .sec-title {
        margin-bottom: 36px;
    }

    .awards-section .sec-title h2 {
        font-size: 30px;
    }

    .awards-section .sec-title .sec-lead {
        font-size: 15px;
    }

    .awards-section .awards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .awards-section .award {
        padding: 28px 18px 24px 18px;
    }

    .awards-section .award .ic {
        font-size: 38px;
    }

    .awards-section .award h3 {
        font-size: 16px;
    }

    .awards-section .award p {
        font-size: 13px;
    }
}

@media (max-width: 500px) {
    .awards-section {
        padding: 40px 0;
    }

    .awards-section .awards-container {
        padding: 0 12px;
    }

    .awards-section .sec-title {
        margin-bottom: 28px;
    }

    .awards-section .sec-title .eyebrow {
        font-size: 10px;
        padding: 4px 14px;
    }

    .awards-section .sec-title h2 {
        font-size: 24px;
    }

    .awards-section .sec-title .sec-lead {
        font-size: 14px;
    }

    .awards-section .awards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .awards-section .award {
        padding: 24px 16px 20px 16px;
        border-radius: 16px;
    }

    .awards-section .award .ic {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .awards-section .award h3 {
        font-size: 15px;
    }

    .awards-section .award p {
        font-size: 12px;
    }
}
    
    /* ============================================
   CONTACT SECTION - LEFT ALIGNED
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 50%;
    background: linear-gradient(180deg, #f8f9fa 0%, transparent 100%);
    pointer-events: none;
}

.contact-section .contact-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Sec Title - LEFT ALIGNED */
.contact-section .sec-title {
    text-align: start !important;
    margin-bottom: 50px;
}

.contact-section .sec-title .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1D3A67;
    background: rgba(29, 58, 103, 0.08);
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 12px;
}

.contact-section .sec-title h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1D3A67;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.contact-section .sec-title .sec-lead {
    font-size: 16px;
    color: #666;
    max-width: 750px;
    margin: 0;
    line-height: 1.6;
}


.contact-section .contact-wrapper {
    text-align: start !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.contact-section .contact-info-side {
    padding: 40px 36px 40px 40px;
    background: #ffffff;
}

.contact-section .contact-info-side .info-header {
    margin-bottom: 28px;
}

.contact-section .contact-info-side .info-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1D3A67;
    margin: 0 0 6px 0;
}

.contact-section .contact-info-side .info-header p {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.6;
}

.contact-section .contact-info-side .info-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-section .contact-info-side .info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: default;
}

.contact-section .contact-info-side .info-item:hover {
    background: #ffffff;
    border-color: rgba(29, 58, 103, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transform: translateX(6px);
}

.contact-section .contact-info-side .info-item .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(29, 58, 103, 0.10), rgba(29, 58, 103, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-section .contact-info-side .info-item:hover .icon-box {
    background: linear-gradient(135deg, rgba(29, 58, 103, 0.18), rgba(29, 58, 103, 0.14));
    transform: scale(1.05);
}

.contact-section .contact-info-side .info-item .info-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1D3A67;
    margin: 0 0 2px 0;
}

.contact-section .contact-info-side .info-item .info-text p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

.contact-section .contact-form-side {
    padding: 40px 40px 40px 36px;
    background: #1D3A67;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-section .contact-form-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(29, 58, 103, 0.10) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(251, 188, 20, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.contact-section .contact-form-side .form-content {
    position: relative;
    z-index: 1;
    max-width: 380px;
}

.contact-section .contact-form-side .form-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 16px;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.contact-section .contact-form-side h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.contact-section .contact-form-side p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.70);
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.contact-section .contact-form-side .btn-contact {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, #1D3A67, #2A4F8A);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(29, 58, 103, 0.30);
}

.contact-section .contact-form-side .btn-contact:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(29, 58, 103, 0.45);
    color: #ffffff;
}

.contact-section .contact-form-side .social-icons {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.contact-section .contact-form-side .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.60);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-section .contact-form-side .social-icons a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.20);
    color: #ffffff;
    transform: translateY(-4px);
}


@media (max-width: 992px) {
    .contact-section .contact-wrapper {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .contact-section .contact-info-side {
        padding: 32px 28px;
    }

    .contact-section .contact-form-side {
        padding: 36px 28px;
        border-radius: 0 0 20px 20px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-section .contact-container {
        padding: 0 16px;
    }

    .contact-section .sec-title {
        margin-bottom: 36px;
    }

    .contact-section .sec-title h2 {
        font-size: 30px;
    }

    .contact-section .sec-title .sec-lead {
        font-size: 15px;
    }

    .contact-section .contact-wrapper {
        border-radius: 16px;
    }

    .contact-section .contact-info-side {
        padding: 24px 20px;
    }

    .contact-section .contact-info-side .info-header h3 {
        font-size: 20px;
    }

    .contact-section .contact-info-side .info-item {
        padding: 14px 16px;
    }

    .contact-section .contact-info-side .info-item .icon-box {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .contact-section .contact-form-side {
        padding: 28px 20px;
    }

    .contact-section .contact-form-side .form-icon {
        font-size: 44px;
    }

    .contact-section .contact-form-side h3 {
        font-size: 20px;
    }

    .contact-section .contact-form-side .btn-contact {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-section .contact-container {
        padding: 0 12px;
    }

    .contact-section .sec-title {
        margin-bottom: 28px;
    }

    .contact-section .sec-title .eyebrow {
        font-size: 10px;
        padding: 4px 14px;
    }

    .contact-section .sec-title h2 {
        font-size: 24px;
    }

    .contact-section .sec-title .sec-lead {
        font-size: 14px;
    }

    .contact-section .contact-wrapper {
        border-radius: 14px;
    }

    .contact-section .contact-info-side {
        padding: 20px 16px;
    }

    .contact-section .contact-info-side .info-header h3 {
        font-size: 18px;
    }

    .contact-section .contact-info-side .info-header p {
        font-size: 13px;
    }

    .contact-section .contact-info-side .info-item {
        padding: 12px 14px;
        border-radius: 12px;
    }

    .contact-section .contact-info-side .info-item .icon-box {
        width: 34px;
        height: 34px;
        font-size: 13px;
        border-radius: 10px;
    }

    .contact-section .contact-info-side .info-item .info-text h4 {
        font-size: 13px;
    }

    .contact-section .contact-info-side .info-item .info-text p {
        font-size: 12px;
    }

    .contact-section .contact-form-side {
        padding: 24px 16px;
    }

    .contact-section .contact-form-side .form-icon {
        font-size: 36px;
    }

    .contact-section .contact-form-side h3 {
        font-size: 18px;
    }

    .contact-section .contact-form-side p {
        font-size: 13px;
    }

    .contact-section .contact-form-side .btn-contact {
        padding: 10px 24px;
        font-size: 13px;
        width: 100%;
    }

    .contact-section .contact-form-side .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}


/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: #f2f0f8;
    position: relative;
}

.cta-section .cta-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-section .cta-banner {
   background: linear-gradient(
    145deg,
    #122643 0%,
    #081727 45%,
    #040C15 100%
);
    border-radius: 28px;
    padding: 60px 50px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.25);
}

.cta-section .cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section .cta-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section .cta-banner .float-icon {
    position: absolute;
    font-size: 55px;
    opacity: 0.15;
    pointer-events: none;
    animation: floatIcon 8s ease-in-out infinite;
}

.cta-section .cta-banner .float-icon--1 {
    top: 15px;
    right: 30px;
    animation-delay: 0s;
    font-size: 70px;
    opacity: 0.18;
}

.cta-section .cta-banner .float-icon--2 {
    bottom: 15px;
    left: 30px;
    animation-delay: 2s;
    font-size: 65px;
    opacity: 0.16;
}

.cta-section .cta-banner .float-icon--3 {
    top: 50%;
    left: 6%;
    animation-delay: 4s;
    font-size: 50px;
    opacity: 0.14;
}

.cta-section .cta-banner .float-icon--4 {
    top: 18%;
    right: 12%;
    animation-delay: 1.5s;
    font-size: 45px;
    opacity: 0.12;
}

.cta-section .cta-banner .float-icon--5 {
    bottom: 28%;
    left: 18%;
    animation-delay: 3.5s;
    font-size: 40px;
    opacity: 0.12;
}

@keyframes floatIcon {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-15px) rotate(5deg) scale(1.05); 
    }
    50% { 
        transform: translateY(-25px) rotate(-3deg) scale(1.1); 
    }
    75% { 
        transform: translateY(-10px) rotate(4deg) scale(1.05); 
    }
}

.cta-section .cta-banner .cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section .cta-banner .cta-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.80);
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 16px;
}

.cta-section .cta-banner h2 {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 14px 0;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #ffffff;
}

.cta-section .cta-banner h2 .highlight {
    background: linear-gradient(135deg, #ffffff, #b0bec5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section .cta-banner .cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.80);
    max-width: 540px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
}

.cta-section .cta-banner .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 22px;
}

.cta-section .cta-banner .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.cta-section .cta-banner .btn-cta i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.cta-section .cta-banner .btn-cta:hover i {
    transform: translateX(4px);
}

.cta-section .cta-banner .btn-cta--primary {
    background: #ffffff;
    color: #2c3e50;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cta-section .cta-banner .btn-cta--primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    color: #2c3e50;
}

.cta-section .cta-banner .btn-cta--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(4px);
}

.cta-section .cta-banner .btn-cta--ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-4px);
    color: #ffffff;
}

.cta-section .cta-banner .cta-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.cta-section .cta-banner .cta-note .arrow {
    display: inline-block;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-section .cta-container {
        padding: 0 16px;
    }

    .cta-section .cta-banner {
        padding: 40px 28px;
        border-radius: 20px;
    }

    .cta-section .cta-banner .float-icon {
        display: none;
    }

    .cta-section .cta-banner h2 {
        font-size: 30px;
    }

    .cta-section .cta-banner .cta-desc {
        font-size: 15px;
    }

    .cta-section .cta-banner .btn-cta {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-section .cta-container {
        padding: 0 12px;
    }

    .cta-section .cta-banner {
        padding: 32px 20px;
        border-radius: 16px;
    }

    .cta-section .cta-banner .cta-badge {
        font-size: 9px;
        padding: 4px 14px;
    }

    .cta-section .cta-banner h2 {
        font-size: 24px;
    }

    .cta-section .cta-banner .cta-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .cta-section .cta-banner .cta-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-section .cta-banner .btn-cta {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 13px;
        justify-content: center;
    }

    .cta-section .cta-banner .cta-note {
        font-size: 12px;
    }
}


@media (max-width: 991px) {
    .main-header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 99999;
        background: #0f0f0f;
    }

    .nav-outer .mobile-nav-toggler {
        display: block !important;
    }

    .main-menu .navigation {
        display: none !important;
    }

    .hero {
        padding-top: 160px !important;
    }

    .main-header .header-upper {
        padding: 5px 15px;
    }

    .main-header .header-upper .logo-outer {
        float: left;
    }


    .main-header .header-upper .nav-outer {
        float: right;
    }

    .main-header .header-top .top-left {
        display: none;
    }

    .main-header .header-top .top-right {
        width: 100%;
        text-align: center;
    }

    .main-header .header-top .info-list {
        float: none;
        display: inline-block;
    }

    .main-header .header-top .info-list li {
        float: none;
        display: inline-block;
        padding: 8px 5px;
        font-size: 12px;
    }

    .main-header .header-top .info-list li a {
        font-size: 12px;
        margin-right: 8px;
        padding-right: 8px;
    }

    .main-header .language {
        float: none;
        display: inline-block;
        margin-left: 0;
        padding: 8px 0;
    }

    .main-header .outer-box {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-header .header-top .info-list li {
        font-size: 10px;
        padding: 5px 3px;
    }

    .main-header .header-top .info-list li a {
        font-size: 10px;
        margin-right: 4px;
        padding-right: 4px;
    }
    

    .nav-outer .mobile-nav-toggler {
        font-size: 24px;
        padding: 8px 5px;
    }

    .hero {
        padding-top: 145px !important;
    }
}



h1,h2,h3,h4,h5,h6 {
	position:relative;
	font-weight:normal;
	margin:0px;
	background:none;
	line-height:1.2em;
	letter-spacing: -0.02em;
}


.form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    overflow-y: auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.form-modal.active {
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
}

.form-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.form-modal-content {
    text-align: start !important;
    position: relative;
    z-index: 1;
    background: #ffffff;
    max-width: 720px;
    width: 100%;
    border-radius: 24px;
    padding: 40px 44px 36px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    margin: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.form-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 2;
}

.form-close:hover {
    color: #1D3A67;
    transform: rotate(90deg);
}

html[dir="rtl"] .form-close {
    right: auto;
    left: 20px; /* Position on left side for RTL */
}


body.no-scroll {
    overflow: hidden;
}


.form-header {
    text-align: start !important;
    margin-bottom: 28px;
    padding-bottom: 0;
    border-bottom: none;
}

.form-header .form-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 4px;
}

.form-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1D3A67;
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
}

.form-header p {
    font-size: 14px;
    color: #888;
    margin: 0;
    font-weight: 400;
}


.form-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.form-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #1D3A67;
    margin-bottom: 0;
}

.form-group label .required {
    color: #e0556b;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 15px;
    border: 2px solid #e6e9ed;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    width: 100%;
    color: #1D3A67;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b5bcc6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1D3A67;
    outline: none;
    box-shadow: 0 0 0 3px rgba(29, 58, 103, 0.08);
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}


.field-hint {
    font-size: 11px;
    color: #999;
    margin-top: 3px;
    font-weight: 400;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option[value=""] {
    color: #b5bcc6;
}

.form-group select option {
    color: #1D3A67;
}


#coauthorsGroup .repeater-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#coauthorsGroup .repeater-item {
    display: flex;
    gap: 8px;
    align-items: center;
}

#coauthorsGroup .repeater-item input {
    flex: 1;
    padding: 11px 15px;
    border: 2px solid #e6e9ed;
    border-radius: 10px;
    font-size: 14px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#coauthorsGroup .repeater-item input:focus {
    border-color: #1D3A67;
    outline: none;
    box-shadow: 0 0 0 3px rgba(29, 58, 103, 0.08);
    background: #ffffff;
}

.btn-remove {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f0f1f3;
    color: #999;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.btn-remove:hover {
    background: #fee;
    color: #e0556b;
}

.btn-add {
    align-self: flex-start;
    padding: 5px 16px;
    border: 2px dashed #1D3A67;
    border-radius: 30px;
    background: none;
    color: #1D3A67;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.btn-add:hover {
    background: #1D3A67;
    color: #ffffff;
    border-style: solid;
}


.radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #1D3A67;
    background: #1D3A67;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
}


.checkbox-group {
    margin-top: 2px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #ccc;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #1D3A67;
    border-color: #1D3A67;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: "\2713";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed #e6e9ed;
    border-radius: 10px;
    padding: 14px 16px;
    text-align: center;
    transition: all 0.3s ease;
    background: #f8f9fa;
    cursor: pointer;
}

.file-upload-wrapper:hover {
    border-color: #1D3A67;
    background: #f0fdfa;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-wrapper .file-name {
    font-size: 14px;
    color: #999;
}


.btn-submit {
    margin-top: 6px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #1D3A67, #2A4F8A);
    color: #ffffff;
    border: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(29, 58, 103, 0.30);
}

.btn-submit i {
    font-size: 15px;
}


@media (max-width: 768px) {
    .form-modal-content {
        padding: 28px 24px 24px;
        border-radius: 20px;
    }
    
    .form-header h2 {
        font-size: 22px;
    }
    
    .form-header p {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 500px) {
    .form-modal {
        padding: 20px 12px;
    }
    
    .form-modal-content {
        padding: 20px 16px 18px;
        border-radius: 16px;
    }
    
    .form-header h2 {
        font-size: 18px;
    }
    
    .form-header p {
        font-size: 12px;
    }
    
    .form-header .form-icon {
        font-size: 28px;
    }
    
    .form-group label {
        font-size: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 9px 11px;
        font-size: 12px;
        border-radius: 8px;
    }
    
    .form-group select {
        padding-right: 34px;
        background-position: right 10px center;
    }
    
    .field-hint {
        font-size: 10px;
    }
    
    .btn-remove {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .btn-add {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .radio-label {
        font-size: 13px;
    }
    
    .checkbox-label {
        font-size: 13px;
    }
    
    .btn-submit {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .file-upload-wrapper .file-name {
        font-size: 12px;
    }
}


.form-group select[multiple] {
    min-height: 100px;
    background-image: none;
    padding-right: 15px;
}

.pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #e6e9ed;
    margin-top: 8px;
    flex-wrap: wrap;
    gap: 12px;
}

.pagination-info {
    font-size: 13px;
    color: #888;
}

.pagination {
    display: flex;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    display: inline-block;
}

.pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid #e6e9ed;
    background: #ffffff;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: #f0f2f5;
    border-color: #1D3A67;
    color: #1D3A67;
}

.pagination .page-link.active {
    background: #1D3A67;
    border-color: #1D3A67;
    color: #ffffff;
    cursor: default;
}

.pagination .page-link i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .pagination-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .pagination-info {
        font-size: 12px;
    }

    .pagination .page-link {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
        padding: 0 8px;
    }
}

@media (max-width: 480px) {
    .pagination .page-link {
        min-width: 28px;
        height: 28px;
        font-size: 11px;
        padding: 0 6px;
    }
}

