/* Text Overlay for better contrast */
.text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(226, 226, 226, 0.377) 50%, 
    rgba(255, 255, 255, 0.12) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Ensure all hero background elements don't block interactions */
.header-grid * {
  pointer-events: auto;
}

.header-grid::before,
.header-grid::after,
.blob-scene-background::before,
.blob-scene-background::after,
.blob-scene-background *,
.blob-svg::before,
.blob-svg::after,
.vertical-grid::before,
.vertical-grid::after,
.light-strip::before,
.light-strip::after {
  pointer-events: none !important;
}

/* Ensure all background and decorative elements don't block interactions */
.header-grid [class*="blob"],
.header-grid [class*="scene"],
.header-grid [class*="background"],
.header-grid [class*="strip"],
.header-grid [class*="grid"],
.header-grid [class*="overlay"] {
  pointer-events: none !important;
}

/* Ensure About section content stays above overlay */
.about-section-main {
  position: relative;
  z-index: 2;
}

.about-container-main {
  position: relative;
  z-index: 3;
}



.vertical-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 95vh;
  pointer-events: none;
  z-index: 1;
  background-image: repeating-linear-gradient(to left,
      rgba(102, 100, 100, 0.603) 0,
      rgba(59, 59, 59, 0.5) 1px,
      transparent 1px,
      transparent 100px);
}

/* Blob Scene Background */
.blob-scene-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.blob-svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  opacity: 0.8;
  pointer-events: none;
}






.light-strip {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, rgba(5, 96, 182, 0.068) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* نظام الشبكة */
.header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
  z-index: 100;
  margin-top: 0px;
}

/* قسم المحتوى */
.content-column {
  display: flex;
  align-items: center;
  padding: 0 10%;
  margin-top: 150px;
  position: relative;
  z-index: 101;
}

.content-wrapper {
  position: relative;
  width: 100%;
  z-index: 102;
}

.watermark {
  position: absolute;
  top: -80px;
  left: -50px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.664);
  z-index: -1;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.2em;
  text-shadow: 
    0 0 20px rgba(100, 181, 246, 0.3),
    0 0 40px rgba(100, 181, 246, 0.2),
    2px 2px 4px rgba(0, 0, 0, 0.1);
  /* background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.596) 0%, 
    rgba(100, 180, 246, 0.822) 50%, 
    rgba(255, 255, 255, 0.521) 100%); */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(100, 181, 246, 0.4));
  animation: watermarkGlow 4s ease-in-out infinite alternate;
}

@keyframes watermarkGlow {
  0% {
    opacity: 0.15;
    filter: drop-shadow(0 0 30px rgba(100, 181, 246, 0.4));
  }
  50% {
    opacity: 0.25;
    filter: drop-shadow(0 0 50px rgba(100, 181, 246, 0.6));
  }
  100% {
    opacity: 0.15;
    filter: drop-shadow(0 0 30px rgba(100, 181, 246, 0.4));
  }
}

.category-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
  color: white;
  backdrop-filter: blur(10px);
}

.tag-circle {
  width: 6px;
  height: 6px;
  background-color: #2a5298;
  border-radius: 50%;
}

.tag-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #64b5f6;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.category-tag:hover .tag-line {
  transform: scaleX(1);
}

/* العنوان الرئيسي */
.main-heading {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.heading-part {
  position: relative;
  display: inline-block;
}

.heading-part::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  color: #0560b6;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.heading-part:hover::before {
  width: 100%;
}

/* الوصف */
.description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-family: 'Tajawal', sans-serif;
  pointer-events: none;
}

.highlight-word {
  color: #64b5f6;
  font-weight: 700;
  position: relative;
  display: inline-block;
  pointer-events: none;
}

.highlight-word::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(100, 181, 246, 0.4);
  z-index: -1;
  transition: height 0.3s ease;
}

.highlight-word:hover::after {
  height: 15px;
}

.typed-cursor {
  animation: blink 1s infinite;
}

/* الأزرار */
.buttons-container {
  display: flex;
  gap: 15px;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 200;
  pointer-events: auto;
}

.magnetic-btn {
  position: relative;
  padding: 12px 24px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 201;
  pointer-events: auto;
}

.magnetic-btn a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Tajawal', sans-serif;
  position: relative;
  z-index: 202;
  pointer-events: auto;
}

.magnetic-btn a:hover {
  color: white;
  text-decoration: none;
}

.project-btn {
  position: relative;
  padding: 12px 24px;
  border-radius: 6px;
  background: linear-gradient(45deg, rgba(42, 82, 152, 0.8), rgba(100, 181, 246, 0.8));
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(42, 82, 152, 0.3);
  z-index: 201;
  pointer-events: auto;
}

.project-btn a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Tajawal', sans-serif;
  position: relative;
  z-index: 202;
  pointer-events: auto;
}

.project-btn a:hover {
  color: white;
  text-decoration: none;
}

.project-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(42, 82, 152, 0.4);
  background: linear-gradient(45deg, rgba(42, 82, 152, 0.9), rgba(100, 181, 246, 0.9));
}

.project-btn:hover .rocket-icon {
  transform: translateX(3px) translateY(-2px);
  transition: transform 0.3s ease;
}

.rocket-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(100, 181, 246, 0.8), rgba(42, 82, 152, 0.8));
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.magnetic-btn:hover .btn-bg {
  transform: scaleX(1);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.magnetic-btn:hover .arrow-icon {
  transform: translateX(5px);
}

.video-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 10px 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.play-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.play-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  margin-left: 2px;
}

.video-btn:hover .play-circle {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* قسم الصور الاحترافية */
.image-column {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5%;
  margin-top: 150px;
}

.professional-showcase {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* الشخص الرئيسي */
.main-person {
  position: relative;
  z-index: 10;
  border: 3px dashed #f5f5f5;
  border-radius: 50%;
  padding: 10px;
  animation: borderRotate 10s linear infinite;
}

.person-image {
  width: 630px;
  height: 630px;
  max-width: 90vw;
  max-height: 90vw;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  border-radius: 50%;
  padding: 20px;
  background: linear-gradient(135deg, #e3f2fd, #e3f2fd);
  animation: imageRotate 10s linear infinite;
}

.person-glow {
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  filter: blur(35px);
  opacity: 0.8;
  /* animation: glowPulse 4s ease-in-out infinite; */
  border-radius: 50%;
}

/* الأشكال الهندسية الخلفية */
.background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* الأشكال الزخرفية الاحترافية */
.decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 20;
}

/* أشكال مدارية */
.shape-orbital {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(100, 181, 246, 0.3);
  animation: orbitRotate 15s linear infinite;
}

.orb-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  right: 15%;
  animation-delay: 0s;
  border-color: rgba(100, 181, 246, 0.4);
}

.orb-2 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  animation-delay: 5s;
  border-color: rgba(76, 175, 80, 0.4);
  animation-direction: reverse;
}

.orb-3 {
  width: 70px;
  height: 70px;
  bottom: 15%;
  right: 20%;
  animation-delay: 10s;
  border-color: rgba(42, 82, 152, 0.4);
}

/* أشكال مثلثة */
.shape-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  animation: triangleFloat 12s ease-in-out infinite;
}

.tri-1 {
  border-bottom: 26px solid rgba(100, 181, 246, 0.3);
  top: 25%;
  left: 20%;
  animation-delay: 0s;
}

.tri-2 {
  border-bottom: 20px solid rgba(76, 175, 80, 0.3);
  bottom: 30%;
  right: 15%;
  animation-delay: 6s;
}

/* أشكال سداسية */
.shape-hexagon {
  position: absolute;
  width: 40px;
  height: 22px;
  background: rgba(42, 82, 152, 0.2);
  margin: 11px 0;
  animation: hexagonRotate 18s linear infinite;
}

.hex-1::before,
.hex-1::after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}

.hex-1::before {
  bottom: 100%;
  border-bottom: 11px solid rgba(42, 82, 152, 0.3);
}

.hex-1::after {
  top: 100%;
  border-top: 11px solid rgba(42, 82, 152, 0.3);
}

.hex-1 {
  top: 15%;
  right: 25%;
  animation-delay: 3s;
}

.hex-2 {
  background: rgba(100, 181, 246, 0.2);
  bottom: 20%;
  left: 25%;
  animation-delay: 9s;
}

.hex-2::before {
  border-bottom-color: rgba(100, 181, 246, 0.3);
}

.hex-2::after {
  border-top-color: rgba(100, 181, 246, 0.3);
}

/* أشكال معينية */
.shape-diamond {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(76, 175, 80, 0.2);
  transform: rotate(45deg);
  animation: diamondFloat 10s ease-in-out infinite;
}

.dia-1 {
  top: 35%;
  left: 15%;
  animation-delay: 0s;
}

.dia-2 {
  background: rgba(100, 181, 246, 0.2);
  top: 10%;
  right: 30%;
  animation-delay: 5s;
}

/* أشكال دائرية */
.shape-circle {
  position: absolute;
  border-radius: 50%;
  animation: circlePulse 8s ease-in-out infinite;
}

.cir-1 {
  width: 25px;
  height: 25px;
  background: rgba(42, 82, 152, 0.2);
  top: 40%;
  right: 10%;
  animation-delay: 0s;
}

.cir-2 {
  width: 20px;
  height: 20px;
  background: rgba(100, 181, 246, 0.2);
  bottom: 25%;
  left: 20%;
  animation-delay: 4s;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
  animation: shapeFloat 20s ease-in-out infinite;
}

.shape.shape-1 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #64b5f6, #2a5298);
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.shape.shape-2 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #4caf50, #64b5f6);
  bottom: 20%;
  left: 20%;
  animation-delay: 5s;
}

.shape.shape-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #2a5298, #4caf50);
  top: 40%;
  left: 10%;
  animation-delay: 10s;
}

.shape.shape-4 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #64b5f6, #81c784);
  bottom: 30%;
  right: 25%;
  animation-delay: 15s;
}

.shape.shape-5 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #81c784, #2a5298);
  top: 60%;
  right: 40%;
  animation-delay: 7s;
}

/* البطاقات الاحترافية */
.service-cards {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 15;
}

.service-card {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 16px;
  padding: 10px 16px;
  width: 145px;
  text-align: center;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px transparent;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border-top: 4px dashed rgba(42, 82, 152, 0.5);
  border-left: 4px dashed rgba(42, 82, 152, 0.5);
  border-right: 4px solid rgba(42, 82, 152, 0.6);
  border-bottom: 4px solid rgba(42, 82, 152, 0.6);
}

.service-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, 
    rgba(42, 82, 152, 0.6), 
    rgba(100, 181, 246, 0.6), 
    rgba(76, 175, 80, 0.6), 
    rgba(42, 82, 152, 0.6));
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    transparent 50%, 
    rgba(100, 181, 246, 0.05) 100%);
  border-radius: 14px;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.08) rotateX(2deg);
  box-shadow: 
    0 20px 40px rgba(42, 82, 152, 0.2),
    0 8px 25px rgba(100, 181, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-top: 2px dashed rgba(100, 181, 246, 0.6);
  border-left: 2px dashed rgba(100, 181, 246, 0.6);
  border-right: 2px dashed rgba(100, 181, 246, 0.6);
  border-bottom: 2px solid rgba(42, 82, 152, 0.8);
}

.card-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  position: relative;
}

.icon-circle {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a5298, #64b5f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: 
    0 6px 20px rgba(42, 82, 152, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .icon-circle {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 
    0 10px 30px rgba(42, 82, 152, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.icon-gradient {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(42, 82, 152, 0.25));
}

.service-card h3 {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #2a5298;
  margin-bottom: 5px;
  text-align: center;
}

.service-card p {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.7rem;
  color: #555;
  line-height: 1.4;
  text-align: center;
  margin: 0;
}

/* العناصر المتحركة */
.animated-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-dots .dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #64b5f6;
  border-radius: 50%;
  animation: dotFloat 8s ease-in-out infinite;
}

.floating-dots .dot:nth-child(1) {
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.floating-dots .dot:nth-child(2) {
  top: 35%;
  right: 25%;
  animation-delay: 2s;
}

.floating-dots .dot:nth-child(3) {
  bottom: 25%;
  left: 30%;
  animation-delay: 4s;
}

.floating-dots .dot:nth-child(4) {
  bottom: 15%;
  right: 20%;
  animation-delay: 6s;
}

.connecting-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.connecting-lines .line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(100, 181, 246, 0.6), transparent);
  height: 1px;
  animation: lineFlow 10s linear infinite;
}

.connecting-lines .line:nth-child(1) {
  top: 20%;
  width: 180px;
  left: 10%;
  animation-delay: 0s;
}

.connecting-lines .line:nth-child(2) {
  top: 45%;
  width: 220px;
  right: 15%;
  animation-delay: 3s;
}

.connecting-lines .line:nth-child(3) {
  bottom: 30%;
  width: 200px;
  left: 20%;
  animation-delay: 6s;
}

.professional-card {
  position: relative;
  width: 280px;
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.professional-card:hover {
  transform: translateY(-10px) rotateX(5deg) scale(1.05);
  box-shadow: 0 25px 50px rgba(42, 82, 152, 0.3);
  border-color: rgba(100, 181, 246, 0.5);
}

.card-1 {
  animation: cardFloat1 6s ease-in-out infinite;
}

.card-2 {
  animation: cardFloat2 6s ease-in-out infinite 2s;
}

.card-3 {
  animation: cardFloat3 6s ease-in-out infinite 4s;
}

.professional-image-container {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 15px;
}

.professional-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.professional-card:hover .professional-image {
  transform: scale(1.1);
  filter: brightness(1.1) contrast(1.1);
}

.digital-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.digital-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(100, 181, 246, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 181, 246, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: gridMove 10s linear infinite;
}

.digital-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.digital-particles::before,
.digital-particles::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: radial-gradient(circle, #64b5f6, transparent);
  border-radius: 50%;
  animation: particleMove 8s linear infinite;
}

.digital-particles::before {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.digital-particles::after {
  top: 60%;
  left: 70%;
  animation-delay: 4s;
}

.digital-circuit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(100, 181, 246, 0.3) 49%, rgba(100, 181, 246, 0.3) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(42, 82, 152, 0.3) 49%, rgba(42, 82, 152, 0.3) 51%, transparent 52%);
  background-size: 30px 30px;
  animation: circuitFlow 15s linear infinite;
}

.image-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(100, 181, 246, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(20px);
}

.professional-card:hover .image-glow {
  opacity: 1;
}

.professional-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2a5298, #64b5f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(42, 82, 152, 0.4);
  animation: badgePulse 3s ease-in-out infinite;
}

.professional-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.professional-card:hover .professional-info {
  transform: translateY(0);
}

.professional-info h4 {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.expertise {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* العناصر الرقمية الزخرفية */
.digital-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(100, 181, 246, 0.3), rgba(42, 82, 152, 0.3));
  filter: blur(20px);
  animation: shapeFloat 20s ease-in-out infinite;
}

.shape-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 15%;
  animation-delay: 7s;
}

.shape-3 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 20%;
  animation-delay: 14s;
}

.digital-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(100, 181, 246, 0.5), transparent);
  height: 1px;
  animation: lineFlow 8s linear infinite;
}

.line-1 {
  top: 30%;
  width: 200px;
  right: 5%;
  animation-delay: 0s;
}

.line-2 {
  top: 50%;
  width: 150px;
  left: 10%;
  animation-delay: 3s;
}

.line-3 {
  bottom: 30%;
  width: 180px;
  right: 15%;
  animation-delay: 6s;
}

.connection-nodes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #64b5f6, #2a5298);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(100, 181, 246, 0.8);
  animation: nodePulse 4s ease-in-out infinite;
}

.node-1 {
  top: 25%;
  left: 20%;
  animation-delay: 0s;
}

.node-2 {
  top: 45%;
  right: 25%;
  animation-delay: 1.5s;
}

.node-3 {
  bottom: 35%;
  left: 40%;
  animation-delay: 3s;
}

.image-stack {
  position: relative;
  width: 100%;
  height: 70vh;
}

.main-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.image-reflection {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to top, rgba(42, 82, 152, 0.2), transparent);
  transform: scaleY(0.5) rotateX(60deg);
  transform-origin: bottom;
  filter: blur(10px);
  opacity: 0.5;
}

.floating-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 180px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: rotate(-8deg) translateY(15px);
  transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 2;
}

.card-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #0396ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.deco-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, #2a5298, #64b5f6);
  filter: blur(30px);
  opacity: 0.2;
  z-index: -1;
}

.deco-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
}

.deco-2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  right: 20%;
}

/* شريط التمرير الاحترافي */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 4;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  position: relative;
  width: 3px;
  height: 80px;
  background: linear-gradient(to bottom, 
    rgba(42, 82, 152, 0.8) 0%, 
    rgba(100, 181, 246, 0.6) 50%, 
    transparent 100%);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(42, 82, 152, 0.5);
}

.scroll-dot {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #64b5f6 0%, #2a5298 100%);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(100, 181, 246, 0.8);
  animation: scrollDot 2s ease-in-out infinite;
}

.scroll-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, rgba(100, 181, 246, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  animation: scrollGlow 2s ease-in-out infinite;
}

.scroll-particles {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.scroll-particles .particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: linear-gradient(45deg, #64b5f6, #2a5298);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 3s ease-in-out infinite;
}

.scroll-particles .particle:nth-child(1) { 
  left: 20%; 
  animation-delay: 0s; 
}

.scroll-particles .particle:nth-child(2) { 
  left: 40%; 
  animation-delay: 0.5s; 
}

.scroll-particles .particle:nth-child(3) { 
  left: 60%; 
  animation-delay: 1s; 
}

.scroll-particles .particle:nth-child(4) { 
  left: 80%; 
  animation-delay: 1.5s; 
}

.scroll-text {
  position: relative;
  text-align: center;
  font-family: 'Tajawal', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  cursor: pointer;
}

.text-main {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.text-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #64b5f6, #2a5298);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: scale(1.1);
  filter: blur(2px);
  transition: all 0.3s ease;
  z-index: 1;
}

.scroll-arrows {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.scroll-arrows i {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.arrow-1 {
  animation: arrowBounce 2s ease-in-out infinite;
}

.arrow-2 {
  animation: arrowBounce 2s ease-in-out infinite 0.2s;
}

.arrow-3 {
  animation: arrowBounce 2s ease-in-out infinite 0.4s;
}

/* Hover Effects */
.scroll-indicator:hover .scroll-line {
  height: 90px;
  box-shadow: 0 0 30px rgba(42, 82, 152, 0.7);
}

.scroll-indicator:hover .scroll-dot {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 20px rgba(100, 181, 246, 1);
}

.scroll-indicator:hover .text-glow {
  opacity: 0.6;
  transform: scale(1.05);
  filter: blur(1px);
}

.scroll-indicator:hover .scroll-arrows i {
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(2px);
}

/* Advanced Animations */
@keyframes scrollDot {
  0% {
    top: -10px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 70px;
    opacity: 0;
  }
}

@keyframes scrollGlow {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-10px) scale(1);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-60px) scale(0.5);
  }
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(3px);
    opacity: 1;
  }
}

/* Pulse Effect for Container */
.scroll-indicator {
  animation: containerPulse 3s ease-in-out infinite;
}

@keyframes containerPulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.02);
  }
}

/* الحركات */
@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}



.stats-grid {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 25px;
  perspective: 1000px;
}


.stat-item {
  flex: 1;
  min-width: 120px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow:
    0 3px 10px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #64b5f6cc, #2a5298);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}


.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
}

.stat-number::after {
  content: '+';
  position: absolute;
  top: 5px;
  right: -15px;
  color: #64b5f6;
  font-size: 1.5rem;
}


.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  position: relative;
  padding-top: 8px;
}

.stat-label::before {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #64b5f6, #2a5298);
}


.stat-item:hover {
  transform: translateY(-8px) rotateX(5deg);
  box-shadow:
    0 15px 30px rgba(42, 82, 152, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-item:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.stat-item:hover .stat-number {
  transform: scale(1.05);
  color: #2a5298;
}


@keyframes statAppear {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item {
  animation: statAppear 0.6s ease forwards;
  opacity: 0;
}

.stat-item:nth-child(1) {
  animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.4s;
}

/* Professional Cards Animations */
@keyframes cardFloat1 {
  0%, 100% {
    transform: translateY(0) rotateZ(0deg);
  }
  25% {
    transform: translateY(-5px) rotateZ(1deg);
  }
  75% {
    transform: translateY(3px) rotateZ(-1deg);
  }
}

@keyframes cardFloat2 {
  0%, 100% {
    transform: translateY(0) rotateZ(0deg);
  }
  25% {
    transform: translateY(-3px) rotateZ(-1deg);
  }
  75% {
    transform: translateY(5px) rotateZ(1deg);
  }
}

@keyframes cardFloat3 {
  0%, 100% {
    transform: translateY(0) rotateZ(0deg);
  }
  25% {
    transform: translateY(-4px) rotateZ(0.5deg);
  }
  75% {
    transform: translateY(2px) rotateZ(-0.5deg);
  }
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(20px, 20px);
  }
}

@keyframes particleMove {
  0% {
    transform: translate(0, 0) scale(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
    transform: translate(10px, -10px) scale(1);
  }
  80% {
    opacity: 1;
    transform: translate(-10px, -30px) scale(1);
  }
  100% {
    transform: translate(-20px, -40px) scale(0);
    opacity: 0;
  }
}

@keyframes circuitFlow {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-30px, -30px) rotate(360deg);
  }
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(42, 82, 152, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(42, 82, 152, 0.6);
  }
}

@keyframes shapeFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(30px, -20px) scale(1.1) rotate(90deg);
  }
  50% {
    transform: translate(-20px, -40px) scale(0.9) rotate(180deg);
  }
  75% {
    transform: translate(-40px, 20px) scale(1.05) rotate(270deg);
  }
}

@keyframes lineFlow {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes nodePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

/* Additional animations for new design */
@keyframes mainFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  75% {
    transform: translateY(5px) rotate(-1deg);
  }
}

@keyframes dotFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 1;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes borderRotate {
  0% {
    border-color: #f5f5f5;
  }
  25% {
    border-color: #64b5f6;
  }
  50% {
    border-color: #4caf50;
  }
  75% {
    border-color: #2a5298;
  }
  100% {
    border-color: #f5f5f5;
  }
}

/* أنيميشنات الأشكال الزخرفية */
@keyframes orbitRotate {
  0% {
    transform: rotate(0deg) translateX(50px) translateY(50px);
  }
  100% {
    transform: rotate(360deg) translateX(50px) translateY(50px);
  }
}

@keyframes triangleFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-15px) rotate(90deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-25px) rotate(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-10px) rotate(270deg);
    opacity: 0.8;
  }
}

@keyframes hexagonRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes diamondFloat {
  0%, 100% {
    transform: rotate(45deg) translateY(0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: rotate(90deg) translateY(-20px) scale(1.2);
    opacity: 0.6;
  }
  50% {
    transform: rotate(180deg) translateY(-30px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: rotate(270deg) translateY(-15px) scale(1.1);
    opacity: 0.8;
  }
}

@keyframes circlePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.8;
  }
}

/* SVG Gradients */
.svg-gradients {
  position: absolute;
  width: 0;
  height: 0;
}

/* ============================================
   RESPONSIVE DESIGN FOR HERO SECTION
   ============================================ */

/* Large Desktop (1200px - 1600px) */
@media (max-width: 1400px) {
  .header-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .content-column {
    padding: 0 8%;

  }
  
  .person-image {
    width: 450px;
    height: 450px;
    max-width: 80vw;
    max-height: 80vw;
  }
  
  .main-heading {
    font-size: 3rem;
  }
  
  .description {
    font-size: 1.1rem;
  }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
  .header-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    min-height: 90vh;
  }
  
  .content-column {
    padding: 0 6%;
  }
  
  .image-column {
    padding: 3%;
  }
  
  .person-image {
    width: 380px;
    height: 380px;
    max-width: 70vw;
    max-height: 70vw;
  }
  
  .main-heading {
    font-size: 2.8rem;
  }
  
  .description {
    font-size: 1rem;
  }
  
  .buttons-container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  .magnetic-btn,
  .project-btn {
    width: 100%;
    justify-content: center;
  }
  
  .service-cards {
    gap: 15px;
    bottom: 15px;
  }
  
  .service-card {
    width: 130px;
    padding: 8px 12px;
  }
  
  .watermark {
    font-size: 6rem;
    top: -60px;
    left: -40px;
  }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) {
  .header-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding: 80px 0 60px;
  }
  .stage{
    display: none;
  }
  
  .content-column {
    padding: 0 5%;
    text-align: center;
    order: 1;
  }
  
  .image-column {
    display: none;
  }
  
  .service-cards {
    display: none;
  }
  
  .main-heading {
    font-size: 2.5rem;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  
  .description {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .highlight-word {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .highlight-word::after {
    background-color: rgba(255, 255, 255, 0.6);
    height: 12px;
  }
  
  .buttons-container {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
  }
  
  .magnetic-btn,
  .project-btn {
    min-width: 180px;
    position: relative;
    z-index: 10;
  }
  
  .magnetic-btn {
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.9), rgba(100, 181, 246, 0.9));
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  .magnetic-btn a {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 700;
  }
  
  .project-btn {
    background: linear-gradient(45deg, rgba(30, 60, 114, 0.95), rgba(42, 82, 152, 0.95));
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }
  
  .project-btn a {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 700;
  }
  
  .watermark {
    display: none;
  }
  
  .light-strip {
    width: 60%;
    opacity: 0.5;
  }
  
  .decorative-shapes {
    opacity: 0.6;
  }
  
  .background-shapes {
    opacity: 0.4;
  }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) {
  .header-grid {
    gap: 30px;
    padding: 70px 0 50px;
  }
  
  .content-column {
    padding: 0 4%;
     margin-top: -50px;
  }
  
  .image-column {
    display: none;
  }
  
  .service-cards {
    display: none;
  }
  
  .main-heading {
    font-size: 2.2rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  }
  
  .description {
    font-size: 0.95rem;
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }
  
  .highlight-word {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  }
  
  .highlight-word::after {
    background-color: rgba(255, 255, 255, 0.7);
    height: 10px;
  }
  
  .buttons-container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .magnetic-btn,
  .project-btn {
    width: 100%;
    max-width: 280px;
    position: relative;
    z-index: 10;
  }
  
  .magnetic-btn {
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.95), rgba(100, 181, 246, 0.95));
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }
  
  .magnetic-btn a {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    font-weight: 700;
  }
  
  .project-btn {
    background: linear-gradient(45deg, rgba(30, 60, 114, 1), rgba(42, 82, 152, 1));
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  }
  
  .project-btn a {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    font-weight: 700;
  }
  
  .category-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  }
  
  .light-strip {
    width: 80%;
    opacity: 0.3;
  }
  
  /* Reduce animations for better performance */
  .decorative-shapes {
    display: none;
  }
  
  .background-shapes {
    opacity: 0.3;
  }
  
  .animated-elements {
    display: none;
  }
}

/* Mobile Large (480px - 575px) */
@media (max-width: 575px) {
  .header-grid {
    gap: 25px;
    padding: 60px 0 40px;
  }
  
  .content-column {
    padding: 0 3%;
  }
  
  .image-column {
    display: none;
  }
  
  .service-cards {
    display: none;
  }
  
  .main-heading {
    font-size: 1.8rem;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  }
  
  .description {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .highlight-word {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  }
  
  .highlight-word::after {
    background-color: rgba(255, 255, 255, 0.8);
    height: 8px;
  }
  
  .buttons-container {
    gap: 10px;
    margin-bottom: 1.5rem;
  }
  
  .magnetic-btn,
  .project-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
  }
  
  .magnetic-btn {
    background: linear-gradient(135deg, rgba(42, 82, 152, 1), rgba(100, 181, 246, 1));
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  }
  
  .magnetic-btn a {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 700;
  }
  
  .project-btn {
    background: linear-gradient(45deg, rgba(20, 40, 80, 1), rgba(42, 82, 152, 1));
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  }
  
  .project-btn a {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 700;
  }
  
  .category-tag {
    font-size: 0.75rem;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  .light-strip {
    width: 100%;
    opacity: 0.2;
  }
  
  .scroll-indicator {
    bottom: 30px;
  }
  
  .scroll-line {
    height: 60px;
  }
  
  .scroll-text {
    font-size: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
  .header-grid {
    gap: 20px;
    padding: 50px 0 30px;
  }
  
  .content-column {
    padding: 0 2%;
  }
  
  .image-column {
    display: none;
  }
  
  .service-cards {
    display: none;
  }
  
  .main-heading {
    font-size: 1.6rem;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  }
  
  .description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  }
  
  .highlight-word {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  }
  
  .highlight-word::after {
    background-color: rgba(255, 255, 255, 0.9);
    height: 6px;
  }
  
  .buttons-container {
    gap: 8px;
    margin-bottom: 1rem;
  }
  
  .magnetic-btn,
  .project-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    position: relative;
    z-index: 10;
  }
  
  .magnetic-btn {
    background: linear-gradient(135deg, rgba(30, 60, 114, 1), rgba(42, 82, 152, 1));
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  }
  
  .magnetic-btn a {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 700;
  }
  
  .project-btn {
    background: linear-gradient(45deg, rgba(10, 20, 40, 1), rgba(30, 60, 114, 1));
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
  }
  
  .project-btn a {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 700;
  }
  
  .category-tag {
    font-size: 0.7rem;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  }
  
  .scroll-indicator {
    bottom: 20px;
  }
  
  .scroll-line {
    height: 50px;
  }
  
  .scroll-text {
    font-size: 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  }
}

/* Ultra Small Mobile (max-width: 319px) */
@media (max-width: 319px) {
  .header-grid {
    padding: 40px 0 20px;
  }
  
  .image-column {
    display: none;
  }
  
  .service-cards {
    display: none;
  }
  
  .main-heading {
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
  }
  
  .description {
    font-size: 0.8rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  }
  
  .highlight-word {
    color: #ffffff;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.9);
  }
  
  .highlight-word::after {
    background-color: rgba(255, 255, 255, 1);
    height: 5px;
  }
  
  .magnetic-btn,
  .project-btn {
    font-size: 0.8rem;
    padding: 6px 12px;
    position: relative;
    z-index: 10;
  }
  
  .magnetic-btn {
    background: linear-gradient(135deg, rgba(20, 40, 80, 1), rgba(30, 60, 114, 1));
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  }
  
  .magnetic-btn a {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    font-weight: 700;
  }
  
  .project-btn {
    background: linear-gradient(45deg, rgba(5, 10, 20, 1), rgba(20, 40, 80, 1));
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
  }
  
  .project-btn a {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    font-weight: 700;
  }
  
  .category-tag {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
  }
}

/* Landscape Orientation Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
  .header-grid {
    min-height: auto;
    padding: 40px 0 30px;
  }
  
  .image-column {
    display: none;
  }
  
  .service-cards {
    display: none;
  }
  
  .main-heading {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .buttons-container {
    margin-bottom: 1rem;
  }
  
  .scroll-indicator {
    bottom: 15px;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .person-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  
  .service-card {
    border-width: 0.5px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .magnetic-btn:hover,
  .project-btn:hover {
    transform: none;
  }
  
  .service-card:hover {
    transform: none;
  }
  
  .scroll-indicator:hover {
    transform: translateX(-50%);
  }
  
  /* Disable hover animations for better touch performance */
  .decorative-shapes {
    animation: none !important;
  }
  
  .background-shapes .shape {
    animation: none !important;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .header-grid,
  .content-column,
  .image-column,
  .person-image,
  .service-card,
  .scroll-indicator,
  .decorative-shapes,
  .background-shapes,
  .animated-elements {
    animation: none !important;
    transition: none !important;
  }
  
  .person-image {
    animation: none !important;
  }
  
  .light-strip {
    animation: none !important;
  }
}

/* Print Styles */
@media print {
  .header-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .light-strip,
  .decorative-shapes,
  .background-shapes,
  .animated-elements,
  .scroll-indicator {
    display: none !important;
  }
  
  .content-column,
  .image-column {
    padding: 0;
  }
  
  .main-heading {
    color: #000;
    font-size: 2rem;
  }
  
  .description {
    color: #333;
  }
  
  .service-card {
    border: 1px solid #ccc;
    background: #fff;
    color: #000;
  }
}




.banner{
  background-color: #2e549b;
  margin-right: 65px;
  margin-top: -100px;
  width: 90%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}

.banner li {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  text-align: center;
  white-space: nowrap;
  position: relative;
  padding: 0 10px;
  cursor: pointer;
  transition: all 0.5s ease;
  z-index: 1;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

/* Magnetic ripple effect */
.banner li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(100, 181, 246, 0.6);
  border-radius: 20px;
  transform: translate(-50%, -50%) scale(0);
  animation: magneticRipple 3s ease-out infinite;
  z-index: -1;
}

@keyframes magneticRipple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
    border-color: rgba(100, 181, 246, 0.8);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.5;
    border-color: rgba(255, 255, 255, 0.6);
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
    border-color: rgba(100, 181, 246, 0.2);
  }
}

/* Wave interference pattern */
.banner li:nth-child(1) {
  animation: wavePattern1 4s ease-in-out infinite;
}

.banner li:nth-child(2) {
  animation: wavePattern2 4s ease-in-out infinite 0.5s;
}

.banner li:nth-child(3) {
  animation: wavePattern3 4s ease-in-out infinite 1s;
}

.banner li:nth-child(4) {
  animation: wavePattern4 4s ease-in-out infinite 1.5s;
}

@keyframes wavePattern1 {
  0%, 100% {
    transform: scale(1) translateY(0);
    background: rgba(255, 255, 255, 0.05);
  }
  25% {
    transform: scale(1.05) translateY(-2px);
    background: rgba(100, 181, 246, 0.15);
  }
  50% {
    transform: scale(1.1) translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
  }
  75% {
    transform: scale(1.05) translateY(-2px);
    background: rgba(100, 181, 246, 0.15);
  }
}

@keyframes wavePattern2 {
  0%, 100% {
    transform: scale(1) translateY(0);
    background: rgba(255, 255, 255, 0.05);
  }
  25% {
    transform: scale(0.95) translateY(2px);
    background: rgba(33, 150, 243, 0.15);
  }
  50% {
    transform: scale(0.9) translateY(4px);
    background: rgba(255, 255, 255, 0.1);
  }
  75% {
    transform: scale(0.95) translateY(2px);
    background: rgba(33, 150, 243, 0.15);
  }
}

@keyframes wavePattern3 {
  0%, 100% {
    transform: scale(1) translateX(0);
    background: rgba(255, 255, 255, 0.05);
  }
  33% {
    transform: scale(1.03) translateX(-2px);
    background: rgba(0, 188, 212, 0.15);
  }
  66% {
    transform: scale(1.06) translateX(2px);
    background: rgba(255, 255, 255, 0.1);
  }
}

@keyframes wavePattern4 {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    background: rgba(255, 255, 255, 0.05);
  }
  25% {
    transform: scale(1.02) rotate(1deg);
    background: rgba(156, 39, 176, 0.15);
  }
  50% {
    transform: scale(1.04) rotate(-1deg);
    background: rgba(255, 255, 255, 0.1);
  }
  75% {
    transform: scale(1.02) rotate(0.5deg);
    background: rgba(156, 39, 176, 0.15);
  }
}

/* Pulse rings */
.banner li::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 2.5s ease-out infinite;
  z-index: -2;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

/* Magnetic field lines */
.banner li .hover-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: conic-gradient(from 0deg, transparent, rgba(100, 181, 246, 0.2), transparent, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: magneticField 6s linear infinite;
  z-index: -3;
}

@keyframes magneticField {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.banner li .hover-effect-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(100, 181, 246, 0.4) 0%, rgba(42, 82, 152, 0.2) 50%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -2;
}

.banner li:hover {
  transform: scale(1.15) translateY(-3px);
  color: #ffffff;
  text-shadow: 
    0 0 20px rgba(255, 255, 255, 0.8),
    0 0 40px rgba(100, 181, 246, 0.6),
    0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.banner li:hover .hover-effect {
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%) scale(1);
}

.banner li:hover .hover-effect-outer {
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%) scale(1);
}

.banner li::before {
  content: '•';
  position: absolute;
  left: -15px;
  color: white;
  font-size: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.banner li:first-child::before {
  display: none;
}

/* Hide banner and section-divider + About Us Section Responsive Design */
@media (max-width: 1200px) {
  .banner {
    display: none;
  }
  .section-divider {
    display: none;
  }
  
  .about-section {
    padding: 60px 0;
  }
  
  .about-grid {
    gap: 40px;
  }
  
  .about-main {
    max-width: 55%;
  }
  
  .about-media {
    max-width: 40%;
  }
  
  .about-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-metrics {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-grid {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }
  
  .about-main {
    max-width: 100%;
    text-align: center;
  }
  
  .about-media {
    max-width: 100%;
    order: -1;
  }
  
  .about-heading h2 {
    font-size: 2.5rem;
  }
  
  .about-cards {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .about-actions {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .about-metrics {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }
  
  .about-heading h2 {
    font-size: 2.2rem;
  }
  
  .about-lead {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .about-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
  
  .about-card {
    padding: 25px;
  }
  
  .about-card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .about-card h3 {
    font-size: 1.3rem;
  }
  
  .about-card p {
    font-size: 1rem;
  }
  
  .about-btn {
    font-size: 1rem;
    padding: 15px 30px;
  }
  
  .about-metrics {
    flex-direction: column;
    gap: 20px;
  }
  
  .about-media-frame {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .about-images {
    padding: 2px;
  }
  
  .about-images img {
    width: calc(50% - 10px);
  }
  
  .about-badge {
    bottom: 20px;
    right: 20px;
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 30px 0;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .about-heading h2 {
    font-size: 2rem;
  }
  
  .about-kicker {
    font-size: 0.9rem;
  }
  
  .about-lead {
    font-size: 1rem;
  }
  
  .about-card {
    padding: 20px;
  }
  
  .about-card-icon {
    font-size: 1.8rem;
  }
  
  .about-card h3 {
    font-size: 1.2rem;
  }
  
  .about-card p {
    font-size: 0.95rem;
  }
  
  .about-btn {
    font-size: 0.95rem;
    padding: 12px 25px;
  }
  
  .metric-number {
    font-size: 1.8rem;
  }
  
  .metric-label {
    font-size: 0.9rem;
  }
  
  .about-media-frame {
    max-width: 350px;
  }
  
  .about-images {
    padding: 3px;
  }
  
  .about-images img {
    width: calc(50% - 8px);
    border-radius: 12px;
    padding: 1px;
  }
  
  .about-badge {
    bottom: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .badge-dot {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 25px 0;
  }
  
  .about-heading h2 {
    font-size: 1.8rem;
  }
  
  .about-lead {
    font-size: 0.95rem;
  }
  
  .about-card {
    padding: 18px;
  }
  
  .about-card-icon {
    font-size: 1.6rem;
  }
  
  .about-card h3 {
    font-size: 1.1rem;
  }
  
  .about-card p {
    font-size: 0.9rem;
  }
  
  .about-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  
  .about-media-frame {
    max-width: 300px;
  }
  
  .about-images {
    padding: 2px;
  }
  
  .about-images img {
    width: calc(50% - 6px);
    border-radius: 10px;
    padding: 1px;
  }
  
  .about-badge {
    bottom: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .about-section {
    padding: 20px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .about-heading h2 {
    font-size: 1.6rem;
  }
  
  .about-kicker {
    font-size: 0.85rem;
  }
  
  .about-lead {
    font-size: 0.9rem;
  }
  
  .about-card {
    padding: 15px;
  }
  
  .about-card-icon {
    font-size: 1.5rem;
  }
  
  .about-card h3 {
    font-size: 1rem;
  }
  
  .about-card p {
    font-size: 0.85rem;
  }
  
  .about-btn {
    font-size: 0.85rem;
    padding: 8px 18px;
  }
  
  .metric-number {
    font-size: 1.5rem;
  }
  
  .metric-label {
    font-size: 0.85rem;
  }
  
  .about-media-frame {
    max-width: 280px;
  }
  
  .about-images {
    padding: 2px;
  }
  
  .about-images img {
    width: calc(50% - 5px);
    border-radius: 8px;
    padding: 1px;
  }
  
  .about-badge {
    bottom: 8px;
    right: 8px;
    padding: 4px 8px;
    font-size: 0.7rem;
  }
}

/* Landscape orientations */
@media (max-height: 600px) and (orientation: landscape) {
  .banner {
    display: none;
  }
  .section-divider {
    display: none;
  }
  
  .about-section {
    padding: 30px 0;
  }
  
  .about-grid {
    gap: 30px;
  }
  
  .about-heading h2 {
    font-size: 2rem;
  }
  
  .about-media-frame {
    max-height: 300px;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .banner {
    display: none;
  }
  .section-divider {
    display: none;
  }
  
  .about-section {
    padding: 20px 0;
  }
  
  .about-heading h2 {
    font-size: 1.8rem;
  }
  
  .about-lead {
    font-size: 1rem;
  }
  
  .about-card {
    padding: 15px;
  }
  
  .about-media-frame {
    max-height: 250px;
  }
}
