@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap");

/* Floating Invest App Button */
.invest-app-button {
  position: fixed;
  left: 30px;
  bottom: 30px;
  background: linear-gradient(135deg, #171712 0%, #2a2a23 50%, #171712 100%);
  color: #efff06;
  padding: 18px 25px;
  border: 2px solid #efff06;
  border-radius: 50px;
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(239, 255, 6, 0.4);
  animation:
    slideInBounce 1s ease-out,
    floatButton 3s ease-in-out infinite 1s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.invest-app-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(239, 255, 6, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.invest-app-button:hover::before {
  left: 100%;
}

.invest-app-button i {
  font-size: 20px;
  animation: pulse 2s infinite;
}

.invest-app-button:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 35px rgba(239, 255, 6, 0.6);
  background: linear-gradient(135deg, #2a2a23 0%, #171712 50%, #2a2a23 100%);
}

.invest-app-button:hover i {
  animation: rotate 0.6s ease-in-out;
}

@keyframes slideInBounce {
  0% {
    transform: translateX(-200px) scale(0.8);
    opacity: 0;
  }
  60% {
    transform: translateX(20px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes floatButton {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Mobile responsive for invest button */
@media (max-width: 1200px) {
  .invest-app-button {
    left: 25px;
    bottom: 25px;
    font-size: 15px;
    padding: 16px 22px;
  }

  .invest-app-button i {
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  .invest-app-button {
    left: 20px;
    bottom: 20px;
    font-size: 14px;
    padding: 15px 20px;
    border-radius: 40px;
  }

  .invest-app-button i {
    font-size: 18px;
  }

  @keyframes slideInBounce {
    0% {
      transform: translateX(-150px) scale(0.8);
      opacity: 0;
    }
    60% {
      transform: translateX(15px) scale(1.1);
      opacity: 1;
    }
    100% {
      transform: translateX(0) scale(1);
      opacity: 1;
    }
  }
}

@media (max-width: 480px) {
  .invest-app-button {
    left: 15px;
    bottom: 15px;
    font-size: 12px;
    padding: 12px 16px;
    border-radius: 35px;
    gap: 8px;
  }

  .invest-app-button i {
    font-size: 16px;
  }

  @keyframes slideInBounce {
    0% {
      transform: translateX(-120px) scale(0.8);
      opacity: 0;
    }
    60% {
      transform: translateX(10px) scale(1.1);
      opacity: 1;
    }
    100% {
      transform: translateX(0) scale(1);
      opacity: 1;
    }
  }
}

@media (max-width: 360px) {
  .invest-app-button {
    left: 10px;
    bottom: 10px;
    font-size: 11px;
    padding: 10px 14px;
    border-radius: 30px;
    gap: 6px;
  }

  .invest-app-button i {
    font-size: 14px;
  }
}

/* Extra large screens */
@media (min-width: 1400px) {
  .invest-app-button {
    left: 40px;
    bottom: 40px;
    font-size: 18px;
    padding: 20px 30px;
  }

  .invest-app-button i {
    font-size: 22px;
  }
}

/* Loading Screen Styles */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #171712 0%, #2a2a23 50%, #171712 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

.loading-screen.fade-out {
  animation: fadeOut 0.8s ease-out forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.logo-container {
  position: relative;
  margin-bottom: 40px;
}

.loading-logo {
  width: 120px;
  height: auto;
  animation:
    logoFloat 3s ease-in-out infinite,
    logoGlow 2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 20px rgba(239, 255, 6, 0.3));
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(239, 255, 6, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 40px rgba(239, 255, 6, 0.8));
  }
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(239, 255, 6, 0.2) 0%,
    transparent 70%
  );
  animation: glowPulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.loading-text h2 {
  color: #efff06;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: textSlideIn 1s ease-out 0.5s both;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes textSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 0 auto 20px;
  overflow: hidden;
  position: relative;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, #efff06, #8f9543);
  border-radius: 2px;
  animation: loadingProgress 2.5s ease-in-out 0.8s forwards;
  width: 0%;
  box-shadow: 0 0 10px rgba(239, 255, 6, 0.5);
}

@keyframes loadingProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.loading-text p {
  color: #cccccc;
  font-size: 16px;
  opacity: 0;
  animation: textFadeIn 1s ease-out 1.5s forwards;
}

@keyframes textFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.loading-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #efff06;
  border-radius: 50%;
  opacity: 0;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation: particleFloat 4s ease-in-out 0s infinite;
}

.particle:nth-child(2) {
  top: 30%;
  right: 15%;
  animation: particleFloat 4s ease-in-out 0.5s infinite;
}

.particle:nth-child(3) {
  bottom: 25%;
  left: 20%;
  animation: particleFloat 4s ease-in-out 1s infinite;
}

.particle:nth-child(4) {
  bottom: 35%;
  right: 25%;
  animation: particleFloat 4s ease-in-out 1.5s infinite;
}

.particle:nth-child(5) {
  top: 45%;
  left: 5%;
  animation: particleFloat 4s ease-in-out 2s infinite;
}

.particle:nth-child(6) {
  top: 55%;
  right: 10%;
  animation: particleFloat 4s ease-in-out 2.5s infinite;
}

@keyframes particleFloat {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0px) scale(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }
  80% {
    opacity: 1;
    transform: translateY(-40px) scale(1);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Alexandria", sans-serif;
}
html,
body {
  overflow-x: hidden;
  background-color: #171712;
}
.container {
  width: 85%;
  margin: auto;
}
/* Header */
/****************************************************************************/
.content-header {
  position: fixed;
  z-index: 100;
  width: 85%;
  margin: auto;
  padding: 30px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo */
.logo {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 45px;
  display: block;
}
/* Menu */
.nav ul {
  display: flex;
  gap: 25px;
  background: rgba(0, 0, 0, 0.212); /* لون شفاف */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* Safari */
  padding: 10px 30px;
  border-radius: 30px;
}
.nav ul li {
  transition: 0.3s;
  list-style: inside;
}
.nav ul li::marker {
  color: #efff06;
}
.nav a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: 0.3s;
  padding: 5px 10px;
}
.nav a:hover {
  padding: 5px 10px;
  border-radius: 30px;
  background-color: #efff0624;
}
/* Button */
.header-btn {
  padding: 10px 22px;
  background: #efff06;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  transition: 0.3s;
  font-weight: 500;
}
.header-btn:hover {
  transform: scale(0.95);
}
.rolling-text {
  display: inline-flex;
  overflow: hidden;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}
/* كل حرف */
.rolling-text span {
  position: relative;
  display: block;
  height: 24px;
  overflow: hidden;
  /* ❗ إخفاء النص الأصلي */
  color: transparent;
}
/* الحرف الأساسي (فوق) */
.rolling-text span::before {
  content: attr(data-letter);
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
  transition: transform 0.4s ease;
}
/* الحرف البديل (تحت) */
.rolling-text span::after {
  content: attr(data-letter);
  position: absolute;
  left: 0;
  top: 100%;
  color: #ffffff;
  transition: transform 0.4s ease;
}
/* Header Get Started button - Pink */
.header-btn.rolling-text span::before,
.header-btn.rolling-text span::after {
  color: #333333;
}

/* Box4 Donate button - Lime */
.header-btn4.rolling-text span::before,
.header-btn4.rolling-text span::after {
  color: #333333;
}
/* Hover animation */
.rolling-text:hover span::before {
  transform: translateY(-100%);
}
.rolling-text:hover span::after {
  transform: translateY(-100%);
}
/* Delay لكل حرف */
.rolling-text span:nth-child(1)::before,
.rolling-text span:nth-child(1)::after {
  transition-delay: 0s;
}
.rolling-text span:nth-child(2)::before,
.rolling-text span:nth-child(2)::after {
  transition-delay: 0.05s;
}
.rolling-text span:nth-child(3)::before,
.rolling-text span:nth-child(3)::after {
  transition-delay: 0.1s;
}
.rolling-text span:nth-child(4)::before,
.rolling-text span:nth-child(4)::after {
  transition-delay: 0.15s;
}
.rolling-text span:nth-child(5)::before,
.rolling-text span:nth-child(5)::after {
  transition-delay: 0.2s;
}
/* إخفاء الهامبورجر في النسخة الديسكتوب */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.4s ease;
}
/* عند فتح القائمة، نضيف class 'active' للهامبورجر */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* إخفاء القائمة في الموبايل */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }
  .content-header {
    width: 100%;
    position: relative;
    padding: 15px 0px;
  }
  .nav {
    position: absolute;
    top: 80px;
    right: 0;
    width: 300px;
    height: calc(100vh - 80px);
    transform: translateX(200%);
    transition: transform 0.3s ease;
    flex-direction: column;
    padding: 20px;
    z-index: 99;
  }

  .nav.active {
    transform: translateX(0);
  }
  .hamburger {
    display: flex;
  }

  .content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .header-btn {
    display: none; /* لو تحب يظهر زر داخل القائمة يمكن تعديله */
  }
}

/* Hero Section */
/****************************************************************************/
.hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 140px 0px 0px 0px;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("img/hero-bak.svg");
  background-position: left 8% bottom 22%;
  background-repeat: no-repeat;
  background-size: 200px auto;
  opacity: 0.3; /* درجة الشفافية للصورة فقط */
  z-index: 1;
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 85% 5%,
      rgba(239, 255, 6, 0.12) 0%,
      transparent 25%
    ),
    radial-gradient(
      ellipse at 15% 50%,
      rgba(239, 255, 6, 0.15) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}
/* Content */
.hero .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-content {
  width: 40%;
}
.hero-title h1 {
  font-size: 40px;
  font-weight: 500;
  color: #ffffff;
}
.text-lan {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 40px;
  line-height: 55px;
  font-weight: 500;
  margin-bottom: 100px;
  color: rgb(184, 184, 184);
}
.lan {
  width: 80px;
  height: 2px;
  background-color: rgb(102, 102, 102);
}
.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #d3d2d2;
  margin-bottom: 35px;
}
/* Buttons */
.header-btn2 {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 0px 0px 0px 20px;
  background: #efff0624;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  transition: 0.3s;
  font-weight: 500;
}
.header-btn2:hover {
  transform: scale(0.95);
}
.icon-but {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #efff06;
  height: 50px;
  width: 50px;
  margin-left: 10px;
  border-radius: 100%;
}
.hero-actions a i {
  color: #333333;
  transform: rotate(-45deg);
  transition: 0.3s;
}
.hero-actions a:hover i {
  transform: rotate(0deg);
}
/* Image */
.hero-image {
  height: 100%;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("img/hero-bak.svg"), url("img/hero-bak.svg");
  background-position:
    left top,
    right bottom;
  background-repeat: no-repeat;
  background-size:
    200px auto,
    200px auto;
  opacity: 0.3; /* درجة الشفافية للصور فقط */
  z-index: 1;
  pointer-events: none;
}
.hero-image img {
  width: 100%;
  transform: scale(1.4);
  margin-left: -100px;
  transition: transform 0.2s ease;
  z-index: 2;
}
/* Hero Description */
.hero-dscr {
  width: 20%;
}
.hero-dscr svg {
  margin-bottom: 20px;
}
.crosshair line,
.crosshair circle {
  stroke: #efff06;
  stroke-width: 1.5;
  fill: #efff06;
  animation: pulse 1.2s infinite;
}
.hero-dscr p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  color: #dcdcdc;
  margin-bottom: 30px;
}
.img-num {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.images {
  display: flex;
  align-items: center;
}
.images img {
  width: 40px;
  border-radius: 100%;
}
.images img:nth-child(1) {
  margin-left: 0px;
}

.images img:nth-child(2) {
  margin-left: -12px;
}

.images img:nth-child(3) {
  margin-left: -12px;
}
.img-num h3 {
  font-size: 40px;
  font-weight: 400;
  color: #ffffff;
}
/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    background-position: left 8% bottom 0%;
    padding: 50px 0px 0px 0px;
  }
  .hero .content {
    flex-direction: column;
  }
  .hero-content {
    width: 100%;
    margin-bottom: 80px;
  }
  .hero-title h1 {
    font-size: 25px;
    text-align: center;
  }
  .text-lan {
    justify-content: center;
    gap: 10px;
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  .lan {
    width: 40px;
  }
  .hero-content p {
    font-size: 14px;
    margin-bottom: 35px;
  }
  .header-btn2 {
    margin: auto;
    padding: 0px 0px 0px 20px;
  }
  .hero-image {
    width: 100%;
    margin-bottom: 0px;
  }
  .hero-image img {
    width: 80%;
    margin-left: 0px;
  }
  .hero-dscr {
    width: 100%;
  }
  .hero-dscr p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
  }
  .img-num {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
  }
  .images {
    display: flex;
    align-items: center;
  }
  .images img {
    width: 40px;
    border-radius: 100%;
  }
  .img-num {
    justify-content: center;
  }
}
/* Yellow Section */
/****************************************************************************/
.yellow-section {
  padding: 0px 0px 80px 0px;
}
.content-yellow {
  position: relative;
  background: radial-gradient(
    circle at bottom center,
    #efff06a8 20%,
    #efff06 50%,
    #efff06 70%,
    #efff06 100%
  );
  text-align: center;
  overflow: hidden;
  border-radius: 30px;
  padding: 0px 0px 50px 0px;
  margin-top: -40px;
}
.content-yellow::before,
.content-yellow::after {
  content: "";
  position: absolute;
  top: 0;
  width: 400px; /* عرض الظل */
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.content-yellow::before {
  left: 0;
  background: linear-gradient(to right, #efff06b8, transparent);
}
.content-yellow::after {
  right: 0;
  background: linear-gradient(to left, #efff06b8, transparent);
}
/* شريط الأخبار */
.news-ticker {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
}
.news-ticker p {
  display: inline-block;
  white-space: nowrap;
  font-size: 124px;
  font-weight: 900;
  padding: 40px 0px;
  color: #333333;
  text-transform: uppercase;
  animation: ticker 300s linear infinite;
  transform: translateX(0%); /* يبدأ من منتصف النص */
}
@keyframes ticker {
  0% {
    transform: translateX(0%); /* البداية من منتصف النص */
  }
  100% {
    transform: translateX(-100%); /* ينتهي خارج الشاشة */
  }
}
.section-title hr {
  width: 65%;
  height: 1px;
  border: none;
  margin: 0 auto 80px;
  background: linear-gradient(to right, transparent, #33333366, transparent);
}
.section-title h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  color: #333333;
  margin-bottom: 60px;
}
.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.logos img {
  width: 80px;
  height: auto;
  transition: transform 0.3s;
}
.logos img:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .yellow-section {
    padding: 0px 0px 50px 0px;
  }
  .content-yellow {
    margin-top: 0px;
  }
  .content-yellow::before,
  .content-yellow::after {
    width: 100px; /* عرض الظل */
  }
  .news-ticker p {
    font-size: 70px;
    padding: 20px 0px;
  }
  .section-title hr {
    width: 75%;
    margin: 0 auto 30px;
  }
  .section-title h2 {
    font-size: 10px;
    line-height: 18px;
    margin-bottom: 10px;
  }
  .logos {
    gap: 10px;
  }
  .logos img {
    width: 30px;
  }
}

/* Features Section */
/****************************************************************************/
.features-section {
  padding: 80px 0px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 15% 75%,
      rgba(239, 255, 6, 0.12) 0%,
      transparent 25%
    ),
    radial-gradient(
      ellipse at 85% 50%,
      rgba(239, 255, 6, 0.15) 0%,
      transparent 25%
    );
  pointer-events: none;
  z-index: 0;
}
.sb-ti {
  display: inline-block;
  border: 1px solid #efff06;
  border-radius: 30px;
  padding: 5px 20px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 14px;
}
.section-title {
  font-size: 52px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #ffffff;
}
.section-title span {
  color: #efff06;
}
.boxs {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px 0px;
}
.box1 {
  width: 49%;
  padding: 40px 50px;
  background-color: #efff0620;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  color: white;
}
.box1::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("./img/bbbk.png");
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: bottom right;
  opacity: 0.2; /* درجة الشفافية للصورة */
  pointer-events: none; /* علشان ما تمنعش تفاعل المستخدم مع المحتوى */
}
.image-box1 {
  width: 100%;
  margin-bottom: 50px;
}
.icon-box1,
.icon-box2 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.icon-box1 i,
.icon-box2 i {
  font-size: 25px;
  height: 55px;
  width: 55px;
  color: #171712;
  background: linear-gradient(135deg, #efff06, #8f9543, #efff06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 20px rgba(239, 255, 6, 0.4),
    inset 0 0 15px rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(239, 255, 6, 0.4);
}
.icon-box1 i:nth-child(1) {
  margin-bottom: -100px;
}
.icon-box1 i:nth-child(3) {
  margin-bottom: -100px;
}
.icon-box2 i:nth-child(1) {
  margin-top: -100px;
}
.icon-box2 i:nth-child(3) {
  margin-top: -100px;
}
.image-box1 img {
  width: 60%;
  margin: 20px 0;
  border-radius: 25px;
  transform: rotate(-3deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.box1 h1 {
  text-align: start;
  font-size: 22px;
  margin-bottom: 10px;
}
.box1 p {
  text-align: start;
  font-size: 14px;
}
.box2 {
  width: 49%;
  padding: 40px 50px;
  background-color: #efff0620;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  color: white;
}

.box2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("./img/bbbk2.png"); /* نفس الصورة أو صورة مختلفة */
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: top right;
  opacity: 0.2; /* درجة الشفافية */
  pointer-events: none;
}

.box2 h1 {
  text-align: start;
  font-size: 22px;
  margin-bottom: 10px;
}
.box2 p {
  text-align: start;
  font-size: 14px;
}
.image-box2 {
  width: 100%;
  margin-top: 35px;
  margin-bottom: 50px;
}
.image-box2 img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 40px;
}
.im1 {
  position: relative;
  z-index: 2;
  width: 100%;
}
.im2 {
  position: relative;
  z-index: 1;
  width: 85%;
  margin-top: -50px;
}
.im3 {
  width: 70%;
  margin-top: -50px;
}
.box3 {
  width: 59%;
  padding: 40px 50px 0 50px;
  background-color: #efff0620;
  border-radius: 20px;
  display: flex;
  align-items: start;
  position: relative;
  overflow: hidden;
  color: white;
}

.box3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("./img/bbbk3.png"); /* ممكن نفس الصورة أو صورة مختلفة */
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: bottom left;
  opacity: 0.2; /* درجة الشفافية */
  pointer-events: none;
}

.title-box3 {
  width: 50%;
}
.box3 h1 {
  text-align: start;
  font-size: 22px;
  margin-bottom: 10px;
}
.box3 p {
  text-align: start;
  font-size: 14px;
}
.image-box3 {
  width: 50%;
  display: flex;
  justify-content: end;
}
.image-box3 img {
  width: 100%;
}
.box4 {
  width: 39%;
  padding: 40px 50px;
  background-color: #eeff06;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.content-box4 {
  padding-top: 150px;
}
.box4 h1 {
  text-align: start;
  font-size: 30px;
  margin-bottom: 30px;
}
.header-btn4 {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 10px 20px;
  background: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  transition: 0.3s;
  font-weight: 500;
}
.header-btn4:hover {
  transform: scale(0.95);
}
.image-box4 {
  width: 35%;
  display: flex;
  align-items: start;
}
.image-box4 img {
  width: 100%;
}
@media (max-width: 768px) {
  .features-section {
    padding: 50px 0px;
  }
  .sb-ti {
    margin-bottom: 10px;
    font-size: 10px;
  }
  .section-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .boxs {
    flex-direction: column;
  }
  .box1 {
    width: 100%;
    padding: 20px;
  }
  .image-box1 img {
    width: 90%;
    padding: 70px 0;
    border-radius: 10px;
    transform: rotate(-90deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
  }
  .box1 h1 {
    font-size: 14px;
  }
  .box2 {
    width: 100%;
    padding: 20px;
  }
  .box2 h1 {
    font-size: 14px;
  }
  .box3 {
    width: 100%;
    padding: 20px 20px 0 20px;
  }
  .box3 h1 {
    font-size: 14px;
  }
  .box4 {
    width: 100%;
    padding: 20px;
  }
  .box1 p {
    font-size: 10px;
  }
  .box2 p {
    font-size: 10px;
  }
  .box3 p {
    font-size: 10px;
  }
  .icon-box1 i,
  .icon-box2 i {
    font-size: 18px;
    height: 45px;
    width: 45px;
  }
  .box4 h1 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .header-btn4 {
    padding: 8px 12px;
    font-size: 14px;
  }
}
/* services-sec */
/****************************************************************************/
.services-sec {
  position: relative;
  padding: 80px 0px 0px 0px;
  overflow: hidden;
}
.services-sec::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(
    to top,
    rgb(23, 23, 18) 0%,
    rgba(23, 23, 18, 0.86) 30%,
    rgba(23, 23, 18, 0.475) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 10;
}

.services-title {
  font-size: 52px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: white;
  text-align: center;
}
.services-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}
.service-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 16px;
  background-color: #efff061d;
  color: white;
}
.service-card i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #efff06, #8f9543);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #171712;
  box-shadow: 0 5px 15px rgba(239, 255, 6, 0.4);
  transition: all 0.4s ease;
}

.service-card:hover i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(239, 255, 6, 0.6);
}
.service-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
}
.service-card p {
  font-size: 14px;
}
.services-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  overflow: hidden;
}
/* الصورة */
.im-vd {
  width: 420px; /* نفس عرض الصورة */
  height: 450px; /* ارتفاع يظهر الجزء اللي عايزه */
  overflow: hidden; /* يخفي باقي الصورة تحت */
  position: relative;
  z-index: 2;
}
.media-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.mockup-video {
  position: absolute;
  top: 2.2%;
  left: 3%;
  width: 93%;
  height: 150%;
  object-fit: cover;
  border-radius: 65px 65px 0 0;
  z-index: 999;
}
/* النصوص */
.media-text {
  position: absolute;
  top: 40px;
  opacity: 0;
  z-index: 1;
}
.media-left {
  padding-top: 100px;
  left: 70%;
  transform: translateX(-50%);
}
.media-right {
  right: 15%;
  transform: translateX(-50%);
}
.media-text p {
  font-size: 125px;
  font-weight: 600;
  line-height: 1.2;
  color: #eeff06;
}
/* responsive */
@media (max-width: 768px) {
  .services-sec {
    padding: 50px 0px 0px 0px;
  }
  .services-sec::after {
    bottom: 22px;
  }
  .services-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .services-cards {
    gap: 20px;
  }
  .service-card {
    padding: 10px;
    width: 100%;
  }
  .service-card h4 {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .service-card p {
    font-size: 10px;
  }
  .im-vd {
    width: 250px; /* نفس عرض الصورة */
    height: 350px; /* ارتفاع يظهر الجزء اللي عايزه */
  }
  .mockup-video {
    top: 1.7%;
    border-radius: 40px 40px 0 0;
  }
  .media-left {
    left: 90%;
  }
  .media-right {
    right: 20%;
  }
  .media-text p {
    font-size: 60px;
  }
}
/* reveal-section */
/****************************************************************************/
.reveal-section {
  padding: 0 0 80px 0;
  margin-top: 160px;
  text-align: center;
}
.reveal-boxes {
  position: relative;
  height: 460px; /* لازم ارتفاع */
}
.reveal-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1; /* مش 10 */
  border-radius: 24px;
  overflow: hidden;
  padding: 30px;
  background-color: #2f3111;
}
.box-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 160px;
  text-align: start;
  overflow: hidden;
}
.box-img {
  width: 32%;
  border-radius: 24px;
}
.box-text {
  flex: 1;
}
.title-dot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.dot {
  width: 8px;
  height: 8px;
  background-color: #eeff06;
  border-radius: 50%;
}
.box-text h3 {
  margin: 0;
  font-size: 14px;
  color: #eeff06;
}
.box-text h1 {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 20px;
  color: white;
}
.box-text p {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 20px;
  color: #bfbfbf;
}
.box-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: white;
}
.box-text ul li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 5px;
  font-size: 18px;
}

.box-text ul li i {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #efff06, #8f9543);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #171712;
  box-shadow: 0 3px 10px rgba(239, 255, 6, 0.4);
  transition: all 0.4s ease;
}

.box-text ul li:hover i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 15px rgba(239, 255, 6, 0.6);
}
@media (max-width: 768px) {
  .reveal-section {
    padding: 0 0 380px 0;
    margin-top: 100px;
  }
  .box-content {
    gap: 20px;
    flex-direction: column;
  }
  .box-img {
    width: 100%;
  }
  .title-dot {
    margin-bottom: 10px;
  }
  .box-text h1 {
    font-size: 25px;
  }
  .box-text p {
    font-size: 14px;
  }
  .box-text ul li {
    font-size: 14px;
  }
}
/* stats-section */
/****************************************************************************/
.stats-section {
  padding: 80px 0;
  text-align: center;
}
.row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.row2 {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.boxf {
  border: 1px solid #a5b103;
  border-radius: 100px;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.boxf img {
  width: 50px;
  opacity: 0.4;
}
.box {
  border-radius: 100px;
  width: 60%;
  border: 1px solid #a5b103;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px;
  background-color: #efff061d;
  color: white;
}
.box22 {
  border-radius: 100px;
  width: 40%;
  border: 1px solid #a5b103;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px;
  color: white;
}
.b1 {
  background-color: #efff061d;
}
.b2 {
  background: linear-gradient(135deg, #efff06 0%, #8f9543 50%, #000000 100%);
}

.boxf2 {
  border: 1px solid #a5b103;
  border-radius: 100px;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.boxf2 img {
  width: 80px;
  opacity: 0.4;
}
.counter {
  font-size: 52px;
  font-weight: bold;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.arrow {
  font-size: 80px;
  margin-bottom: 10px;
  font-weight: bold;
  margin-right: 10px;
}
.percent {
  font-size: 44px;
}
.box22 p,
.box p {
  width: 50%;
  text-align: start;
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  color: #cccccc;
  margin-left: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .stats-section {
    padding: 50px 0;
  }
  .row {
    flex-direction: column;
  }
  .row2 {
    flex-direction: column;
  }
  .boxf {
    display: none;
  }
  .box {
    width: 100%;
    padding: 10px 10px;
  }
  .box22 {
    width: 100%;
    padding: 10px 10px;
  }
  .boxf2 {
    display: none;
  }
  .counter {
    font-size: 32px;
    width: 50%;
  }
  .arrow {
    font-size: 50px;
  }
  .percent {
    font-size: 24px;
  }
  .box22 p,
  .box p {
    margin-left: 0px;
  }
}
/* timeline-section */
/****************************************************************************/
.timeline-section {
  text-align: center;
  padding: 80px 0;
}
.contain-timeline-section {
  padding: 80px;
  border-radius: 40px;
  background-color: #efff061d;
}
.timeline {
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-image {
  width: 40%;
}
.timeline-image img {
  width: 60%;
  transition: opacity 0.5s ease;
}
.timeline-items {
  width: 60%;
  position: relative;
}

.timeline-items::before {
  content: "";
  position: absolute;
  left: 10%;
  top: -10%;
  width: 1px;
  height: 100%;
  background: #eeff06;
}
.timeline-item {
  display: flex;
  text-align: left;
  gap: 60px;
  margin-bottom: 80px;
  opacity: 0.4;
  transition: 0.4s;
  color: white;
}
.timeline-item.active {
  opacity: 1;
}
.timeline-number {
  font-size: 28px;
  font-weight: bold;
  color: #000000;
  height: 60px;
  width: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-item.active .timeline-number {
  color: #333333;
  background-color: #eeff06;
}
.timeline-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.timeline-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
@media (max-width: 768px) {
  .timeline-section {
    padding: 50px 0;
  }
  .contain-timeline-section {
    padding: 20px;
  }
  .timeline {
    /* flex-direction: column-reverse; */
    gap: 20px;
  }
  .timeline-image {
    width: 30%;
  }
  .timeline-image img {
    width: 100%;
  }
  .timeline-items {
    width: 70%;
  }
  .timeline-item {
    gap: 10px;
    margin-bottom: 15px;
  }
  .timeline-items::before {
    left: 17%;
    top: 0%;
    height: 96%;
  }
  .timeline-number {
    font-size: 25px;
    height: 30px;
    width: 100px;
  }
  .timeline-content p {
    font-size: 10px;
    line-height: 14px;
  }
  .timeline-content h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
/* reviews-section */
/****************************************************************************/
.reviews-section {
  padding: 80px 0;
  overflow: hidden;
}
.contain-reviews-section {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.reviews-header {
  width: 40%;
}
.reviews-columns {
  display: flex;
  width: 60%;
  gap: 30px;
  height: 520px;
  overflow: hidden;
  position: relative;
}

/* ظل من فوق */
.reviews-columns::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px; /* ارتفاع الظل */
  background: linear-gradient(to bottom, rgb(23, 23, 18), transparent);
  pointer-events: none;
  z-index: 2;
}

/* ظل من تحت */
.reviews-columns::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px; /* ارتفاع الظل */
  background: linear-gradient(to top, rgb(23, 23, 18), transparent);
  pointer-events: none;
  z-index: 2;
}

.reviews-column {
  flex: 1;
  overflow: hidden;
}
.review-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-card {
  background-color: #efff0620;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}
.review-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
.review-name {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: white;
}
.review-line {
  width: 40px;
  height: 3px;
  background-color: #eeff06;
  margin: 12px auto;
  border-radius: 10px;
}
.review-text {
  font-size: 15px;
  line-height: 24px;
  color: white;
  margin-bottom: 15px;
}
.review-stars i {
  color: #f7c600;
  font-size: 16px;
}
@media (max-width: 768px) {
  .reviews-section {
    padding: 0px 0;
  }
  .contain-reviews-section {
    flex-direction: column;
  }
  .reviews-header {
    width: 100%;
  }
  .reviews-columns {
    width: 100%;
    gap: 20px;
  }
  .review-card {
    padding: 15px 10px;
  }
}
/* faq-section */
/****************************************************************************/
.faq-section {
  padding: 80px 0px;
}
/* السؤال */
.faq-item {
  background: #efff0620;
  border-radius: 14px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: white;
}

.faq-question .icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

/* الإجابة */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: #cdcdcd;
  line-height: 1.6;
}

/* الحالة المفتوحة */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0px;
  }
  .faq-question {
    padding: 10px;
    font-size: 10px;
  }
  .faq-answer p {
    padding: 10px;

    font-size: 10px;
  }
}
/* cta-section */
/****************************************************************************/
.cta-section {
  padding: 80px 0px;
  text-align: center;
}
.contain-cta-section {
  position: relative;
  padding: 80px 20px;
  border-radius: 20px;
  background-color: #2f3111;
}

.contain-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./img/bbbk.png");
  background-size: 20%;
  background-position: center left;
  background-repeat: no-repeat;
  opacity: 0.2; /* درجة الشفافية للصورة اليسرى */
  z-index: -1;
  pointer-events: none;
}

.contain-cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background-image: url("./img/bbbk3.png");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.2; /* درجة الشفافية للصورة اليمنى */
  z-index: -1;
  pointer-events: none;
}
.cta-title {
  max-width: 600px;
  font-size: 40px;
  font-weight: 600;
  color: #e8e8e8;
  margin: 0 auto 30px auto;
}
.cta-text {
  font-size: 14px;
  margin: 0 auto 30px auto;
  max-width: 400px;
  color: #e2e2e2;
}
.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #eeff06;
  color: #333333;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background-color: #d4e600;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .cta-section {
    padding: 50px 0px;
  }
  .contain-cta-section {
    padding: 40px 20px;
  }
  .cta-title {
    font-size: 18px;
    margin: 0 auto 10px auto;
  }
  .cta-text {
    font-size: 10px;
    margin: 0 auto 20px auto;
  }
  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}
/* moving-images-section */
/****************************************************************************/
.moving-images-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #efff06;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-header .section-description {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Moving Images Rows */
.moving-images-row {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.moving-images-row::before,
.moving-images-row::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.moving-images-row::before {
  left: 0;
  background: linear-gradient(90deg, #171712 0%, transparent 100%);
}

.moving-images-row::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, #171712 100%);
}

.moving-images-track {
  display: flex;
  gap: 20px;
  width: fit-content;
  animation: scrollRight 25s linear infinite;
}

.row-left .moving-images-track {
  animation: scrollLeft 30s linear infinite;
}

.moving-images-row img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 2px solid rgba(239, 255, 6, 0.2);
}

.moving-images-row img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 20px rgba(239, 255, 6, 0.2);
  border-color: rgba(239, 255, 6, 0.5);
}

/* Animations */
@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Scroll Animation */
.moving-images-row {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.moving-images-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.row-right {
  transition-delay: 0.2s;
}

.row-left {
  transition-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .moving-images-section {
    padding: 50px 0;
  }

  .section-header .section-title {
    font-size: 18px;
  }

  .section-header .section-description {
    font-size: 10px;
  }
  .moving-images-row {
    padding: 20px 0;
  }
  .moving-images-row img {
    width: 150px;
    height: 220px;
  }

  .moving-images-track {
    gap: 15px;
  }
}

/* footer */
/****************************************************************************/
.site-footer {
  background: linear-gradient(135deg, #171712 0%, #2a2a23 50%, #171712 100%);
  color: #fff;
  padding: 60px 20px 30px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("img/Pattern.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 400px auto;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #eeff06;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 150px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 15px;
  font-size: 18px;
  color: #d3d2d2;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: #eeff06;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(239, 255, 6, 0.3);
  padding-top: 20px;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* Footer Navigation Menu */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-nav a {
  color: #d3d2d2;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(239, 255, 6, 0.2),
    transparent
  );
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover::before {
  opacity: 1;
}

.footer-nav a:hover {
  color: #eeff06;
  background: rgba(239, 255, 6, 0.1);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .site-footer {
    padding: 50px 0;
  }
  .site-footer a {
    margin-right: 0px;
    font-size: 14px;
  }
  .footer-top {
    justify-content: center;
  }
  .footer-links {
    margin: 20px 0;
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    padding: 20px 0;
  }
  .footer-logo img {
    width: 100px;
  }
}

/* Donation Stats Styles */
.donation-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #efff06;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(239, 255, 6, 0.3);
}

.stat-item p {
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

@media (max-width: 768px) {
  .donation-stats {
    gap: 20px;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .stat-item p {
    font-size: 0.9rem;
  }
}

/* Donation Container Styles */
.donation-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
}

.donation-item {
  text-align: start;
  transition: transform 0.3s ease;
}

.donation-item:hover {
  transform: translateY(-2px);
}

.donation-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: #efff06;
  margin-bottom: 2px;
  line-height: 1;
}

.donation-title {
  font-size: 0.55rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .donation-container {
    gap: 25px;
    justify-content: center;
  }

  .donation-number {
    font-size: 1.1rem;
  }

  .donation-title {
    font-size: 0.65rem;
    letter-spacing: 0.3px;
  }
  .donation-item {
    text-align: center;
  }
}

/* ========================================
   NEW: Client Gallery Section
   ======================================== */
.client-gallery-section {
  height: 100vh; /* ملء الشاشة بالكامل للـ pin */
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-header {
  text-align: center;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.gallery-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #efff06;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(239, 255, 6, 0.3);
}

.gallery-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.gallery-grid {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.gallery-item {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  background: #fff;
  z-index: 5;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(239, 255, 6, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.item-overlay h3 {
  color: #efff06;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.item-overlay p {
  color: #fff;
  font-size: 0.9rem;
  margin: 0;
}

/* Initial positions for animation */
.item-1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.item-2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.item-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.item-4 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.item-5 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.item-6 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 2.5rem;
  }

  .gallery-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }

  .gallery-item {
    width: 200px;
    height: 200px;
  }

  .gallery-header {
    top: 5%;
  }
}

@media (max-width: 480px) {
  .gallery-title {
    font-size: 2rem;
  }

  .gallery-item {
    width: 150px;
    height: 150px;
  }

  .item-overlay h3 {
    font-size: 1.2rem;
  }

  .item-overlay p {
    font-size: 0.8rem;
  }
}

/* About Us Page Styles - Unique Classes */
/****************************************************************************/
/* About Hero Section */
.about-hero {
  padding: 80px 0px 80px 0px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@keyframes patternFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-10px, -10px) scale(1.02);
  }
  66% {
    transform: translate(10px, -5px) scale(0.98);
  }
}

.about-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-hero-text {
  width: 55%;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #efff06;
  border-radius: 30px;
  padding: 8px 24px;
  margin-bottom: 30px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(135deg, #efff0610, #efff0620);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: badgeGlow 2s ease-in-out infinite;
}

.about-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 255, 6, 0.3);
  background: linear-gradient(135deg, #efff0620, #efff0630);
}

@keyframes badgeGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(239, 255, 6, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(239, 255, 6, 0.4);
  }
}

.about-title {
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
  position: relative;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #efff06, transparent);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(239, 255, 6, 0.6);
}

.about-title span {
  background: linear-gradient(135deg, #efff06 0%, #ffffff 50%, #efff06 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  position: relative;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.about-title span {
  color: #efff06;
}

.about-description {
  font-size: 18px;
  line-height: 1.8;
  color: #d3d2d2;
  margin-bottom: 40px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #efff0630;
  transition: all 0.3s ease;
}

.about-description:hover {
  border-left-color: #efff06;
  padding-left: 25px;
  color: #ffffff;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

.about-stats::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #efff0630, transparent);
}

.about-stat-item {
  text-align: center;
  padding: 25px 20px;
  background: linear-gradient(135deg, #efff0610, #efff0620);
  border-radius: 20px;
  border: 1px solid #efff0620;
  flex: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.about-stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #efff0620, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-stat-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(135deg, #efff0625, #efff0635);
  border-color: #efff0640;
  box-shadow: 0 20px 40px rgba(239, 255, 6, 0.2);
}

.about-stat-item:hover::before {
  opacity: 1;
}

.about-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #efff06;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(239, 255, 6, 0.5);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.about-stat-item:hover .about-stat-number {
  transform: scale(1.1);
  text-shadow: 0 0 30px rgba(239, 255, 6, 0.8);
}

.about-stat-label {
  font-size: 14px;
  color: #d3d2d2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-hero-image {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-hero-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, #efff0620, transparent 70%);
  border-radius: 30px;
  animation: imageGlow 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes imageGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.about-hero-image img {
  width: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
  filter: brightness(1.05) contrast(1.1);
}

.about-hero-image:hover img {
  transform: scale(1.08) rotate(1deg);
  filter: brightness(1.1) contrast(1.15);
}

/* Company Overview Section */
.company-overview {
  padding: 80px 0px;
}

.overview-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.overview-text {
  width: 55%;
}

.overview-badge {
  display: inline-block;
  border: 1px solid #efff06;
  border-radius: 30px;
  padding: 5px 20px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 14px;
}

.overview-title {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
}

.overview-title span {
  color: #efff06;
}

.overview-description {
  font-size: 16px;
  line-height: 1.7;
  color: #d3d2d2;
  margin-bottom: 40px;
}

.overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overview-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background-color: #efff0610;
  border-radius: 15px;
  border-left: 3px solid #efff06;
  transition: transform 0.3s ease;
}

.overview-highlight:hover {
  transform: translateX(10px);
  background-color: #efff0620;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #efff06, #8f9543);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 20px;
  color: #171712;
}

.highlight-content h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 5px;
}

.highlight-content p {
  font-size: 14px;
  color: #d3d2d2;
  margin: 0;
}

.overview-image {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overview-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.overview-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.overview-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.overview-gallery img:hover {
  transform: scale(1.05);
}

/* Mission Vision Section */
.mission-vision {
  padding: 80px 0px;
  text-align: center;
}

.mission-badge {
  display: inline-block;
  border: 1px solid #efff06;
  border-radius: 30px;
  padding: 5px 20px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 14px;
}

.mission-title {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 50px;
}

.mission-title span {
  color: #efff06;
}

.mission-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
}

.mission-card {
  flex: 1;
  padding: 40px 30px;
  background-color: #efff0615;
  border-radius: 20px;
  border: 1px solid #efff0620;
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-10px);
  background-color: #efff0625;
  border-color: #efff0640;
}

.mission-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #efff06, #8f9543);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-icon i {
  font-size: 32px;
  color: #171712;
}

.mission-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.mission-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #d3d2d2;
  margin-bottom: 20px;
}

.mission-image {
  width: 100%;
  border-radius: 30px;
  margin-top: 20px;
  transition: transform 0.3s ease;
  background-color: #171712;
}

.mission-card:hover .mission-image {
  transform: scale(1.05);
}

/* Team Section */
.about-team {
  padding: 80px 0px;
}

.team-badge {
  display: inline-block;
  border: 1px solid #efff06;
  border-radius: 30px;
  padding: 5px 20px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 14px;
}

.team-title {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 50px;
}

.team-title span {
  color: #efff06;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.team-member {
  background-color: #efff0610;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  background-color: #efff0620;
}

.member-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.member-info {
  padding: 30px;
}

.member-info h4 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.member-role {
  font-size: 14px;
  color: #efff06;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.member-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #d3d2d2;
  margin: 0;
}

/* Technology Section */
.about-technology {
  padding: 80px 0px;
}

.tech-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.tech-text {
  width: 55%;
}

.tech-badge {
  display: inline-block;
  border: 1px solid #efff06;
  border-radius: 30px;
  padding: 5px 20px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 14px;
}

.tech-title {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
}

.tech-title span {
  color: #efff06;
}

.tech-description {
  font-size: 18px;
  line-height: 1.7;
  color: #d3d2d2;
  margin-bottom: 40px;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tech-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background-color: #efff0610;
  border-radius: 15px;
  border-left: 3px solid #efff06;
  transition: transform 0.3s ease;
}

.tech-feature:hover {
  transform: translateX(10px);
  background-color: #efff0620;
}

.tech-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #efff06, #8f9543);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-feature-icon i {
  font-size: 20px;
  color: #171712;
}

.tech-feature-content h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 5px;
}

.tech-feature-content p {
  font-size: 14px;
  color: #d3d2d2;
  margin: 0;
}

.tech-image {
  width: 40%;
}

.tech-image img {
  width: 100%;
  border-radius: 20px;
}

/* Achievements Section */
.about-achievements {
  padding: 80px 0px;
  text-align: center;
}

.achievements-badge {
  display: inline-block;
  border: 1px solid #efff06;
  border-radius: 30px;
  padding: 5px 20px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 14px;
}

.achievements-title {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 50px;
}

.achievements-title span {
  color: #efff06;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.achievement-item {
  padding: 40px 30px;
  background-color: #efff0615;
  border-radius: 20px;
  border: 1px solid #efff0620;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.achievement-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #efff06, #8f9543);
}

.achievement-item:hover {
  transform: translateY(-10px);
  background-color: #efff0625;
  border-color: #efff0640;
}

.achievement-number {
  font-size: 48px;
  font-weight: 700;
  color: #efff06;
  margin-bottom: 10px;
}

.achievement-label {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.achievement-desc {
  font-size: 14px;
  color: #d3d2d2;
  line-height: 1.5;
}

/* Active state for navigation */
.nav a.active {
  background-color: #efff0624;
  border-radius: 30px;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0px 50px 0px;
    min-height: auto;
  }

  .about-hero-content {
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
  }

  .about-hero-text {
    width: 100%;
    text-align: center;
  }

  .about-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 25px;
  }

  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
  }

  .about-badge {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 20px;
  }

  .about-description {
    font-size: 16px;
    padding-left: 0;
    border-left: none;
    text-align: center;
  }

  .about-description:hover {
    padding-left: 0;
  }

  .about-hero-image {
    width: 100%;
    order: -1;
  }

  .about-hero-image::before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }

  .about-hero-image img {
    border-radius: 20px;
  }

  .about-hero-image:hover img {
    transform: scale(1.05);
  }

  .about-stats {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

  .about-stat-item {
    padding: 20px 15px;
  }

  .about-stat-item:hover {
    transform: translateY(-5px) scale(1.01);
  }

  .about-stat-number {
    font-size: 28px;
  }

  .about-stat-item:hover .about-stat-number {
    transform: scale(1.05);
  }

  .overview-content {
    flex-direction: column;
    gap: 40px;
  }

  .overview-text {
    width: 100%;
  }

  .overview-image {
    width: 100%;
  }

  .mission-grid {
    flex-direction: column;
  }

  .tech-content {
    flex-direction: column;
    gap: 40px;
  }

  .tech-text {
    width: 100%;
  }

  .tech-image {
    width: 100%;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Story Page Styles - Unique Classes */
/****************************************************************************/
/* Story Hero Section */
.story-hero {
  padding: 80px 0px 80px 0px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.story-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.story-hero-text {
  width: 55%;
}
.ccc {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: red;
}
.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #efff06;
  border-radius: 50px;
  padding: 12px 28px;
  margin-bottom: 30px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: badgeGlow 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.story-badge-center {
  width: fit-content;
  display: block;
  text-align: center;
  margin: 0 auto 20px;
}

.story-title {
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -2px;
  position: relative;
}

.story-title span {
  background: linear-gradient(135deg, #efff06 0%, #ffffff 50%, #efff06 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGradient 3s ease-in-out infinite;
}

@keyframes titleGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.story-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #efff06, #8f9543, #efff06);
  border-radius: 10px;
  animation: titleUnderline 3s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(239, 255, 6, 0.6);
}

.story-title span {
  color: #efff06;
}

.story-title-center {
  text-align: center;
  margin-bottom: 60px;
}

.story-title-center::after {
  left: 50%;
  transform: translateX(-50%);
}

.story-title-large {
  font-size: 56px;
}

.story-title-medium {
  font-size: 42px;
}

.story-description {
  font-size: 18px;
  line-height: 1.8;
  color: #d3d2d2;
  margin-bottom: 40px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #efff0630;
  transition: all 0.3s ease;
}

.story-description:hover {
  border-left-color: #efff06;
  padding-left: 25px;
  color: #ffffff;
}

.story-stats {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

.story-stats::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #efff0630, transparent);
}

.story-stat-item {
  text-align: center;
  padding: 35px 25px;
  background: linear-gradient(
    135deg,
    rgba(239, 255, 6, 0.1),
    rgba(239, 255, 6, 0.2)
  );
  border-radius: 25px;
  border: 2px solid rgba(239, 255, 6, 0.3);
  flex: 1;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.story-stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #efff0620, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.story-stat-item:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(135deg, #efff0625, #efff0635);
  border-color: #efff0640;
  box-shadow: 0 20px 40px rgba(239, 255, 6, 0.2);
}

.story-stat-item:hover::before {
  opacity: 1;
}

.story-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #efff06;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(239, 255, 6, 0.5);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.story-stat-item:hover .story-stat-number {
  transform: scale(1.1);
  text-shadow: 0 0 30px rgba(239, 255, 6, 0.8);
}

.story-stat-label {
  font-size: 14px;
  color: #d3d2d2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-hero-image {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.story-hero-image img {
  width: 100%;
  border-radius: 30px;
  position: relative;
  z-index: 2;
  transition: 0.3s;
  filter: brightness(1.1) contrast(1.15) saturate(1.1);
}

.story-hero-image:hover img {
  transform: scale(1.05) rotate(-2deg);
  filter: brightness(1.15) contrast(1.2) saturate(1.2);
}

/* Timeline Section - Modern Vertical Design */
.story-timeline {
  padding: 100px 0px;
  position: relative;
  overflow: hidden;
}

.story-timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  z-index: 1;
}

/* Vertical Timeline Line */
.story-timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(239, 255, 6, 0.3) 5%,
    #efff06 10%,
    #8f9543 50%,
    #efff06 90%,
    rgba(239, 255, 6, 0.3) 95%,
    transparent 100%
  );
  transform: translateX(-50%);
  z-index: 0;
  box-shadow: 0 0 15px rgba(239, 255, 6, 0.4);
}

/* Timeline Items - Grid Layout */
.story-timeline-item {
  position: relative;
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 50px;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.story-timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.story-timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.story-timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.story-timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}
.story-timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}
.story-timeline-item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Year Badge - Centered on Timeline */
.story-timeline-year {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #efff06, #8f9543);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #171712;
  position: relative;
  z-index: 2;
  box-shadow:
    0 10px 30px rgba(239, 255, 6, 0.5),
    inset 0 0 15px rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  border: 4px solid rgba(23, 23, 18, 0.3);
  grid-column: 2;
}

.story-timeline-year::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #efff06;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(239, 255, 6, 0.8);
  z-index: -1;
  animation: yearGlow 2s ease-in-out infinite;
}

@keyframes yearGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

.story-timeline-year:hover {
  transform: scale(1.15);
  box-shadow:
    0 15px 40px rgba(239, 255, 6, 0.7),
    inset 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Content Cards - Alternating Sides */
.story-timeline-content {
  background: linear-gradient(
    135deg,
    rgba(239, 255, 6, 0.08),
    rgba(239, 255, 6, 0.12)
  );
  border: 1px solid rgba(239, 255, 6, 0.2);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.story-timeline-item:nth-child(odd) .story-timeline-content {
  grid-column: 1;
  text-align: right;
}

.story-timeline-item:nth-child(even) .story-timeline-content {
  grid-column: 3;
  text-align: left;
}

.story-timeline-content::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #efff06);
  transition: width 0.5s ease;
}

.story-timeline-item:nth-child(odd) .story-timeline-content::after {
  right: -50px;
  transform: translateY(-50%);
}

.story-timeline-item:nth-child(even) .story-timeline-content::after {
  left: -50px;
  transform: translateY(-50%);
}

.story-timeline-content:hover::after {
  width: 30px;
}

.story-timeline-content:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(
    135deg,
    rgba(239, 255, 6, 0.12),
    rgba(239, 255, 6, 0.18)
  );
  border-color: rgba(239, 255, 6, 0.4);
  box-shadow: 0 15px 40px rgba(239, 255, 6, 0.3);
}

/* Icon */
.story-timeline-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #efff06, #8f9543);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: #171712;
  box-shadow: 0 5px 15px rgba(239, 255, 6, 0.4);
  transition: all 0.4s ease;
}

.story-timeline-item:nth-child(odd) .story-timeline-icon {
  margin-left: auto;
}

.story-timeline-content:hover .story-timeline-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(239, 255, 6, 0.6);
}

/* Typography */
.story-timeline-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-timeline-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #d3d2d2;
  margin-bottom: 20px;
}

/* Image */
.story-timeline-image {
  width: 100%;
  border-radius: 15px;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  object-fit: cover;
  height: 200px;
}

.story-timeline-image-box {
  position: relative;
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.story-timeline-image-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.story-timeline-image-year-box {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #efff06, #8f9543);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #171712;
  box-shadow: 0 8px 25px rgba(239, 255, 6, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.story-timeline-image-year-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.story-timeline-image-box:hover .story-timeline-image-year-box::before {
  left: 100%;
}

.story-timeline-image-box:hover .story-timeline-image-year-box {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(239, 255, 6, 0.6);
  background: linear-gradient(135deg, #8f9543, #efff06);
}

.story-timeline-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Story Values Section */
.story-values {
  padding: 100px 0px;
  position: relative;
  overflow: hidden;
}

.story-values::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(239, 255, 6, 0.1), transparent);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.story-values-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.story-values-text {
  width: 55%;
}

.story-values-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-values-highlight {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(239, 255, 6, 0.1),
    rgba(239, 255, 6, 0.15)
  );
  border-radius: 20px;
  border-left: 4px solid #efff06;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.story-values-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(239, 255, 6, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.story-values-highlight:hover::before {
  left: 100%;
}

.story-values-highlight:hover {
  transform: translateX(10px);
  background-color: #efff0620;
}

.story-values-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #efff06, #8f9543, #efff06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 8px 20px rgba(239, 255, 6, 0.4),
    inset 0 0 15px rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  border: 3px solid rgba(239, 255, 6, 0.4);
}

.story-values-highlight:hover .story-values-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow:
    0 12px 30px rgba(239, 255, 6, 0.6),
    inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.story-values-icon i {
  font-size: 20px;
  color: #171712;
}

.story-values-content-text h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 5px;
}

.story-values-content-text p {
  font-size: 14px;
  color: #d3d2d2;
  margin: 0;
}

.story-values-image {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-values-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.story-values-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.story-values-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: top;
  border-radius: 15px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.story-values-gallery img:hover {
  transform: scale(1.05);
}

/* Future Vision Section */
.story-future {
  padding: 100px 0px;
  position: relative;
  overflow: hidden;
}

.story-future-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.story-future-card {
  background: linear-gradient(
    135deg,
    rgba(239, 255, 6, 0.12),
    rgba(239, 255, 6, 0.18)
  );
  border: 2px solid rgba(239, 255, 6, 0.3);
  border-radius: 30px;
  padding: 50px 35px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.story-future-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #efff06, #8f9543);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.story-future-card:hover::before {
  transform: scaleX(1);
}

.story-future-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #efff0615, #efff0625);
  border-color: #efff0640;
  box-shadow: 0 20px 50px rgba(239, 255, 6, 0.2);
}

.story-future-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #efff06, #8f9543, #efff06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 40px;
  color: #171712;
  box-shadow:
    0 15px 40px rgba(239, 255, 6, 0.5),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 4px solid rgba(239, 255, 6, 0.4);
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.story-future-card:hover .story-future-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(239, 255, 6, 0.6);
}

.story-future-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.story-future-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #d3d2d2;
}

/* Responsive Design for Story Page */
@media (max-width: 768px) {
  .story-hero {
    padding: 100px 0px 50px 0px;
    min-height: auto;
  }

  .story-hero-content {
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
  }

  .story-hero-text {
    width: 100%;
    text-align: center;
  }

  .story-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 25px;
  }

  .story-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
  }

  .story-badge {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 20px;
  }

  .story-description {
    font-size: 16px;
    padding-left: 0;
    border-left: none;
    text-align: center;
  }

  .story-description:hover {
    padding-left: 0;
  }

  .story-hero-image {
    width: 100%;
    order: -1;
  }

  .story-hero-image::before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }

  .story-hero-image img {
    border-radius: 20px;
  }

  .story-hero-image:hover img {
    transform: scale(1.05);
  }

  .story-stats {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

  .story-stat-item {
    padding: 20px 15px;
  }

  .story-stat-item:hover {
    transform: translateY(-5px) scale(1.01);
  }

  .story-stat-number {
    font-size: 28px;
  }

  .story-stat-item:hover .story-stat-number {
    transform: scale(1.05);
  }

  .story-timeline-container {
    padding: 40px 15px;
  }

  .story-timeline-container::before {
    left: 30px;
  }

  .story-timeline-item {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
    text-align: left !important;
  }

  .story-timeline-item:nth-child(odd) .story-timeline-content,
  .story-timeline-item:nth-child(even) .story-timeline-content {
    grid-column: 1;
    text-align: left;
  }

  .story-timeline-year {
    width: 80px;
    height: 80px;
    font-size: 16px;
    grid-column: 1;
    margin: 0 auto;
  }

  .story-timeline-content {
    padding: 25px;
  }

  .story-timeline-content::after {
    display: none;
  }

  .story-timeline-content h3 {
    font-size: 22px;
  }

  .story-timeline-content p {
    font-size: 14px;
  }

  .story-timeline-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
    margin-left: 0 !important;
  }

  .story-timeline-image {
    height: 180px;
  }

  .story-values-content {
    flex-direction: column;
    gap: 40px;
  }

  .story-values-text {
    width: 100%;
  }

  .story-values-image {
    width: 100%;
  }

  .story-future-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-future-card {
    padding: 30px 20px;
  }

  .story-future-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .story-future-card h3 {
    font-size: 20px;
  }

  .story-future-card p {
    font-size: 14px;
  }
}

/* Contact Us Page Styles */
/****************************************************************************/
/* Contact Hero Section */
.contact-hero {
  padding: 140px 0px 80px 0px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse at 20% 30%,
      rgba(239, 255, 6, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(239, 255, 6, 0.06) 0%,
      transparent 50%
    );
}

.contact-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.contact-hero-text {
  width: 100%;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #efff06;
  border-radius: 50px;
  padding: 12px 28px;
  margin-bottom: 30px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    rgba(239, 255, 6, 0.15),
    rgba(239, 255, 6, 0.25)
  );
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: badgeGlow 3s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(239, 255, 6, 0.2);
}

.contact-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 255, 6, 0.3);
  background: linear-gradient(
    135deg,
    rgba(239, 255, 6, 0.2),
    rgba(239, 255, 6, 0.3)
  );
}

.contact-title {
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -2px;
  position: relative;
}

.contact-title span {
  background: linear-gradient(135deg, #efff06 0%, #ffffff 50%, #efff06 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGradient 3s ease-in-out infinite;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #efff06, #8f9543, #efff06);
  border-radius: 10px;
  animation: titleUnderline 3s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(239, 255, 6, 0.6);
}

.contact-title-medium {
  font-size: 42px;
  text-align: center;
}

.contact-title-medium::after {
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
}

.contact-description {
  font-size: 18px;
  line-height: 1.8;
  color: #d3d2d2;
  margin-bottom: 40px;
  position: relative;
}

/* Contact Info Section */
.contact-info {
  padding: 80px 0px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(239, 255, 6, 0.02) 50%,
    transparent 100%
  );
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-info-card {
  background: linear-gradient(
    135deg,
    rgba(239, 255, 6, 0.08),
    rgba(239, 255, 6, 0.12)
  );
  border: 1px solid rgba(239, 255, 6, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #efff06, #8f9543);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-info-card:hover::before {
  transform: scaleX(1);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(
    135deg,
    rgba(239, 255, 6, 0.12),
    rgba(239, 255, 6, 0.18)
  );
  border-color: rgba(239, 255, 6, 0.4);
  box-shadow: 0 15px 40px rgba(239, 255, 6, 0.3);
}

.contact-info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #efff06, #8f9543);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: #171712;
  box-shadow: 0 10px 30px rgba(239, 255, 6, 0.4);
  transition: all 0.4s ease;
  border: 3px solid rgba(239, 255, 6, 0.4);
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 40px rgba(239, 255, 6, 0.6);
}

.contact-info-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-card p {
  font-size: 10px;
  line-height: 1.8;
  color: #d3d2d2;
  margin-bottom: 8px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 0px;
  background: linear-gradient(
    135deg,
    rgba(239, 255, 6, 0.02) 0%,
    rgba(239, 255, 6, 0.05) 50%,
    rgba(239, 255, 6, 0.02) 100%
  );
}

.contact-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.contact-form-content {
  text-align: center;
  margin-bottom: 60px;
}

.contact-form {
  background: linear-gradient(
    135deg,
    rgba(239, 255, 6, 0.08),
    rgba(239, 255, 6, 0.12)
  );
  border: 1px solid rgba(239, 255, 6, 0.2);
  border-radius: 25px;
  padding: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group label i {
  color: #efff06;
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  background: rgba(23, 23, 18, 0.5);
  border: 2px solid rgba(239, 255, 6, 0.2);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 16px;
  color: #ffffff;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #efff06;
  background: rgba(23, 23, 18, 0.7);
  box-shadow: 0 0 20px rgba(239, 255, 6, 0.2);
  transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(211, 210, 210, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #efff06, #8f9543);
  border: none;
  border-radius: 15px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  color: #171712;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(239, 255, 6, 0.3);
  margin-top: 30px;
}

.contact-submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(239, 255, 6, 0.5);
  background: linear-gradient(135deg, #8f9543, #efff06);
}

.contact-submit-btn:active {
  transform: translateY(-2px);
}

.contact-submit-btn i {
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
  transform: translateX(5px);
}

/* Map Section */
.contact-map {
  padding: 80px 0px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(239, 255, 6, 0.03) 50%,
    transparent 100%
  );
}

.map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(239, 255, 6, 0.2);
  border: 2px solid rgba(239, 255, 6, 0.3);
}

.contact-map-iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 25px;
  filter: brightness(0.95) contrast(1.1);
  transition: all 0.3s ease;
}

.map-wrapper:hover .contact-map-iframe {
  filter: brightness(1) contrast(1.15);
  box-shadow: 0 20px 50px rgba(239, 255, 6, 0.3);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 0px 50px 0px;
    min-height: auto;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-title-medium {
    font-size: 28px;
  }

  .contact-description {
    font-size: 16px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info-card {
    padding: 30px 20px;
  }

  .contact-info-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-map-iframe {
    height: 350px;
  }
}
