@import url("https://fonts.googleapis.com/css2?family=Aref+Ruqaa+Ink:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.aref-ruqaa-ink-bold {
  font-family: "Aref Ruqaa Ink", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px
}

.tajawal-bold {
  font-family: "Tajawal", serif;
  font-weight: 800;
  font-style: normal;
  font-size: 64px; 
  color: #626262
}

body {
  font-family: "Cairo", sans-serif;
  text-align: center;
  color: #333;
  background-color: #f8f8f8;
  line-height: 1.6;
  position: relative;
}

.ic-bg1 {
  width: 83px;
  aspect-ratio: 1;
  position: absolute;
  z-index: -1;
  top: 30%;
  transform: translateY(-50%);
  left: 0;
}
.ic-bg2 {
  width: 100px;
  aspect-ratio: 1;
  position: absolute;
  z-index: -1;
  top: 80%;
  transform: translateY(-50%);
  right: 8%;
}
.ic-bg3 {
  width: 83px;
  aspect-ratio: 1;
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 0;
}

/* --- Hero Section Styling --- */
.hero-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px;
}

h1 {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
  color: #2c2c2c;
}

.highlight-blue {
  color: #00bfff;
}

.highlight-purple {
  color: #9370db; 
}

.description {
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.1em;
  color: #777777;
}

.layen-wrapper {
  position: relative;
}
.layen {
  position: absolute;
  font-family: "Aref Ruqaa Ink", serif;
  color: #00bfff;
  font-size: 40px;
  top: 5px;
  left: 12px;
}

/* --- CTA Buttons --- */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}

.cta-button {
  font-family: "Cairo", "arial";
  padding: 15px 35px;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  color: #ededee;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-2px);
}

.primary-purple {
  background-color: #9370db;
  color: white;
}

.primary-purple:hover {
  background-color: #7b5ab8;
}

.secondary-cyan {
  background-color: #00bfff;
  color: white;
}

.secondary-cyan:hover {
  background-color: #0099cc;
}

/* --- Partnerships Section --- */
.partnerships-section {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding-bottom: 20px;
}

.partnerships-text {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 0.9em;
  color: #777;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.logos-container img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}

.logos-container img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 768px) {
  h1 {
    font-size: 2em;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta-button {
    width: 80%;
  }

  .logos-container {
    flex-wrap: wrap;
    gap: 20px;
  }

  .logos-container img {
    height: 30px;
  }
}

.creative-text-wrapper {
  display: inline-block;
  padding: 10px 15px;
  position: relative;
  background-color: rgba(200, 230, 255, 0.5);
  border: 3px solid #00bfff;
  color: #00bfff;
  font-weight: bold;
}

/* Style for all corner handles */
.corner {
  content: "";
  position: absolute;
  width: 12px; 
  height: 12px;
  z-index: 10;
  background-color: white; 
  border: 3px solid #00bfff; 
  box-sizing: border-box; 
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.corner.top-right {
  top: -6px;
  right: -6px;
}

.corner.top-left {
  top: -6px;
  left: -6px;
}

.corner.bottom-right {
  bottom: -6px;
  right: -6px;
}

.corner.bottom-left {
  bottom: -6px;
  left: -6px;
}

.ic-arrow {
  position: absolute;
  bottom: -50px;
  right: -40px;
}

.border-skew1 {
  display: block;
  position: absolute;
  border: 1px solid #dde1e3;
  width: 100%;
  height: 100%;
  transform: skewX(2deg) skewY(-1deg);
  transition: transform 0.4s;
}

.border-skew2 {
  display: block;
  position: absolute;
  border: 1px solid #dde1e3;
  width: 100%;
  height: 100%;
  transform: skewX(-2deg) skewY(1deg);
  transition: transform 0.4s;
}

.partnerships-section:hover > .border-skew1,
.partnerships-section:hover > .border-skew2 {
  transform: skewX(0deg) skewY(0deg);
}
