@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

* {
  font-family: "Cairo", sans-serif;
  scroll-behavior: smooth;
}

body {
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

/*  */
.section {
  margin-top: 40px;
  min-height: 5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 30px 20px;
}

.heading {
  text-align: center;
  color: rgb(0, 0, 0);
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  animation: heroFloat 3s ease-in-out infinite;
}

.hero-head {
	 font-size: 1rem;
}

.heading::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background: linear-gradient(90deg, transparent, #feadad, transparent);
  animation: shimmer 2s infinite;
}

.heading::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background: linear-gradient(90deg, transparent, #feadad, transparent);
  animation: shimmer 2s infinite reverse;
}

.cta-section {
  margin-top: 40px;
  transform: translateY(50px);
  opacity: 0;
  animation: slideUp 1s ease-out 2s forwards;
}

.cta-btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.cta-btn::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;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5);
}

/* Light Dynamic Background */
.mesh-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(255, 100, 150, 0.1) 0%,
      transparent 70%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(100, 150, 255, 0.1) 0%,
      transparent 70%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 200, 100, 0.08) 0%,
      transparent 70%
    ),
    linear-gradient(45deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  animation: meshFlow 12s ease-in-out infinite;
}

@keyframes meshFlow {
  0%,
  100% {
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%;
    filter: hue-rotate(0deg);
  }
  50% {
    background-position: 100% 100%, 0% 0%, 25% 75%, 100% 0%;
    filter: hue-rotate(30deg);
  }
}

/* Floating Orbs - Light Version */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: float 15s infinite ease-in-out;
}

.orb-1 {
  top: 20%;
  left: 10%;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(255, 100, 150, 0.2) 0%,
    transparent 70%
  );
  animation-delay: 0s;
}

.orb-2 {
  top: 60%;
  right: 15%;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(100, 150, 255, 0.25) 0%,
    transparent 70%
  );
  animation-delay: -5s;
}

.orb-3 {
  bottom: 30%;
  left: 20%;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(255, 200, 100, 0.15) 0%,
    transparent 70%
  );
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(20px) rotate(240deg);
  }
}

/*
-
- Header Section
-
*/

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 30px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.logo {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4, #45b7d1, #96ceb4);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
  letter-spacing: 2px;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  list-style: none;
  gap: 40px;
}

.desktop-nav a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  position: relative;
  transition: all 0.3s ease;
  padding: 12px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.desktop-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 107, 157, 0.2),
    rgba(78, 205, 196, 0.2)
  );
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.desktop-nav a:hover::before {
  opacity: 1;
}

.desktop-nav a:hover {
  color: #ff6b9d;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

/* Mobile Menu Toggle - Hidden by default */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.menu-line {
  width: 30px;
  height: 3px;
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.menu-toggle.active .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}

/* Mobile Full Screen Menu */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.fullscreen-menu.active {
  opacity: 1;
  visibility: visible;
}

.menu-items {
  text-align: center;
  list-style: none;
}

.menu-items li {
  margin: 30px 0;
  overflow: hidden;
}

.menu-items a {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 4px;
  transition: all 0.4s ease;
  transform: translateY(100px);
  opacity: 0;
}

.fullscreen-menu.active .menu-items a {
  transform: translateY(0);
  opacity: 1;
}

.menu-items a:nth-child(1) {
  transition-delay: 0.1s;
}

.menu-items a:nth-child(2) {
  transition-delay: 0.2s;
}

.menu-items a:nth-child(3) {
  transition-delay: 0.3s;
}

.menu-items a:nth-child(4) {
  transition-delay: 0.4s;
}

.menu-items a:nth-child(5) {
  transition-delay: 0.5s;
}

.menu-items a:hover {
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  header {
    padding: 20px 25px;
  }

  .menu-items a {
    font-size: 36px;
  }
}

/*
-
- Hero Section
-
*/

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 1400px;
  padding: 0 20px;
  z-index: 10;
}

@keyframes gradientWave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes textGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 40px rgba(78, 205, 196, 0.5));
  }
}

#Hero-section .subtitle {
  font-size: 18px;
  margin-top: 8rem;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.7);
  letter-spacing: 3px;
  transform: translateY(50px);
  opacity: 0;
  animation: slideUp 1s ease-out 1s forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#Hero-section .services-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 20px 0;
  flex-wrap: wrap;
}

#Hero-section .service-sphere {
  width: 160px;
  height: 160px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 107, 157, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transform: translateY(100px);
  opacity: 0;
  animation: sphereRise 1s ease-out forwards;
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
}

#Hero-section .service-sphere:nth-child(1) {
  animation-delay: 1.2s;
}

#Hero-section .service-sphere:nth-child(2) {
  animation-delay: 1.4s;
}

#Hero-section .service-sphere:nth-child(3) {
  animation-delay: 1.6s;
}

#Hero-section .service-sphere:nth-child(4) {
  animation-delay: 1.8s;
}

@keyframes sphereRise {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#Hero-section .service-sphere::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 107, 157, 0.4),
    transparent
  );
  animation: rotate 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#Hero-section .service-sphere:hover::before {
  opacity: 1;
}

#Hero-section .service-sphere:hover {
  transform: translateY(-20px) scale(1.1);
  border-color: #ff6b9d;
  box-shadow: 0 20px 40px rgba(255, 107, 157, 0.3);
  background: rgba(255, 255, 255, 0.95);
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

#Hero-section .service-icon {
  font-size: 20px;
  color: #feadad;
  margin-bottom: 10px;
  z-index: 1;
}

#Hero-section .service-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
}

/* CTA Section */
#Hero-section .cta-section {
  margin-top: 80px;
  transform: translateY(50px);
  opacity: 0;
  animation: slideUp 1s ease-out 2s forwards;
}

#Hero-section .cta-btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

#Hero-section .cta-btn::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;
}

#Hero-section .cta-btn:hover::before {
  left: 100%;
}

#Hero-section .cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    
  #Hero-section .services-container {
    gap: 20px;
  }

  #Hero-section .service-sphere {
    width: 140px;
    height: 140px;
  }

  #Hero-section .service-icon {
    font-size: 20px;
  }

  #Hero-section .service-title {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  #Hero-section .services-container {
    flex-direction: column;
    align-items: center;
  }

  #Hero-section .service-sphere {
    width: 240px;
	padding: 10px;
    height: 110px;
    border-radius: 60px;
    gap: 0px;
  }

}

/*
-
- About us Section
-
*/

#About-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

#About-section .hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

#About-section .hero-content {
  position: relative;
  z-index: 2;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#About-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 20px 0;
}

#About-section .stat-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#About-section .stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.stat-card:hover::before {
  left: 100%;
}

#About-section .stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

#About-section .stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #feadad;
  margin-bottom: 10px;
}

#About-section .stat-label {
  font-size: 18px;
  color: rgb(33, 33, 33);
  font-weight: 500;
}

#About-section .story-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 50px;
  margin: 40px 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#About-section .story-title {
  font-size: 30px;
  font-weight: 500;
  color: #4e4e4e;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

#About-section .story-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  border-radius: 2px;
}

#About-section .story-content {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(77, 77, 77, 0.9);
  text-align: right;
  max-width: 1300px;
  margin: 0 auto;
}

#About-section .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

#About-section .value-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#About-section .value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 107, 107, 0.1),
    rgba(78, 205, 196, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

#About-section.value-card:hover::before {
  opacity: 1;
}

#About-section .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

#About-section .value-icon {
  font-size: 30px;
  color: #feadad;
  margin-bottom: 20px;
  display: block;
}

#About-section .value-title {
  font-size: 24px;
  font-weight: bold;
  color: #feadad;
  margin-bottom: 15px;
  font-weight: 600;
}

#About-section .value-description {
  font-size: 16px;
  color: rgba(66, 66, 66, 0.8);
  line-height: 1.6;
}

#About-section .cta-section {
  text-align: center;
  margin: 60px 0;
}

#About-section .cta-button {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

#About-section .cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

#About-section .cta-button:hover::before {
  left: 100%;
}

#About-section .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.shape:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

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

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 16px;
  }

  .nav-links {
    gap: 15px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .story-section {
    padding: 30px 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

/*
-
-Services Section
-
*/
#services-section {
  padding: 20px 20px 0;
  max-width: 1200px;
}

#services-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
}

#services-section .tilt-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

#services-section .tilt-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  border-radius: 24px;
  pointer-events: none;
}

#services-section .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

#services-section .card-title {
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  display: flex;
  align-items: center;
  gap: 12px;
}

#services-section .title-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

#services-section .card-subtitle {
  font-size: 16px;
  color: #718096;
  margin-bottom: 20px;
}

#services-section .services-list {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

#services-section .service-item {
  gap: 12px;
  padding: 12px 16px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

#services-section .service-item:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: translateX(-5px);
}

#services-section .service-icon {
  font-size: 16px;
  margin-left: 5px;
  color: #feadad;
}

#services-section .service-text {
  font-size: 15px;
  color: #4a5568;
  font-weight: 500;
}

#services-section .stats-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

#services-section .stat-card {
  background: rgba(102, 126, 234, 0.1);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

#services-section .stat-card:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: translateY(-5px);
}

#services-section .stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 8px;
}

#services-section .stat-label {
  font-size: 14px;
  color: #718096;
}

#services-section .layer-trigger {
  background: linear-gradient(135deg, #1ba3c6, #feadad);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: all 0.3s ease;
  font-weight: 600;
}

#services-section .layer-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

#services-section .layer-trigger::after {
  content: "←";
  font-size: 18px;
  transition: transform 0.3s ease;
}

#services-section .layer-trigger:hover::after {
  transform: translateX(-5px);
}

.service-buttons a {
  text-decoration: none;
  padding: 5px 10px;
  font-size: 11px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-buttons .read {
  background-color: #1ba3c6;
  color: white;
}

.btn-read:hover {
  background-color: #1486a3;
}

.service-buttons .contact {
  background-color: #feadad;
  color: white;
}

.btn-contact:hover {
  background-color: #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
  #services-section .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #services-section .tilt-card {
    padding: 24px;
  }

  #services-section .card-title {
    font-size: 20px;
  }

  #services-section .stats-section {
    grid-template-columns: 1fr;
  }
}

/*
-
- Our Work section
-
*/
#Projects-section .project-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
  min-height: 420px;
}

#Projects-section .card-content {
  position: relative;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

#Projects-section .card-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 20px;
}

#Projects-section .base-layer {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  z-index: 1;
}

#Projects-section .overlay-layer {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

#Projects-section .detail-layer {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.95),
    rgba(118, 75, 162, 0.95)
  );
  color: white;
  z-index: 3;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition-delay: 0.1s;
}

#Projects-section .project-card.active .detail-layer {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#Projects-section .project-card.active .overlay-layer {
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
}

#Projects-section .project-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.6s ease;
}

#Projects-section .project-card .project_title {
  font-size: 13px;
}


#Projects-section .project-card:hover .project-image {
  transform: scale(1.05);
}

#Projects-section .tech-tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  margin: 2px;
}

#Projects-section .floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

#Projects-section .floating-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(102, 126, 234, 0.1),
    rgba(118, 75, 162, 0.1)
  );
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

#Projects-section .page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#Projects-section .header-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
}

#Projects-section .status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

#Projects-section .feature-item {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

#Projects-section .feature-item:last-child {
  border-bottom: none;
}

#Projects-section .feature-icon {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

#Projects-section .progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}

#Projects-section .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
  border-radius: 2px;
  transition: width 0.8s ease;
}

#Projects-section .layer-trigger {
  position: absolute;
  bottom: 0px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

#Projects-section .layer-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

#Projects-section .project-card.active .layer-trigger {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  transform: rotate(45deg);
}

#Projects-section .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

#Projects-section .stat-item {
  text-align: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

#Projects-section .stat-number {
  font-size: 18px;
  font-weight: bold;
  display: block;
}

#Projects-section .stat-label {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 2px;
}

/*
-
- testimonials section
-
*/

.testimonials-section {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-section .section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
}

.testimonials-section .section-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-section .testimonial-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-section .testimonial-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 10px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  max-width: 800px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-section .testimonial-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.testimonials-section .testimonial {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  position: absolute;
  width: 100%;
  padding: 0 20px;
}

.testimonials-section .testimonial.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.testimonials-section .testimonial-content {
  position: relative;
  z-index: 2;
}

.testimonials-section .testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 30px;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-section .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonials-section .author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #1ba3c6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonials-section .author-info {
  text-align: right;
}

.testimonials-section .author-name {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.testimonials-section .author-position {
  font-size: 0.7rem;
  color: #7f8c8d;
}

.testimonials-section .testimonial-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.testimonials-section .nav-btn {
  background-color: #1ba3c6;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-section .nav-btn.prev {
  right: 5px;
}

.testimonials-section .nav-btn.next {
  left: 5px;
  z-index: 100000;
}

.testimonials-section .nav-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.testimonials-section .nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.testimonials-section .nav-btn:hover::before {
  width: 100%;
  height: 100%;
}

.testimonials-section .nav-btn:active {
  transform: translateY(0);
}

.testimonials-section .testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonials-section .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #feadad;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-section .indicator.active {
  background: #1ba3c6;
  transform: scale(1.2);
}

.testimonials-section .stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonials-section .star {
  color: #f39c12;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .testimonials-section .testimonial-container {
    padding: 40px 20px;
    margin: 0 10px 30px;
  }

  .testimonials-section .section-title {
    font-size: 2rem;
  }

  .testimonials-section .testimonial-text {
    font-size: 1.1rem;
  }

  .testimonials-section .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .testimonials-section .author-info {
    text-align: center;
  }

  .testimonials-section .testimonial-wrapper {
    margin-bottom: 10px;
  }

  .testimonials-section .nav-btn.prev {
    right: -50px;
  }

  .testimonials-section .nav-btn.next {
    left: -50px;
  }

  .testimonials-section .nav-btn {
    width: 45px;
    height: 45px;
    padding: 10px;
    font-size: 1rem;
  }

  .testimonials-section .nav-btn {
    padding: 12px 24px;
  }
}

/*
-
- contact section
-
*/
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-section .section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-section .section-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-section .contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-section .contact-form {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-section .contact-form::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.contact-section .form-content {
  position: relative;
  z-index: 2;
}

.contact-section .form-title {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-section .form-group {
  margin-bottom: 25px;
}

.contact-section .form-label {
  display: block;
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-section .form-input,
.contact-section .form-textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(102, 126, 234, 0.1);
  border-radius: 15px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  font-family: inherit;
  direction: rtl;
}

.contact-section .form-input:focus,
.contact-section .form-textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  background: rgba(255, 255, 255, 1);
}

.contact-section .form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-section .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-section .submit-btn {
  background: linear-gradient(45deg, #ff6b9d, #4ecdc4);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.contact-section .submit-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.contact-section .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.contact-section .submit-btn:hover::before {
  width: 100%;
  height: 100%;
}

.contact-section .contact-info {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-section .contact-info::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 3s infinite 1.5s;
}

.contact-section .info-content {
  position: relative;
  z-index: 2;
}

.contact-section .info-title {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-section .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-section .info-item:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateX(-5px);
}

.contact-section .info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #feadad;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.contact-section .info-details {
  flex: 1;
}

.contact-section .info-label {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 5px;
}

.contact-section .info-value {
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 500;
}

.contact-section .social-links {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.contact-section .social-title {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-section .social-icons {
  display: flex;
  gap: 15px;
}

.contact-section .social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #feadad;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.contact-section .social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.contact-section .map-container {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-section .map-placeholder {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-section .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-section .contact-form,
  .contact-section .contact-info {
    padding: 30px;
  }

  .contact-section .section-title {
    font-size: 2rem;
  }

  .contact-section .form-row {
    grid-template-columns: 1fr;
  }

  .contact-section .social-icons {
    justify-content: center;
  }
}