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

:root {
  --dark-amethyst: #2f004f;
  --banana-cream: #fde74c;
  --sky-blue: #6c7cff;
}

body {
  font-family: "Roboto", "Cairo", Arial, sans-serif;
  scroll-behavior: smooth;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

/* start header styling */
#header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 0.1px solid #ddd;
}

#header .logo {
  width: 60px;
  max-height: auto;
}

#header .logo img {
  width: 100%;
}

#header > .links {
  flex: 0.5;
}

#header > .links > ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

#header > .links > ul .link {
  transition: 0.3s;
}

#header > .links > ul .link:hover {
  transform: translateY(-5px);
}

#header > .links > ul .link a {
  color: var(--dark-amethyst);
  font-weight: bold;
  font-size: 19px;
  letter-spacing: 0.5px;
}

#header .get-in-touch {
}

#header .get-in-touch-btn {
  color: white;
  font-weight: bold;
  font-size: 19px;
  padding: 6px 11px;
  background-color: var(--dark-amethyst);
  border-radius: 8px;
  cursor: pointer;
}

#header .get-in-touch-btn::after {
  content: "\2192";
  margin-left: 15px;
  display: inline-block;
  transition: 0.4s;
}

#header .get-in-touch-btn:hover::after {
  transform: rotate(-45deg);
}

/* start landing styling */
#landing {
  background-color: var(--dark-amethyst);
  color: white;
  /* for testing */
  background-image:
    /* Layer 1 (small, dense stars) */
    radial-gradient(1px 1px at 50px 100px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 200px 300px, #ccc, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 450px 500px, #eee, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 600px 150px, #fff, rgba(0, 0, 0, 0)),
    /* Layer 2 (medium stars) */
    radial-gradient(2px 2px at 100px 250px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 350px 400px, #eee, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 700px 50px, #ccc, rgba(0, 0, 0, 0)),
    /* Layer 3 (large, sparse stars) */
    radial-gradient(3px 3px at 300px 100px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(3px 3px at 500px 600px, #eee, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 800px 800px;
}

#landing .container {
  padding: 70px;
}

#landing .container .content-wrapper {
  display: flex;
  justify-content: space-between;
}

#landing .container .content-wrapper .eyebrow {
  color: #ccc;
  margin-left: 5px;
}

#landing .container .content-wrapper .title {
  font-size: 5rem;
  line-height: 1.2;
  margin-bottom: 40px;
  text-transform: capitalize;
}

#landing .container .content-wrapper .title .special-business {
  color: var(--banana-cream);
}

#landing .container .content-wrapper .description {
  color: #c7c7c7;
  margin-bottom: 1.8rem;
  line-height: 1.5;
  font-size: 1.3rem;
}

#landing .container .content-wrapper .button-group {
  margin-left: auto;
  display: block;
  width: fit-content;
  margin-right: auto;
}

#landing .container .content-wrapper .button-group button {
  width: 220px;
  background-color: var(--dark-amethyst);
  border: none;
  transition: 0.4s;
}

#landing .container .content-wrapper .button-group button a {
  color: var(--dark-amethyst);
  padding: 15px;
  font-size: 1.3rem;
  width: 100%;
  display: block;
  border-radius: 10px;
}

#landing .container .content-wrapper .button-group button.special-btn a {
  background-color: var(--banana-cream);
}

#landing .container .content-wrapper .button-group .see-how-it-works a {
  color: white;
}

#landing .container .content-wrapper .button-group button:hover {
  transform: translateY(-10px);
}

/* start after landing */
#after-landing {
  background-color: var(--dark-amethyst);
}

#after-landing .container {
  padding: 70px;
}

#after-landing .container .eyebrow {
  margin: 0px auto;
  width: fit-content;
  color: #989898;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 20px;
}

#after-landing .container .title {
  color: #fff;
  width: fit-content;
  margin: 0px auto;
  font-size: 2.5rem;
  text-align: center;
  font-weight: normal;
}

#after-landing .container .title .special {
  display: block;
  color: var(--sky-blue);
}

/* start ai consulting */
.ai-consulting {
  background-color: var(--dark-amethyst);
}

.ai-consulting .container {
  padding: 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.ai-consulting .container .left .title {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 15px;
}

.ai-consulting .container .left .description {
  line-height: 1.6;
  font-size: 1.5rem;
  width: 600px;
  color: #ccc;
  margin-bottom: 20px;
}

.ai-consulting .container .left .contact {
  font-size: 1.5rem;
  color: var(--banana-cream);
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: 0.4s;
}

.ai-consulting .container .left .contact:hover {
  transform: translateY(-5px);
}

.ai-consulting .container .right {
  width: 600px;
}

.ai-consulting .container .right img {
  border-radius: 20px;
  width: 100%;
}

/* start footer */
#footer {
  background-color: var(--dark-amethyst);
  position: relative;
}

#footer::before {
  content: "";
  display: block;
  position: absolute;
  width: 80%;
  background-color: white;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
}

#footer .container {
  padding: 70px;
  display: flex;
}

#footer .container .col {
  flex: 1;
}

#footer .container .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  flex: 1.5;
}

#footer .container .left img {
  width: 50%;
  margin-top: -70px;
}

#footer .container .left .description {
  color: #ccc;
  max-width: 80%;
  font-size: 1.3rem;
  line-height: 1.3;
  text-align: left;
  letter-spacing: 0.8px;
  margin-left: 40px;
  margin-top: -40px;
}

#footer .container .links-1 {
}

#footer .container .links-1 .title,
#footer .container .links-2 .title,
#footer .container .contact .title {
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 20px;
}

#footer .container .links-1 ul li,
#footer .container .links-2 ul li {
  padding: 10px 10px 10px 0;
}

#footer .container .links-1 ul li a,
#footer .container .links-2 ul li a,
#footer .container .contact ul li a {
  color: #ccc;
  font-size: 1.1rem;
}

#footer .container .contact ul li {
  padding: 10px 10px 10px 0;
}

#footer .container .contact ul li a {
  color: #fff;
}

#footer .container .contact ul li.social {
  display: flex;
  justify-content: space-between;
  width: 100px;
}

#footer .container .contact ul li.social a {
  border: none;
  border-radius: 50%;
}

#footer .container .contact ul li.social a i {
  font-size: 19px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer .row {
  padding-bottom: 20px;
}

#footer .row::before {
  content: "";
  width: 80%;
  height: 0.1px;
  background-color: #816e6e;
  display: block;
  margin: 0px auto 20px;
}

#footer .row .copyright {
  font-size: 14px;
  color: #ccc;
  width: fit-content;
  margin: 0px auto;
}
