@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  width: 100%;
  background-color: #f4f5f9;
  font-family: "Alexandria", sans-serif;
  --primary-blue: #0074de;
  --dark-blue: #02234f;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #f4f5f9 0%, #e8ecf1 100%);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0074de 0%, #2f8de0 100%);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0059b3 0%, #0074de 100%);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #004d99 0%, #0059b3 100%);
  background-clip: padding-box;
}

/* لـ Firefox */
* {
  scrollbar-color: #0074de #f4f5f9;
  scrollbar-width: thin;
}
.container {
  width: 85%;
  margin: 0 auto;
}
.container2 {
  width: 85%;
  margin: 0 auto;
}
.btn-primary {
  --blue-light: #5fb0f0;
  --blue-mid: #2f8de0;
  --blue-deep: #0f5fb5;
  --blue-shadow: #0a3f80;
}

.btn-secondary {
  --blue-light: #34d399;
  --blue-mid: #10b981;
  --blue-deep: #047857;
  --blue-shadow: #065f46;
}
/*.......................................... hero....................................... */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 25px;
  z-index: 1000;
}
.header-glass {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-radius: 20px;
  /* background: rgba(255, 255, 255, 0.16); */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--dark-blue);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: var(--primary-blue);
}
.btn {
  position: relative;
  display: inline-block;
  padding: 10px 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background: linear-gradient(
    180deg,
    var(--blue-light) 0%,
    var(--blue-mid) 45%,
    var(--blue-deep) 100%
  );
  box-shadow:
    0 8px 0 var(--blue-shadow),
    0 14px 18px rgba(10, 63, 128, 0.089),
    inset 0 2px 3px rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.08s ease,
    box-shadow 0.08s ease;
  text-decoration: none;
}
.btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 6%;
  right: 6%;
  height: 42%;
  border-radius: 50px 50px 60% 60% / 50px 50px 100% 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}
.btn:hover {
  transform: translateY(2px);
  box-shadow:
    0 4px 0 #1e40af,
    0 8px 14px rgba(37, 99, 235, 0.3);
}
.btn:active {
  transform: translateY(6px);
  box-shadow:
    0 2px 0 var(--blue-shadow),
    0 4px 8px rgba(10, 63, 128, 0.45),
    inset 0 2px 3px rgba(255, 255, 255, 0.6);
}
/*.......................................... hero....................................... */
.hero {
  width: 100%;
  min-height: 100vh;
  background-image: url("Media/bak.jpeg");
  background-size: cover;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.hero-content {
  width: 100%;
  padding-top: 100px;
}
.hero-content h2 {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--dark-blue);
  margin-bottom: 25px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}
.hero-content h1 {
  font-size: 80px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 25px;
  color: var(--primary-blue);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}
.hero-content p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 500px;
  color: var(--dark-blue);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary img {
  width: 30px;
}
/*.......................................... about....................................... */
.about {
  width: 100%;
  padding: 60px 0;
  background-image: url("Media/bak-Ab.png");
  background-size: cover;
  background-position: 100% 100%;
  background-repeat: no-repeat;
}
.content-about {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.about-intro {
  width: 50%;
  padding: 20px 20px 20px 20px;
}
.about-intro h2 {
  font-size: 25px;
  font-weight: 900;
  color: var(--dark-blue);
  margin-bottom: 16px;
}
.about-intro p {
  font-size: 16px;
  max-width: 500px;
  line-height: 1.8;
  color: var(--dark-blue);
}
.about-features {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 20px;
}
.about-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.about-icon {
  width: 200px;
}
.about-icon img {
  width: 100%;
  height: auto;
  display: block;
}
.about-item h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 6px;
}
.about-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-blue);
}
/*.......................................... services....................................... */
.services {
  padding: 60px 0;
  background-color: #f4f5f9;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}
.services-header h2 {
  font-size: 25px;
  font-weight: 900;
  color: var(--dark-blue);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: linear-gradient(
    300deg,
    rgba(116, 183, 255, 0.264) 0%,
    #f4f5f9 100%
  );
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  min-height: 200px;
  position: relative;
  border: 1px solid transparent;
  background-clip: padding-box;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(60deg, #0073de00 0%, #5fb0f0 50%, #f4f5f9 100%);
  -webkit-mask:
    linear-gradient(#f4f5f9 0 0) content-box,
    linear-gradient(#f4f5f9 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(2, 35, 79, 0.15);
}
.service-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: right;
}
.service-icon {
  position: absolute;
  bottom: 0;
  left: 0;
}
.service-icon img {
  width: 110px;
  opacity: 0.7;
}
.service-card h3 {
  font-size: 16px;
  color: var(--dark-blue);
  margin-bottom: 12px;
  font-weight: 800;
  line-height: 1.8;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-blue);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card .btn {
  align-self: flex-start;
  width: auto;
}

/*............................ modal........................ */
.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    background-color 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}

.modal-content {
  background-color: #fff;
  border-radius: 20px;
  max-width: 800px;
  max-height: 80vh;
  width: 90%;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.85) translateY(20px);
  filter: blur(2px);
  transition:
    opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s,
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s,
    filter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s;
}

/* تنسيق الـ Scrollbar داخل البوب أب */
.modal-content::-webkit-scrollbar {
  width: 10px;
}

.modal-content::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #047857 0%, #065f46 100%);
  background-clip: padding-box;
}

.modal.active .modal-content {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}

/* أنيميشن الدخول السلس */
@keyframes smoothScaleIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
    filter: blur(2px);
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

/* أنيميشن الخروج السلس */
@keyframes smoothScaleOut {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
    filter: blur(2px);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  border-bottom: 1px solid #f0f0f0;
  text-align: right;
}

.modal-header h2 {
  font-size: 24px;
  color: var(--dark-blue);
  font-weight: 900;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--dark-blue);
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--primary-blue);
}

.modal-body {
  padding: 30px;
}

.sub-services-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sub-service-item {
  background: linear-gradient(
    300deg,
    rgba(116, 183, 255, 0.264) 0%,
    #f4f5f9 100%
  );
  border-radius: 15px;
  padding: 16px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid transparent;
  background-clip: padding-box;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  position: relative;
}

.sub-service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(60deg, #0073de00 0%, #5fb0f0 50%, #f4f5f9 100%);
  -webkit-mask:
    linear-gradient(#f4f5f9 0 0) content-box,
    linear-gradient(#f4f5f9 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.sub-service-item:hover {
  transform: translateX(-3px);
  box-shadow: 0 8px 25px rgba(2, 35, 79, 0.12);
}

.sub-service-item h4 {
  font-size: 15px;
  color: var(--dark-blue);
  margin-bottom: 0;
  font-weight: 700;
  flex-grow: 1;
}

.sub-service-item .whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  white-space: nowrap;
  padding: 8px 14px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(180deg, #34d399 0%, #10b981 45%, #047857 100%);
  box-shadow:
    0 6px 0 #065f46,
    0 10px 14px rgba(6, 95, 70, 0.089),
    inset 0 2px 3px rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition:
    transform 0.08s ease,
    box-shadow 0.08s ease;
  position: relative;
  flex-shrink: 0;
}

.sub-service-item .whatsapp-btn::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 8%;
  right: 8%;
  height: 35%;
  border-radius: 50px 50px 60% 60% / 50px 50px 100% 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.sub-service-item .whatsapp-btn:hover {
  transform: translateY(2px);
  box-shadow:
    0 3px 0 #065f46,
    0 6px 10px rgba(16, 185, 129, 0.3);
}

.sub-service-item .whatsapp-btn:active {
  transform: translateY(5px);
  box-shadow:
    0 1px 0 #065f46,
    0 3px 6px rgba(6, 95, 70, 0.45),
    inset 0 2px 3px rgba(255, 255, 255, 0.6);
}

.sub-service-item .whatsapp-btn img {
  width: 16px;
  height: 16px;
}

/*............................ beneficiaries........................ */
.beneficiaries {
  padding: 60px 0;
  overflow: hidden;
  direction: ltr;
}

.beneficiaries-header {
  text-align: center;
  margin-bottom: 60px;
}

.beneficiaries-header h2 {
  font-size: 25px;
  font-weight: 900;
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.beneficiaries-header p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark-blue);
}

/* Logos Ticker - شريط الحركة */
.logos-ticker {
  position: relative;
  overflow: hidden;
}

.logos-track {
  display: flex;
  animation: scrollLogos 40s linear infinite;
  width: fit-content;
  gap: 10px;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding: 20px 0;
}

.logo-box {
  width: 110px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 20px;
  background: linear-gradient(
    300deg,
    rgba(116, 183, 255, 0.264) 0%,
    #f4f5f9 100%
  );
  border-radius: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  border: 1px solid transparent;
  background-clip: padding-box;
  z-index: 1;
  padding: 10px;
  text-align: center;
}

.logo-icon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    300deg,
    rgba(255, 255, 255, 0.264) 0%,
    #f4f5f9 100%
  );
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.184);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.logo-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(60deg, #0073de00 0%, #5fb0f0 50%, #f4f5f9 100%);
  -webkit-mask:
    linear-gradient(#f4f5f9 0 0) content-box,
    linear-gradient(#f4f5f9 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

.logo-box > * {
  position: relative;
  z-index: 1;
}

.logo-item:hover .logo-box {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.184);
}

/* أنيميشن الحركة المستمرة */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2));
  }
}

/* إضافة gradients على الأطراف لتأثير سلس */
.logos-ticker::before,
.logos-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 1;
}

.logos-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #f4f5f9 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-ticker::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #f4f5f9 100%);
}
/* ........................ Why Us Section ........................ */
.why-us {
  width: 100%;
  padding: 60px 0;
  position: relative;
}
.why-us-content {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  gap: 20px;
}
.why-us-contact-box {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background-image: url("Media/bak-whatsapp.jpeg");
  background-size: cover;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  padding: 20px;
}
.contact-card {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contact-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: #f4f5f9;
  margin-bottom: 15px;
  line-height: 1.9;
  text-align: center;
}
.why-us-features {
  width: 50%;
}

.why-us-features h2 {
  font-size: 25px;
  font-weight: 900;
  color: var(--dark-blue);
  margin-bottom: 25px;
  text-align: right;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.feature-card {
  text-align: right;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(
    300deg,
    rgba(116, 183, 255, 0.264) 0%,
    #f4f5f9 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: auto auto;
  gap: 0 10px;
  align-items: start;
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(60deg, #0073de00 0%, #5fb0f0 50%, #f4f5f9 100%);
  -webkit-mask:
    linear-gradient(#f4f5f9 0 0) content-box,
    linear-gradient(#f4f5f9 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 116, 222, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  flex-shrink: 0;
  grid-column: 1;
  grid-row: 1 / 3;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card h4 {
  font-size: 16px;
  color: var(--dark-blue);
  margin-bottom: 10px;
  font-weight: 800;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-blue);
}

/* ........................ Footer Section ........................ */
.footer {
  width: 100%;
  margin-top: 60px;
}
.all-content {
  background: linear-gradient(135deg, #031b3e 0%, #010a17 50%, #041a3f 100%);
  border-radius: 24px 24px 0 0;
  padding: 60px 60px 40px 60px;
  position: relative;
  overflow: hidden;
}
.all-content::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 150, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.all-content::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(100, 200, 255, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Footer Column */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: right;
}
.lin {
  padding-right: 50px;
}
.footer-brand {
  text-align: right;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-direction: row-reverse;
}
.footer-logo img {
  height: 80px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.footer-logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}
.footer-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  max-width: 220px;
  color: #b6b6b6;
}

.footer-column-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  padding-bottom: 25px;
}

.footer-column-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0074de, #5fb0f0);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #b6b6b6;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  display: inline-block;
}

.footer-links li a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0074de, #5fb0f0);
  transition: width 0.3s ease;
}

.footer-links li a:hover {
  color: #00d4ff;
  transform: translateX(-5px);
}

.footer-links li a:hover::before {
  width: 100%;
}

/* Contact Items */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
  padding: 16px;
  background: rgba(0, 116, 222, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(0, 150, 255, 0.15);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(0, 116, 222, 0.15);
  border-color: rgba(0, 150, 255, 0.3);
  transform: translateX(-8px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  background: linear-gradient(
    135deg,
    rgba(0, 116, 222, 0.2) 0%,
    rgba(95, 176, 240, 0.15) 100%
  );
  border: 1.5px solid rgba(0, 150, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.contact-icon i {
  color: #ffffff;
}

.contact-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(0, 212, 255, 0.3),
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: linear-gradient(
    135deg,
    rgba(0, 150, 255, 0.35) 0%,
    rgba(100, 200, 255, 0.25) 100%
  );
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.3);
  transform: scale(1.1);
}

.contact-item:hover .contact-icon::before {
  opacity: 1;
}

.contact-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
}

.contact-text {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.contact-text:hover {
  color: #5fb0f0;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: row;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  color: #ffffff;
}

.social-icon i {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 150, 255, 0.4) 0%,
    rgba(100, 200, 255, 0.2) 100%
  );
  border: 2px solid rgba(0, 212, 255, 0.3);
  transition: all 0.4s ease;
}

.social-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(0, 212, 255, 0.4),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.social-icon:hover::before {
  border-color: rgba(0, 212, 255, 0.8);
  box-shadow:
    0 0 25px rgba(0, 150, 255, 0.5),
    inset 0 0 15px rgba(0, 212, 255, 0.2);
  transform: scale(1.15);
}

.social-icon:hover::after {
  opacity: 1;
}

.social-icon:hover {
  transform: translateY(-8px) scale(1.1);
}

.social-icon.instagram::before {
  background: linear-gradient(
    135deg,
    rgba(245, 119, 182, 0.4) 0%,
    rgba(255, 165, 0, 0.2) 100%
  );
  border-color: rgba(245, 119, 182, 0.5);
}

.social-icon.instagram:hover::before {
  border-color: rgba(245, 119, 182, 0.9);
  box-shadow: 0 0 25px rgba(245, 119, 182, 0.5);
}

.social-icon.linkedin::before {
  background: linear-gradient(
    135deg,
    rgba(0, 119, 181, 0.4) 0%,
    rgba(0, 150, 255, 0.2) 100%
  );
  border-color: rgba(0, 119, 181, 0.5);
}

.social-icon.linkedin:hover::before {
  border-color: rgba(0, 119, 181, 0.9);
  box-shadow: 0 0 25px rgba(0, 119, 181, 0.5);
}

.social-icon.twitter::before {
  background: linear-gradient(
    135deg,
    rgba(29, 161, 242, 0.4) 0%,
    rgba(0, 150, 255, 0.2) 100%
  );
  border-color: rgba(29, 161, 242, 0.5);
}

.social-icon.twitter:hover::before {
  border-color: rgba(29, 161, 242, 0.9);
  box-shadow: 0 0 25px rgba(29, 161, 242, 0.5);
}

.social-icon.portfolio::before {
  background: linear-gradient(
    135deg,
    rgba(52, 211, 153, 0.4) 0%,
    rgba(0, 150, 255, 0.2) 100%
  );
  border-color: rgba(52, 211, 153, 0.5);
}

.social-icon.portfolio:hover::before {
  border-color: rgba(52, 211, 153, 0.9);
  box-shadow: 0 0 25px rgba(52, 211, 153, 0.5);
}
/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(0, 150, 255, 0.2);
  padding-top: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-bottom p {
  font-size: 12px;
  font-weight: 400;
  color: #b6b6b6;
  transition: color 0.3s ease;
}
.footer-bottom p:hover {
  color: #f4f5f9;
}

/* ========================================== RESPONSIVE MOBILE ========================================== */

/* ========================================== HAMBURGER MENU ========================================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-blue);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 998;
  transition: background-color 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Tablets - 768px and down */
@media (max-width: 768px) {
  .container {
    width: 90%;
  }

  .hamburger {
    display: flex;
  }

  #headerBtn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    max-width: 100%;
    height: 94vh;
    background: #ffffff;
    flex-direction: column;
    padding: 40px;
    gap: 20px;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    text-align: center;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 24px;
    font-weight: 900;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--dark-blue);
  }

  .nav-links a:hover {
    color: var(--primary-blue);
    padding-right: 10px;
    transition: all 0.3s ease;
  }
  .logo img {
    height: 30px;
  }
  .hero {
    background-image: url("Media/bak2.jpeg");
    background-position: center;
  }
  .hero-content {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90vh;
    text-align: center;
  }
  .hero-content h2 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  .hero-content h1 {
    font-size: 35px;
    margin-bottom: 0px;
  }
  .hero-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .hero-actions {
    justify-content: center;
  }
  .btn {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
  }
  .btn-secondary img {
    width: 20px;
  }
  .about {
    padding: 50px 0;
    background-image: none;
  }
  .content-about {
    gap: 0px;
    flex-direction: column-reverse;
  }
  .container2 {
    width: 100%;
    margin: 0 auto;
  }
  .about-intro {
    width: 100%;
    padding: 50px 30px;
    background-image: url("Media/bak-Ab2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .about-intro h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .about-intro p {
    font-size: 14px;
    max-width: 100%;
  }
  .about-features {
    width: 100%;
    padding: 50px 15px 0 15px;
    background-image: url("Media/bak-Ab3.png");
    background-size: cover;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 10px;
  }
  .about-item {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
  }
  .about-icon {
    width: 100px;
  }
  .about-item h3 {
    font-size: 14px;
  }
  .about-item p {
    font-size: 12px;
  }
  .services {
    padding: 50px 0;
  }
  .services-header h2 {
    font-size: 20px;
  }
  .service-card h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .service-card p {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .service-card {
    padding: 20px;
    min-height: 190px;
  }
  .service-icon img {
    width: 120px;
  }
  .modal-header {
    padding: 20px;
  }
  .modal-header h2 {
    font-size: 12px;
    line-height: 1.8;
  }
  .modal-body {
    padding: 10px;
  }
  .sub-service-item {
    padding: 15px 10px;
    gap: 0px;
  }
  .sub-service-item h4 {
    font-size: 12px;
    line-height: 1.8;
  }
  .beneficiaries {
    padding: 50px 0;
  }
  .beneficiaries-header h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .beneficiaries-header p {
    font-size: 12px;
  }
  .beneficiaries-header {
    margin-bottom: 15px;
  }
  .logos-ticker::before,
  .logos-ticker::after {
    width: 20px;
  }
  .why-us-features {
    width: 100%;
  }
  .why-us {
    padding: 50px 0;
  }
  .why-us-content {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .why-us-features h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .why-us-contact-box {
    width: 100%;
    border-radius: 25px;
    padding: 50px 15px;
  }
  .features-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .feature-card {
    padding: 15px;
    gap: 0 0px;
    grid-template-columns: 70px 1fr;
  }
  .feature-card h4 {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .feature-card p {
    font-size: 12px;
  }
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  .contact-card h3 {
    font-size: 11px;
  }
  .footer {
    margin-top: 0px;
  }
  .footer-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-bottom: 50px;
  }
  .all-content {
    padding: 30px;
  }
  .footer-description {
    font-size: 12px;
    max-width: 270px;
  }
  .lin {
    padding-right: 0px;
  }
  .footer-links li a {
    font-size: 12px;
  }
  .footer-column-title {
    font-size: 14px;
  }
  .footer-bottom p {
    font-size: 9px;
  }
}
