* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo";
}
body {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #eeeeee 100%);

  color: #063653;
  font-family: "Cairo";
}
.container {
  margin: 0 180px;
}
.hero {
  width: 50%;
}
.hero video {
  width: 100%;
  max-height: 100%;
}
main {
  display: flex;
}
header {
  display: flex;
  height: 120px;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 12px;
}
.menu {
  display: none;
  cursor: pointer;
}
header .logo {
  height: 100%;
}
header img {
  height: 100%;
}
ul {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: center;
}
ul li a {
  text-decoration: none;
  font-size: 20px;
  color: black;
}
.whatsapp {
  color: green;
  font-size: 36px;
}
.contact-now {
  background-color: #96eff2;
  padding: 8px;
  color: #063653;
  border-radius: 16px;
  border: 1px solid black;
  font-weight: bold;
}
.contact-now:hover {
  background-color: #6edee3;
}
.intro {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
h1 {
  margin-top: -10px;
  padding: 0;
  line-height: 1;
  font-size: 80px;
  color: #063653;
}
h4 {
  letter-spacing: 10px;
  color: #6edee3;
  transform: translateX(8px);
  font-weight: 900;
}
.intro.slogan {
  font-size: 30px;
  font-weight: bold;
  margin: 16px 0;
}
.desc {
  opacity: 1;
  color: #063653;
  font-weight: 600;
  max-width: 550px;
}
main {
  margin-top: 80px;
  height: calc(100vh-220px);
}
.fast-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

/* Link style */
.fast-contact a {
  font-size: 18px;
  padding: 10px 18px;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, #25d366, #1ebe5d);
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseGlow 2s infinite;
}

/* Icon size */
.fast-contact a i {
  margin-right: 8px;
  font-size: 20px;
}

/* Hover effect */
.fast-contact a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.9);
}

/* Keyframes for glow pulsing */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.6),
      0 0 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8),
      0 0 35px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.6),
      0 0 20px rgba(37, 211, 102, 0.4);
  }
}

/* Optional floating animation */
.fast-contact a {
  animation: pulseGlow 2s infinite, floaty 3s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.contactp {
  margin-top: 16px;
}
.hero img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  transform: translate3d(0, 0, 0);
  animation: float 3s ease-in-out infinite;
  will-change: transform;
}
.about-contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 20px;
  direction: rtl;
}
.about {
  flex: 1;
}
.about h2 {
  font-size: 28px;
  margin-bottom: 15px;
}
.about p {
  font-size: 16px;
  line-height: 1.8;
  color: #063653;
  font-weight: 600;
}
.contact-form {
  flex: 1;
  width: 100%;
  background: #021724;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.contact-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: white;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #aaa;
  font-size: 15px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.send-btn {
  width: 100%;
  padding: 12px;
  background: #063653;
  color: #eee;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}
.send-btn:hover {
  background: #05293f;
}
.site-footer {
  position: relative;
  direction: rtl;
  background-image: url("Frame.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.site-footer.footer-overlay {
  background: rgba(0, 0, 0, 0.1);
  padding: 60px 20px 30px;
}
.site-footer::before {
  content: "";
  background: url("footer-bg.jpg") center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo img {
  width: 120px;
  margin-bottom: 15px;
}
.footer-logo p {
  font-size: 14px;
  line-height: 1.6;
}
.footer-services h3,
.footer-contact h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.footer-services ul {
  list-style: none;
  padding: 0;
  font-size: 18px;
  line-height: 1.8;
  display: flex;
  flex-wrap: wrap;
}
.footer-services ul li {
  font-size: 18px;
}
.footer-contact p {
  font-size: 15px;
  margin: 5px 0;
}
.footer-social a {
  display: inline-block;
  margin: 0 5px;
  color: #000;
  font-size: 18px;
  transition: color 0.3s ease;
}
.footer-social a:hover {
  color: #96eff2;
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 14px;
  color: #444;
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
.hero img:hover {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .hero img {
    animation: none;
  }
}
@media (max-width: 575px) {
  main {
    flex-direction: column-reverse;
    margin: 0;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    height: fit-content;
  }
  .hero {
    width: 100%;
  }
  .menu {
    display: block;
    font-size: 32px;
  }
  .about {
    text-align: center;
  }
  .container {
    margin: 0 24px;
  }
  .fast-contact {
    display: flex;
    align-items: center;
  }
  .fast-contact a {
    font-size: 18px;
    padding: 6px 10px;
    display: block;
    border-radius: 12px;
    cursor: pointer;
  }
  .intro {
    width: 100%;
    text-align: center;
    margin-top: 0px;
    align-items: center;
  }
  h1 {
    font-size: 50px;
  }
  h4 {
    font-size: 16px;
  }
  .slogan {
    font-size: 24px;
  }
  nav {
    display: none;
  }
  nav.open {
    display: block;
    position: absolute;
    top: 60px;
    right: 0;
    background: #dededf;
    padding: 1rem;
    width: 100%;
    z-index: 4;
  }
  nav.open ul {
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
  }
  nav.open ul li {
    border-bottom: 1px solid black;
    width: 100%;
    text-align: center;
  }
  nav.open ul li a {
    display: block;
    width: fit-content;
  }
  .fast-contact {
    width: 90%;
  }
  .fast-contact input {
    width: 80%;
  }
  .fast-contact button {
    width: 20%;
  }
  .about-contact {
    flex-direction: column;
  }
  .footer-services ul {
    justify-content: center;
  }
}
@media (min-width: 576px) and(max-width:767px) {
  .menu {
    display: block;
    font-size: 32px;
  }
  main {
    flex-direction: column-reverse;
    margin: 0;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    height: fit-content;
  }
  .hero {
    width: 100%;
  }
  .container {
    margin: 0 24px;
  }
  .fast-contact a {
    font-size: 18px;
    padding: 6px 10px;
    border-radius: 12px;
    cursor: pointer;
  }
  .intro {
    width: 100%;
    text-align: center;
    margin-top: 0px;
  }
  h1 {
    font-size: 50px;
  }
  h4 {
    font-size: 16px;
  }
  .slogan {
    font-size: 24px;
  }
  nav {
    display: none;
  }
  .fast-contact {
    width: 90%;
  }
  .fast-contact input {
    width: 80%;
  }
  .fast-contact button {
    width: 20%;
  }
  .footer-services ul {
    justify-content: center;
  }
}
@media (min-width: 768px) and(max-width:991px) {
  .menu {
    display: block;
    font-size: 40px;
  }
  main {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    margin: 0;
    margin-top: 100px;
    height: fit-content;
  }
  .fast-contact a {
    font-size: 20px;
    padding: 8px 12px;
    border-radius: 14px;
    cursor: pointer;
  }
  .hero {
    width: 80%;
    text-align: center;
  }
  .container {
    margin: 0 24px;
  }
  .intro {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
  }
  h1 {
    font-size: 50px;
  }
  h4 {
    font-size: 16px;
  }
  .slogan {
    font-size: 24px;
  }
  .footer-services ul {
    justify-content: center;
  }
  nav {
    display: none;
  }
  .fast-contact {
    width: 70%;
  }
  .fast-contact input {
    width: 80%;
  }
  .fast-contact button {
    width: 20%;
  }
}
@media (min-width: 992px) and(max-width:1199px) {
  main {
    height: fit-content;
  }
}
@media (min-width: 1200px) and(max-width:1399px) {
  main {
    height: fit-content;
  }
}
@media (min-width: 1400px) {
}
