/* ==========================================
   ROOT & GLOBAL
   ========================================== */

:root {
  --accent: #494ccc;
  --accent-light: #0ff;
  --white: #ffffff;
  --black: #000000;
  --white-dim: rgba(255, 255, 255, 0.85);
  --glass-bg: #f0f2ff;
  --glass-border: rgba(73, 76, 204, 0.2);
  --glass-shadow: 0 8px 32px rgba(73, 76, 204, 0.15);
}

@keyframes shimmer { to { background-position: 100% } }

@keyframes move-forever1 {
  0%   { transform: translate(85px, 0%); }
  100% { transform: translate(-90px, 0%); }
}
@keyframes move-forever2 {
  0%   { transform: translate(-90px, 0%); }
  100% { transform: translate(85px, 0%); }
}
@keyframes move-forever3 {
  0%   { transform: translate(85px, 0%); }
  100% { transform: translate(-90px, 0%); }
}
@keyframes move-forever4 {
  0%   { transform: translate(-90px, 0%); }
  100% { transform: translate(85px, 0%); }
}

*, *:before, *:after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background-color: #fff;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  scroll-behavior: none;
}

@media (forced-colors: active) {
  p {
    background: #212121;
    color: aquamarine;
  }
}


/* ==========================================
   NAVBAR
   ========================================== */

.mask-custom {
  backdrop-filter: blur(5px);
  background-color: #edecf0;
}

.navbar-brand {
  font-size: 1.75rem;
  letter-spacing: 3px;
}

.navbar-np {
  color: var(--accent);
  font-style: italic;
}

.navbar-ca {
  color: var(--white);
  font-style: italic;
  text-shadow: 2px 2px var(--accent);
}

.lang-btn {
  border: none;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: background 0.2s ease;
  margin-right: 4px;
}

.lang-btn:hover {
  background: #adaff4;
}

.lang-btn.active {
  background: #090a53;
  color: var(--white);
  font-weight: 700;
}

div:has(> .lang-btn) {
  margin-right: 1.5rem;
}


/* ==========================================
   HERO / INTRO
   ========================================== */

#index {
  position: relative;
}

#intro {
  background-image: url("../images/bg-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  overflow: hidden;
}

.mask {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: absolute;
  left: 8%;
  top: 65%;
  transform: translateY(-50%);
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.45) 0%,
    transparent 100%
  );
  padding: 2rem 3rem;
  border-radius: 8px;
}

.name {
  background: linear-gradient(90deg, #494ccc, #7b7fdd, #494ccc) -100% / 200%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: shimmer 2s linear infinite;
  font-weight: 700;
}

.hero-eyebrow {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin: 0 0 0.5rem;
  opacity: 0.9;
}

.hero-top h1 {
  margin: 0 0 1.5rem;
  font-size: 4rem;
  line-height: 1.1;
}

.hero-bottom p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-content {
    top: 45%;
    left: 5%;
    padding: 1.5rem;
    max-width: 90%;
  }

  .hero-top h1 {
    font-size: 2.5rem;
  }

  .hero-bottom p {
    font-size: 1.1rem;
  }
}


/* ==========================================
   WAVE SVG SEPARATOR
   ========================================== */

.editorial {
  display: block;
  width: 100%;
  height: 60px;
  max-height: 60px;
  margin: 0;
  z-index: 5;
  bottom: -1px;
  position: absolute;
  left: 0;
}

.parallax1 > use { animation: move-forever1 10s linear infinite; }
.parallax2 > use { animation: move-forever2 8s linear infinite; }
.parallax3 > use { animation: move-forever3 6s linear infinite; }
.parallax4 > use { animation: move-forever4 4s linear infinite; }

.parallax1 > use:nth-child(1),
.parallax2 > use:nth-child(1),
.parallax3 > use:nth-child(1),
.parallax4 > use:nth-child(1) {
  animation-delay: -2s;
}


/* ==========================================
   SECTION TITLES
   ========================================== */

.section-label {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #494ccc;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #494ccc;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-style: normal;
}


/* ==========================================
   SECTIONS LAYOUT
   ========================================== */

.cards-section {
  padding: 4rem max(24px, 5%);
}

@media (max-width: 480px) {
  .cards-section {
    padding: 2rem 16px;
  }
}

/* ==========================================
   SERVICE CARDS (product-cards)
   ========================================== */

@layer reset, base, composition, features, utilities;

@import "https://cdn.jsdelivr.net/npm/kiso.css@latest/kiso.css" layer(reset);

@layer features {
  @scope (.scope.product-cards) to (.scope) {
    :scope {
      container: --scope / inline-size;
    }

    ._card {
      --_accent: var(--product-card--accent, #c34a36);
      --_row-gap: 0.25rlh;
      --_padding: 16px;
      --_radius: 40px;
      --_inner-radius: calc(var(--_radius) - var(--_padding));
      --_category-radius: 16px;
      --_duration: 350ms;
      --_has-hocus-on: ;
      --_has-hocus-off: initial;

      display: block grid;
      grid-template-columns: minmax(0, 1fr);
      gap: var(--_row-gap) 1rem;
      align-content: start;
      padding: var(--_padding);
      border-radius: var(--_radius);
      background: var(--glass-bg);
      backdrop-filter: blur(15px);
      border: 1px solid var(--glass-border);
      box-shadow: var(--glass-shadow);
      color: var(--white);
    }

    ._card:has(._thumbnail-stack:hover) {
      --_has-hocus-on: initial;
      --_has-hocus-off: ;
    }

    ._card:has(:focus-visible) {
      --_has-hocus-on: initial;
      --_has-hocus-off: ;
    }

    ._card > * {
      grid-column: 1 / -1;
    }

    ._card > ._thumbnail-stack {
      grid-row: 1 / 2;
    }

    ._card > ._category {
      z-index: 1;
      grid-row: 1 / 2;
      place-self: start;
      max-inline-size: calc(100% - (var(--_category-radius) + var(--_inner-radius)));
    }

    ._thumbnail-stack {
      display: block grid;
    }

    ._thumbnail-stack > img {
      grid-area: 1 / 1;
      inline-size: 100%;
    }

    ._card img {
      aspect-ratio: 1;
      border-radius: var(--_inner-radius);
      filter: url(#svg-inset-shadow);
      transition-property: clip-path;
      transition-duration: var(--_duration);
      transition-timing-function:
        var(--_has-hocus-on, cubic-bezier(0.19, 1, 0.22, 1))
        var(--_has-hocus-off, cubic-bezier(0.95, 0.05, 0.795, 0.035));
    }

    ._card img:nth-child(1) {
      filter: brightness(0.8) grayscale(1);
    }

    ._card img:nth-child(2) {
      display: none;
    }

    @media (any-hover: hover) and (pointer: fine) {
      ._card img:nth-child(2) {
        display: block;
        clip-path:
          var(--_has-hocus-on, inset(0 round var(--_inner-radius)))
          var(--_has-hocus-off, inset(100% round var(--_inner-radius)));
      }
    }

    ._category {
      position: relative;
      align-content: center;
      min-block-size: calc(var(--_category-radius) * 2);
      padding-block: 1em;
      padding-inline: 1.5em;
      border-end-end-radius: var(--_category-radius);
      background-color: rgba(255, 255, 255, 0.08);
      color: var(--white);
      filter: drop-shadow(6px 6px 3px oklch(from black l c h / 15%));
    }

    ._category::before,
    ._category::after {
      content: "";
      position: absolute;
      block-size: var(--_category-radius);
      aspect-ratio: 1;
      mask-image: radial-gradient(circle at 100% 100%, transparent var(--_category-radius), red calc(var(--_category-radius) + 1px));
      background-color: inherit;
    }

    ._category::before {
      inset-block-start: 0;
      inset-inline-start: 100%;
    }

    ._category::after {
      inset-block-start: 100%;
      inset-inline-start: 0;
    }

    ._description {
      color: #000;
    }

    ._tag-list {
      padding-block: 0;
      margin: 0;
    }

    ._tag {
      padding-block: 0.5em;
      padding-inline: 1em;
      border-radius: calc(infinity * 1px);
      background-color: oklch(from var(--_accent) 90% 25% h);
      font-size: 0.75rem;
    }
  }
}

@layer composition {
  .grid {
    --_c-fill-mode: var(--grid--fill-mode, auto-fit);
    --_c-row-gap: var(--grid--row-gap, 1.5rem);
    --_c-column-gap: var(--grid--column-gap, 1.5rem);
    --_c-column-max-count: var(--grid--column-max-count, 5);
    --_c-column-min-width: var(--grid--column-min-width, 20rem);
    --_c-column-width-calculated: calc(
      (100% - var(--_c-column-gap) * (var(--_c-column-max-count) - 1)) /
      var(--_c-column-max-count)
    );
    --_c-column-width: min(100%, max(var(--_c-column-min-width), var(--_c-column-width-calculated)));

    display: block grid;
    grid-template-columns: repeat(var(--_c-fill-mode), minmax(var(--_c-column-width), 1fr));
    gap: var(--_c-row-gap) var(--_c-column-gap);
  }

  .cluster {
    display: block flex;
    flex-wrap: wrap;
    gap: var(--cluster--gap, 1rem);
    justify-content: start;
    align-items: center;
  }
}

@layer utilities {
  .-fluid-text {
    --_fluid-text--min-width: var(--fluid-text--min-width, 375);
    --_fluid-text--max-width: var(--fluid-text--max-width, 1280);
    --_fluid-text--min-font-size: var(--fluid-text--min-font-size, 14);
    --_fluid-text--max-font-size: var(--fluid-text--max-font-size, 16);
    --_fluid-text--base-font-size: var(--fluid-text--base-font-size, 16);
    --_fluid-text--slope: calc(
      (var(--_fluid-text--max-font-size) - var(--_fluid-text--min-font-size)) /
      (var(--_fluid-text--max-width) - var(--_fluid-text--min-width))
    );
    --_fluid-text--intercept: calc(
      var(--_fluid-text--min-font-size) - var(--_fluid-text--slope) * var(--_fluid-text--min-width)
    );
    --_fluid-text--font-size: clamp(
      calc(var(--_fluid-text--min-font-size) / var(--_fluid-text--base-font-size) * 1rem),
      calc(var(--_fluid-text--slope) * 100svi + var(--_fluid-text--intercept) / var(--_fluid-text--base-font-size) * 1rem),
      calc(var(--_fluid-text--max-font-size) / var(--_fluid-text--base-font-size) * 1rem)
    );
    font-size: var(--_fluid-text--font-size);
  }

  .-trim-both {
    text-box: trim-both cap alphabetic;
  }

  .-line-clamp {
    --_limit: var(--line-clamp--limit, 3);
    display: -webkit-box;
    overflow-block: clip;
    -webkit-box-orient: block-axis;
    -webkit-line-clamp: var(--_limit);
    line-clamp: var(--_limit);
  }
}


/* ==========================================
   PRICING SECTION
   ========================================== */

.pricing-section {
  text-align: center;
}

.pricing-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1a1a2e;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: left;
  transition: transform 0.25s ease;
}

.standard {
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow);
}

.dashboard {
  background: #edeef0;
  box-shadow: 0 8px 24px rgba(120, 130, 160, 0.18);
}

.ml {
  background: #e8e4fc;
  box-shadow: 0 8px 28px rgba(123, 127, 221, 0.25);
}

.monthly {
  background: #FEFCE8;
  box-shadow: 0 8px 24px rgba(180, 170, 90, 0.22);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000;
}

.price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.price-standard {
  color: var(--accent);
}

.price-dashboard {
  color: #64748B;
}

.price-ml {
  color: #7C3AED;
}

.price-monthly {
  color: #854D0E;
}

.duration {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.pricing-card ul {
  padding-left: 1rem;
  margin: 0;
}

.pricing-card li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: #000;
}

/* Highlight (ML package) */
.pricing-card.highlight {
  border: 2px solid var(--accent);
  transform: scale(1.02);
}


/* ==========================================
   CASE STUDIES (bento grid)
   ========================================== */

.bento-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

.bento-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  border-radius: 14px;
  overflow: clip;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  color: var(--white);
}

.bento-card.small {
  flex: 1 1 280px;
  max-width: 340px;
}

.bento-card.small .bento-visual {
  aspect-ratio: 16 / 9;
}

.bento-card.small .bento-visual img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.bento-visual {
  overflow: clip;
  width: 100%;
  height: 100%;
}

.bento-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: rgba(255, 255, 255, 0.05);
  transition: scale 0.4s ease, opacity 0.4s ease;
}

.bento-card.small .bento-visual img {
  object-fit: cover;
}

.bento-card:hover .bento-visual img {
  scale: 1.03;
}

.bento-content {
  display: grid;
  place-items: center start;
  gap: 0.5rem;
  padding: 1.5rem;
  grid-template-rows: auto 1fr auto;
}

.bento-content small {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.bento-content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  margin: 0;
  align-self: start;
  color: #000;
}

.bento-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #000;
}

@media (prefers-reduced-motion: no-preference) {
  .bento-card.small {
    opacity: 0;
    will-change: transform;
  }

  .bento-reveal {
    animation:
      bento-fade-in 660ms ease forwards,
      bento-slide-up 1000ms cubic-bezier(0, 0, 0.1, 1) forwards;
  }

  .bento-reveal .bento-visual img {
    animation: bento-fade-in 1s ease forwards;
  }

  @keyframes bento-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  @keyframes bento-slide-up {
    from { transform: translateY(100px); }
    to   { transform: translateY(0); }
  }
}


/* ==========================================
   ABOUT BOX
   ========================================== */

.box {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  color: var(--white);
  margin: 0 auto;
  max-width: 90%;
  padding: 20px 50px;
  border-radius: 10px;
}

.box h1 {
  text-transform: uppercase;
  color: var(--black);
}

.box p {
  color: var(--black);
  text-align: justify;
}

.box-inner {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.box-photo {
  flex-shrink: 0;
}

.box-photo img {
  width: 180px;
  height: 180px;
  object-fit: cover;
}

.box-text {
  flex: 1;
}

@media (max-width: 600px) {
  .box-inner {
    flex-direction: column;
    align-items: center;
  }

  .box-text {
    text-align: center;
  }
}

.box hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin: 1.5rem 0;
  opacity: 0.4;
}

.btn-outline {
  display: inline-block;
  padding: 0.65rem 1.75rem;
  border: 2px solid var(--accent);
  border-radius: 30px;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.box-skills {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.skill-tag {
  background: rgba(73, 76, 204, 0.1);
  color: var(--accent);
  border: 1px solid rgba(73, 76, 204, 0.25);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}


/* ==========================================
   CONTACT FORM
   ========================================== */

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
  padding: 40px;
  box-shadow: var(--glass-shadow);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--black);
  border-radius: 15px;
  color: var(--black);
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--black);
}

.form-input:focus,
.form-textarea:focus {
  border-color: #0004ff;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.submit-btn {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: var(--white);
  border: none;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #764ba2, #667eea);
  transition: left 0.3s ease;
}

.submit-btn:hover::before { left: 0; }

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn span {
  position: relative;
  z-index: 1;
}


/* ==========================================
   FOOTER
   ========================================== */

.deneb_footer .widget_wrapper {
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 200px;
    padding-bottom: 70px;
}

@media (max-width: 768px) {
  .contact-form { padding: 30px 25px; }
  .form-row { grid-template-columns: 1fr; gap: 15px; }
}

@media (max-width: 480px) {
  .contact-form { padding: 25px 20px; }
}


@media (max-width: 767px) {
    .deneb_footer .widget_wrapper .widget {
        margin-bottom: 40px;
    }
}

.deneb_footer .widget_wrapper .widget .widget_title {
    margin-bottom: 30px;
}
.deneb_footer .widget_wrapper .widget .widget_title h4 {
    font-weight: bold;
}
.deneb_footer .widget_wrapper .widget .widget_title h4:after {
    content: "";
    display: block;
    max-width: 38px;
    height: 2px;
    margin-top: 5px;
}
.deneb_footer .widget_wrapper .widegt_about p {
    margin-bottom: 20px;
}
.deneb_footer .widget_wrapper .widegt_about .social li {
    display: inline-block;
    margin-right: 10px;
}
.deneb_footer .widget_wrapper .widegt_about .social li a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: #e6e6ff;
    color: var(--accent);
    font-size: 14px;
    -webkit-transition: all all 0.5s ease-out 0s;
    -moz-transition: all all 0.5s ease-out 0s;
    -ms-transition: all all 0.5s ease-out 0s;
    -o-transition: all all 0.5s ease-out 0s;
    transition: all all 0.5s ease-out 0s;
}
.deneb_footer .widget_wrapper .widegt_about .social li a:hover,
.deneb_footer .widget_wrapper .widegt_about .social li a:focus {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 2.5px 4.33px 15px 0px rgba(68, 0, 254, 0.4);
}
.deneb_footer .widget_wrapper .widget_link ul li {
    margin-bottom: 5px;
}
.deneb_footer .widget_wrapper .widget_link ul li a {
    color: #7a808d;
}
.deneb_footer .widget_wrapper .widget_link ul li a:hover,
.deneb_footer .widget_wrapper .widget_link ul li a:focus {
    color: var(--accent);
}
.deneb_footer .widget_wrapper .widget_contact .contact_info .single_info {
    max-width: 250px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.deneb_footer .widget_wrapper .widget_contact .contact_info .single_info .icon {
    font-size: 12px;
    color: var(--accent);
    margin-right: 10px;
}
.deneb_footer .widget_wrapper .widget_contact .contact_info .single_info .info p a {
    color: #7a808d;
}
.deneb_footer .widget_wrapper .widget_contact .contact_info .single_info .info p span {
    display: block;
}

.deneb_footer .copyright_area {
    background: #edecf0;
    padding: 10px 0;
}
.deneb_footer .copyright_area .copyright_text {
    text-align: center;
}
.deneb_footer .copyright_area .copyright_text p {
    color: #011a3e;
}
.deneb_footer .copyright_area .copyright_text p span {
    color: #feb000;
}
.deneb_cta .cta_wrapper {
    padding: 45px 50px 42px;
    max-width: 970px;
    border-radius: 15px;
    margin: auto;
    margin-bottom: -135px;
    position: relative;
    background-image: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
    z-index: 1;
}
.deneb_cta .cta_wrapper:after {
    content: "";
    background-position: bottom;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.deneb_cta .cta_wrapper .cta_content h3 {
    color: #fff;
    font-weight: bold;
    text-align: center;
}
@media (max-width: 767px) {
    .deneb_cta .cta_wrapper .cta_content h3 {
      font-size: 24px;
    }
}
.deneb_cta .cta_wrapper .cta_content h3:after {
    content: "";
    display: block;
    max-width: 110px;
    height: 2px;
    margin-top: 13px;
    margin-bottom: 24px;
}
.deneb_cta .cta_wrapper .cta_content p {
    color: #fff;
    text-align: center;
}
.deneb_cta .cta_wrapper .button_box {
    float: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .deneb_cta .cta_wrapper .button_box {
    float: none;
    text-align: left;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .deneb_cta .cta_wrapper .button_box {
    float: none;
    text-align: center;
    margin-top: 30px;
  }
}
.deneb_cta .cta_wrapper .button_box .deneb_btn {
    background: #fff;
    color: #011a3e;
}
.deneb_cta .cta_wrapper .button_box .deneb_btn:hover,
.deneb_cta .cta_wrapper .button_box .deneb_btn:focus {
  box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.15);
}