* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Rubik', sans-serif;
}
html, body {
  width: 100%;
  overflow-x: hidden; 
  overflow-y: auto;
  margin: 0;
  padding: 0; 
}
.partners {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #06161e;
  color: #ffffff;
  line-height: 1.6;
}

header {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 249, 255, 0.08); 
  padding: 20px 50px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 25px rgba(0, 249, 255, 0.2); 
  z-index: 100;
  width: 90%;
  max-width: 1100px;

}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 28px;
      color: #ffffff;
      cursor: pointer;
      user-select: none;
      text-shadow:
        0 0 10px #00bcd4,
        0 0 20px #00e5ff;
      transition: color 0.3s ease;
    }
    .logo i {
      font-size: 36px;
      filter: drop-shadow(0 0 4px #00e5ff);
    }
    .logo:hover {
      color: #00ffff;
      text-shadow:
        0 0 20px #00ffff,
        0 0 40px #00ffff;
    }

nav {
  display: block;
}

nav ul {
 display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  list-style: none;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffffff;
}


.hero {
   position: relative;
   min-height: 100vh;
  overflow: hidden;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
padding: 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #d0fefe;
  max-width: 700px;
  margin-inline: auto;
}

.hero button {
  background-color: #ffffff;
  color: #003333;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero button:hover {
  background-color: #ffffff;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}
.section-title {
  font-size: 3rem;
  color: transparent;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #00d4b1,
    0 0 20px #00d4c9,
    0 0 40px #00bcd4;
  -webkit-text-stroke: 1px white;
  animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
  0% {
    text-shadow:
      0 0 5px #fff,
      0 0 10px #08ccde,
      0 0 20px #098787,
      0 0 40px #21999d;
  }
  100% {
    text-shadow:
      0 0 10px #fff,
      0 0 20px #036f7d,
      0 0 30px #048394,
      0 0 60px #00bcd4;
  }
}



nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
#bgVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero-title {
  font-size: 4rem!important;  
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.6rem;
  color: white!important;
  opacity: 0.95;
}

@media (max-width: 768px) {
  header {
    width: 95%;
    padding: 15px 25px;
  }

  .header-inner {
    flex-direction: row;         
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
    padding: 0 10px;
  }

  .hero button {
    font-size: 14px;
    padding: 10px 20px;
  }
  .menu-toggle {
    display: block;
     margin-left: auto;
  }

  nav {
     position: absolute;
    top: 90px; 
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: 90%;
    background-color: rgba(0, 40, 50, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 249, 255, 0.15);
    z-index: 99;
    border: 1px solid rgba(0, 249, 255, 0.2);
  }

  nav.active {
    display: block;

  }

  nav ul {
     flex-direction: column;
    align-items: center;
    gap: 15px;
  }

   .menu-toggle {
    display: block;
  }
}



@media (max-width: 1024px) {
  header {
    width: 90%;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }
}


/*our services*/

.services {
  padding: 60px 20px;
   background: linear-gradient(to top left, #0f2c3a, #114765,#000);
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
   color: white; 
}

.service-cards {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
   padding: 0 20px;
}

.service-card {
 background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow:  0 10px 40px rgba(47, 44, 44, 0.5); 
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
   display: block;
}



.service-card:hover {
 transform: translateY(-12px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.6); 
  
}

.service-card img {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.service-card p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.5;
}
.service-card i {
  font-size: 64px;
  margin-bottom: 20px;
}
.service-card:nth-child(1) i {
  color: #d40000; /* Cyber Security */
}
.service-card:nth-child(2) i {
  color: #00eaff; /* Cloud */
}
.service-card:nth-child(3) i {
  color: #ff9800; /* Manage Services */
}
.service-card:nth-child(4) i {
  color: #cc00ff; /* Development */
}

@media (min-width: 1200px) {
  .service-cards {
    grid-template-columns: repeat(4, minmax(300px, 1fr));
  }
}


/*slider*/

.partners {
  background: linear-gradient(to top left, #0f2c3a, #114765,#000);
  padding: 60px 20px;
  text-align: center;
}

.partners h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 40px;
}

.logos {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: fit-content;
  animation: scrollLogos 15s linear infinite;
}

.logo-track img {
  height: 150px;
  margin: 0 40px;
  object-fit: contain;
  opacity: 0.8;
  transition: filter 0.3s, opacity 0.3s;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* الحركة */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*why tls*/

.why-timeline {
  background: linear-gradient(to top right, #0f2c3a, #114765,#000);
  padding: 100px 20px;
  color: white;
  font-family: 'Rubik', sans-serif;
  text-align: center;
}

.timeline-title {
   font-size: 3rem;
  color: transparent;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #00bcd4,
    0 0 20px #00bcd4,
    0 0 40px #00bcd4;
  -webkit-text-stroke: 1px white;
  animation: glow 1.5s ease-in-out infinite alternate;
}

.timeline-sub{
font-size: 1rem;
  color: white!important;
  opacity: 0.95;
}

@keyframes glow {
  0% {
    text-shadow:
      0 0 5px #fff,
      0 0 10px #08f9f1,
      0 0 20px #07af9f,
      0 0 40px #0c6868;
  }
  100% {
    text-shadow:
      0 0 10px #fff,
      0 0 20px #036f7d,
      0 0 30px #048394,
      0 0 60px #00bcd4;
  }

}

.timeline-box {
 max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 4px solid rgba(0, 0, 0, 0.4); 
  border-radius: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 25px rgba(0, 188, 212, 0.1);
  padding: 50px 30px;
  position: relative;
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.dot {
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
  box-shadow: 0 0 8px #00e0ff;
}

.content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 0 0 8px #00bcd4;
}

.content p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}
*/


/*footer*/

.site-footer {
  color: white;
  padding: 60px 20px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-logo p {
  color: #ccc;
  line-height: 1.6;
  max-width: 300px;
}

.footer-contact h4,
.footer-links h4,
.footer-social h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-contact ul,
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-contact ul li,
.footer-links ul li {
  margin-bottom: 10px;
  color: #ccc;
}

.footer-contact ul li i {
  margin-right: 10px;
  color: #00bcd4;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #00bcd4;
}

.footer-social .social-icons a {
  font-size: 18px;
  margin-right: 15px;
  color: #ccc;
  transition: color 0.3s;
}

.footer-social .social-icons a:hover {
  color: #00bcd4;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #0a2542;
  color: #aaa;
}

/* Modal container - hidden by default */
.modal {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
}

/* Modal content box */
.modal-content {
  background: linear-gradient(to bottom right, #0f2c3a, #114765);
  margin: 10% auto; /* 10% from top */
  padding: 30px 40px;
  border-radius: 16px;
  max-width: 600px;
  color: #d0fefe;
  box-shadow: 0 0 20px #00bcd4;
  font-size: 1.1rem;
  line-height: 1.5;
  position: relative;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 20px;
  color: #00bcd4;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #00ffff;
}

.modal-content a {
  color: #00bcd4;
  text-decoration: underline;
  font-weight: 600;
}

.modal-content a:hover {
  color: #00ffff;
}







