/* style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}

body {
  overflow-x: hidden;
}

/* Language Toggle */
#lang-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #B0FFF3;
  color: #004D80;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  z-index: 1000;
  cursor: pointer;
  transition: background 0.3s;
}

#lang-toggle:hover {
  background: #8dd3c9;
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  background:rgba(#004D80, 0, 0, 0.6);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  z-index: 999;
   display: flex;
  align-items: center; /* يخليهم في نفس الارتفاع */
  gap: 10px; /* مسافة بينهم */
  flex-wrap: nowrap; /* مايكسروش في سطر جديد */
}

.logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
    width: 50px;
  height: 50px;
  object-fit: cover; /* يخلي الصورة مش مشوهة */
}
.logo img{
    width: 90px;
    margin-right: 20px;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
    width: 50px;
  height: 50px;
  object-fit: cover; /* يخلي الصورة مش مشوهة */
}

.menu-icon span {
  width: 25px;
  height: 3px;
  padding-left: 20px;
  background: #8dd3c9;
  display: block;
}
@media (max-width: 600px) {
   .logo ,
   .menu-icon {
    width: 40px;
    height: 40px;
  }
}
.nav-links {
  position: absolute;
  top: 100%;
  right: -100%;
  background: #8dd3c9;
  width: 100%;
  text-align: center;
  transition: right 0.5s ease;
}

.nav-links a {
  display: block;
  padding: 15px;
  color: #004D80;
  text-decoration: none;
  font-size: 18px;
  border-bottom: 1px solid #004D80;
}
.nav-links.show {
  right: 0;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.bg-image.active {
  opacity: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  text-align: center;
  z-index: 2;
  color: white;
  animation: slideIn 2s ease-out;
  padding-top: 25%;
}
.hero-content img{
    width: 200px;
    margin-top: 40px;
}
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 30px;
}

.cta-button {
  background: #8dd3c9;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 15px;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
  background: #B0FFF3;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(50%, -100%);
  }
  to {
    opacity: 1;
    transform: translate(50%, -50%);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 18px;
  }
  .cta-button {
    font-size: 16px;
  }
}


.why-shark-section {
  padding: 80px 20px;
  background: linear-gradient(to left, #004D80, #182134, #8eb0cc);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.shark-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}

.shark-images img {
  width: 400px;
  height: auto;
  opacity: 0;
  transition: all 3s ease-out;
  border-radius: 15%;
}

.shark-logo img {
  width: 120px;
  margin-bottom: 10px;
}

.shark-content .section-title {
  font-size: 36px;
  margin-bottom: 10px;
}

.shark-content .desc {
  font-size: 18px;
  margin: 10px auto;
  max-width: 800px;
}

.contact-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 25px;
  background: #8dd3c9;
  color: #004D80;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #B0FFF3;
}

.hidden-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1.2s ease;
}

.hidden-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1.2s ease;
}

.show {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* سهم الترابط */
.arrow {
  font-size: 40px;
  color: #8dd3c9;
  animation: arrowMove 1.5s infinite ease-in-out;
}

@keyframes arrowMove {
  0% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(10px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.6; }
}

/* تأثير على الصورة التانية */
.highlight {
  animation: glowZoom 3s infinite alternate;
}

@keyframes glowZoom {
  0% { transform: scale(1); box-shadow: 0 0 0px #8dd3c9; }
  100% { transform: scale(1.05); box-shadow: 0 0 25px #8dd3c9; }
}

/* Media Queries */
@media (max-width: 768px) {
  .shark-images {
    flex-direction: column;
    gap: 20px;
  }

  .arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .shark-images img {
    width: 300px;
  }

  .shark-content .section-title {
    font-size: 28px;
  }

  .shark-content .desc {
    font-size: 16px;
    padding: 0 10px;
  }

  .shark-content .cta-button {
    font-size: 16px;
    padding: 10px 20px;
  }
}


.services-section {
  background-color: #182134;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 50px;
  color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* شكل الكروت */
.service-card {
  background-color: #1f2937;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  opacity: 0;
  transform: scale(0.8) rotate(8deg) translateY(60px);
  transition: all 1.2s ease;
}

.service-card i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #B0FFF3;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: #d1d5db;
}

/* عند ظهور الكارت */
.service-card.show {
  opacity: 1;
  transform: scale(1) rotate(0deg) translateY(0);
  box-shadow: 0 0 25px rgba(21, 250, 227, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .service-card {
    padding: 20px 15px;
  }

  .service-card i {
    font-size: 30px;
  }
}



/* stats-section*/
.stats-section {
  position: relative;
  background-image: url('/css/Artboard\ 3.jpg'); /* غيّري الصورة حسب اللي عندك */
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.stats-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* اللون الخفيف فوق الصورة */
  z-index: 1;
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stats-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.stats-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat {
  min-width: 150px;
}

.stat .counter {
  font-size: 3rem;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}


.portfolio-section {
  background-color:  #1f2937;
  padding: 80px 20px;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color:#0aa ;
  margin-bottom: 40px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(63, 222, 216, 0.1);
  transition: transform 0.5s ease;
}

.project-card img {
  width: 100%;
  display: block;
  height: auto;
}

.project-info {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(63, 222, 216, 0.1);
  color: white;
  padding: 20px;
  transition: 0.9s ease;
}

.project-card:hover .project-info {
  bottom: 0;
}

.view-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #8dd3c9;
  color: #182134;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
}

.project-card:hover {
  transform: scale(1.5);
}
/* CSS animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}




.identity-showcase {
  padding: 80px 20px;
  background-color: #182134;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #B0FFF3;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 50px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.identity-card {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(123, 199, 199, 0.08);
  transition: transform 0.9s ease;
}

.identity-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 2s ease;
}

.identity-card:hover img {
  transform: scale(1.05);
}

.cta-btn {
  margin-top: 40px;
}

.view-more {
  padding: 12px 28px;
  background-color: #8dd3c9;
  color:#fff;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.9s;
}

.view-more:hover {
  background-color: #B0FFF3;
  color: #fff;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s ease;
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}




.social-icons-section {
  padding: 80px 20px;
  background:  #182134;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #B0FFF3;
}

.social-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.icon-box {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  position: relative;
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.6s ease;
}

/* تأثير الضل */
.icon-box::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 10px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  filter: blur(4px);
  z-index: -1;
}

/* ظهور عند السكرول */
.icon-box.in-view {
  transform: translateY(0);
  opacity: 1;
}

/* ألوان مختلفة حسب المنصة */
.behance { background: linear-gradient(135deg, #1769ff, #4b8eff); }
.tiktok { background: linear-gradient(135deg, #000000, #ff0050); }
.linkedin { background: linear-gradient(135deg, #0077b5, #00a0dc); }
.insta { background: linear-gradient(135deg, #feda75, #d62976, #962fbf); }
.facebook { background: linear-gradient(135deg, #1877f2, #3b5998);}
.whatsapp {background: linear-gradient(135deg, #25d366, #128c7e);}

.email {background: linear-gradient(135deg, #f39c12, #e67e22);}


@media(max-width: 600px) {
  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

.clients {
  padding: 80px 20px;
  background: linear-gradient(to left, #004D80,   #182134,  #8eb0cc);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.clintes_logos{
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-bottom: 20px;
}
/* clintes_logos*/
.clintes_logos{
    overflow: hidden;
    padding: 30px 0;
}
.logos_slider{
    display: flex;
    gap: 60px;
    animation: slideLeft 25s linear infinite;
    width: max-content;
}
.logos_slider img{
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.2s ease;
}

.logos_slider:hover{
    filter: grayscale(0%);
}

@keyframes slideLeft{
    0%{
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



.contact_section {
  background: #182134;
  padding: 60px 20px;
  text-align: center;
  direction: rtl;
}

.contact_section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #B0FFF3;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.form-grid input,
.form-grid textarea {
  padding: 12px;
  border: 1px solid #B0FFF3;
  border-radius: 12px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.form-grid textarea {
  grid-column: span 2;
  resize: none;
  height: 120px;
}
.form-grid select {
  padding: 15px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 10px;
  width: 100%;
  margin-top: 10px;
  background-color: white;
  appearance: none;
}

.specialty-title {
  font-size: 1.2rem;
  margin: 20px 0 10px;
  color: #B0FFF3;
}

.specialty-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.specialty-btn {
  padding: 10px 18px;
  border: 2px solid #B0FFF3;
  border-radius: 25px;
  background: transparent;
  background-color: #B0FFF3;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
}

.specialty-btn.active {
  background-color: #8dd3c9;
  color: #fff;
}

.submit-btn {
  padding: 14px 28px;
  font-size: 16px;
  border: none;
  background-color: #B0FFF3;
  color: #182134;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background-color: #8eb0cc;
}

.form-msg {
  margin-top: 20px;
  font-size: 16px;
  color: green;
}
.contact-section select {
  padding: 15px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 10px;
  width: 100%;
  margin-top: 10px;
  background-color: white;
  appearance: none;
}


/* Responsive */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid textarea {
    grid-column: span 1;
  }
}




.footer {
  background-color: #111;
  color: #eee;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-tagline {
  font-size: 1rem;
  line-height: 1.5;
  color: #bbb;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  border-bottom: 2px solid #555;
  padding-bottom: 10px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0aa;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bbb;
}
.footer-contact p a{
  color: #bbb ;
}
.footer-social-icons {
  margin-top: 15px;
}

.footer-social-icons a {
  color: #bbb;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.footer-social-icons a:hover {
  color: #0aa;
}
.footer-bottom {
  border-top: 1px solid #bbb;
  text-align: center;
  padding-top: 20px;
  margin-top: 40px;
  font-size: 14px;
  color: #8dd3c9;
}
.footer-bottom a{
  color: #8dd3c9;
}
/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .footer-column {
    min-width: 100%;
  }
  .footer-social-icons a {
    margin-right: 10px;
    font-size: 24px;
  }
}
