/* #region Theme Section */

:root {
  /* Color Palette */
  --color-bright-orange: #f77a33;
  --color-light-blue: #94b6ef;
  --color-dark-blue: #213e60;
  --color-back: #151515;
  --color-off-white: #f4f2ef;
  --color-white: #ffffff;

  /* Typography */
  --font-base: "Manrope", sans-serif;
  --font-size-base: 16px;

  /* Layout */
  --page-max-width: 1920px;
  --content-width: 1540px;
  --gutter: 20px;
}

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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  font-family: var(--font-base);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: var(--font-base);
  background-color: var(--color-white);
  color: var(--color-black);
}

/* Layout Containers */
.page-container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  background-color: var(--color-white);
}

.content-container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0px;
}

/* Utility Classes */
.text-orange {
  color: var(--color-bright-orange);
}

.text-light-blue {
  color: var(--color-light-blue) !important;
}

.text-dark-blue {
  color: var(--color-dark-blue) !important;
}

.text-white {
  color: var(--color-white) !important;
}

.text-off-white {
  color: var(--color-off-white);
}

.bg-orange {
  background-color: var(--color-bright-orange);
}

.bg-light-blue {
  background-color: var(--color-light-blue);
}

.bg-dark-blue {
  background-color: var(--color-dark-blue);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-off-white {
  background-color: var(--color-off-white);
}

/* Example for headers and buttons */
h1,
h2,
h3,
h4,
h5 {
  color: var(--color-white);
  font-weight: bold;
}

button {
  padding: 1rem 1.25rem;
  border: 2px solid var(--color-bright-orange);
  cursor: pointer;
  font-weight: 700;
  border-radius: 30px;
  background-color: var(--color-bright-orange);
  color: var(--color-white);
  transition: all 0.3s ease;
  font-size: 14px;
  min-width: 180px;
  height: 42px;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;

  &:hover {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    transition: all 0.3s ease;
    opacity: 0.9;
    border: 2px solid var(--color-dark-blue);
  }
  &:active {
    opacity: 0.6;
  }
}
/*
 button {
  padding: 20px 40px;
  border: 2px solid var(--color-bright-orange);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  background-color: var(--color-bright-orange);
  color: var(--color-white);
  transition: all 0.3s ease;
  font-size: 16px;
    border-radius: 16px;

  
  min-width: 180px;
  height: 15px;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;

}
*/
 .hero-btn button.button {
  height: 64px !important;
      border-radius: 16px !important;
  padding: 20px 40px !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
}

  &:hover {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    transition: all 0.3s ease;
    opacity: 0.9;
    border: 2px solid var(--color-dark-blue);
  }
  &:active {
    opacity: 0.6;
  }
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-light-blue);
  color: var(--color-dark-blue);

  &:hover{
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    transition: all 0.3s ease;
    opacity: 0.9;
    border: 2px solid var(--color-dark-blue);
  }
}

/* #endregion */

/* #region Common */
.m-auto {
  margin: auto;
}

.w-full {
  width: 100%;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-50 {
  margin-bottom: 50px;
}

.lh-120 {
  line-height: 120%;
}

.pr-relative {
  position: relative;
}

.lh-140 {
  line-height: 140%;
}

.self-center {
  align-self: center;
}

@keyframes dripBorder {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

.content-indent {
  /* border-left: 5px solid var(--color-bright-orange); */
  padding-left: 50px;
  position: relative;
}

.content-indent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background-color: var(--color-bright-orange);
  animation: none;
}

.content-indent.animate::before {
  animation: dripBorder 2s forwards;
}

.section-label {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 50px;
  margin-bottom: 24px;
}

.section-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 0px;
  /* margin-bottom: 64px; */
}

/* #endregion */

/* #region Animation */
@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes maskReveal {
  to {
    mask-size: 100% 100%;
  }
}

@-webkit-keyframes maskReveal {
  to {
    -webkit-mask-size: 100% 100%;
  }
}

@keyframes zoomInOut {
  50% {
    transform: scale(1.1);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-text {
  animation: none;
}

.animate-text.animate {
  animation: slideInRight 1s ease-out forwards;
}

.zoom-in {
  animation: none;
}
.zoom-in.animate {
  animation: zoomIn 1s ease-out forwards;
}
/* #endregion */

/* #region Header Section */

.header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0px;
  position: relative;
  column-gap: 20px;
}

/* Logo */
.logo {
  width: 208px;
  height: 35px;
  flex-shrink: 0;
}

/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-dark-blue);
}

/* Nav center align */
.nav {
  display: flex;
  justify-content: center;
}

.nav-ul {
  display: flex;
  gap: 50px;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  margin: 0;
}

.nav-ul li a {
  color: var(--color-dark-blue);
  text-decoration: none;
}

.nav-ul li a:hover {
  color: var(--color-bright-orange);
  transition: all 0.3s ease;
}

.action-btns {
  display: flex;
  gap: 20px;
}

.desktop-btns {
  display: flex;
}

.mobile-btns {
  display: none;
}

/* #endregion */

/* #region Unique Needs */
#unique-needs {
  margin-top: 80px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 0px;
}

.unique-needs-banner {
  width: 610px;
  height: 680px;
  margin-right: 50px;
  z-index: 2;
  position: relative;
  height: 100%;
}

.unique-needs-banner-overlay {
  position: absolute;
  background-color: var(--color-light-blue);
  width: 610px;
  height: 680px;
  right: 0px;
  z-index: 1;
  top: 55px;
}

.unique-needs-title {
  font-size: 70px;
  font-weight: 500;
  line-height: 120%;
}

#rotating-keywords {
  transition: all 0.2s ease;
}

.unique-needs-desc-container {
  display: flex;
  justify-content: space-around;
}

.unique-needs-desc {
  padding: 50px;
  padding-left: 0px;
  color: var(--color-back);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

/* #endregion */

/* #region Who We Are */
#who-we-are {
  background-color: var(--color-dark-blue);
  position: relative;
  background-image: url("https://4076839.fs1.hubspotusercontent-na1.net/hubfs/4076839/eyeonbooks/who-we-are-bg.svg");
  background-repeat: no-repeat;
  background-size: 100%;

  .section-title {
    margin-bottom: 60px;
  }

  .inner-box {
    display: grid;
    grid-template-columns: 80% 20%;
    width: 100%;
  }

  .desc-box {
    display: flex;
    flex-direction: row;
    align-items: flex-center;
    justify-content: space-around;
    gap: 40px;
    color: var(--color-off-white);

    p:first-of-type {
      font-size: 22px;
      font-weight: 400;
      color: var(--color-off-white);
      margin-bottom: 40px;
      line-height: 140%;
    }


    button {
      color: var(--color-white);
      margin-top: 40px;

      &:hover {
        background-color: var(--color-bright-orange);
        border: 2px solid var(--color-bright-orange);
        transition: all 0.2s ease;
      }
    }
  }
}
/* #endregion */

/* #region Trusted Partners */
#trustes-logo-section {
  background-color: var(--color-white);
}

.trusted-partner {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-dark-blue);
  margin-bottom: 40px;
  text-align: center;
}

.brand-logos {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.brand-logos:after,
.brand-logos:before {
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  content: "";
  z-index: 2;
}

.brand-logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.brand-logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.brand-logos-slide {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 110px;
  animation: 20s slide infinite linear;
}

.brand-logos-slide img {
  width: 220px;
  height: 100px;
}

/* #endregion */

/* #region Services */
.section-titile-container {
  display: flex;
  gap: 64px;
  max-width: 1410px;
  justify-content: space-between;
}

#services {
  background-color: var(--color-off-white);
}

.section-info-row {
  gap: 64px;
  display: grid;
  grid-template-columns: 50% 50%;
}

.services-desc p {
  font-weight: 400;
  color: var(--color-back);
}

.services-desc {
  align-self: self-end;
}

.services-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 33px;
  margin-top: 60px;

  .content-indent::before {
    width: 3px;
  }
}

.services-row2 > div {
  padding: 40px;
  background-color: var(--color-white);
  color: var(--color-dark-blue);
  cursor: pointer;
}

.services-row2 .label:only-of-type {
  padding-left: 16px;
  margin: 0px;
  font-size: 26px;
  font-weight: 500;
  line-height: 90%;
  margin-top: 30px;
  line-height: 90%;
}

.services-row2 > div:hover {
  color: var(--color-white);
  background-color: var(--color-dark-blue);
  fill: var(--color-white);
  transition: all 0.8s ease;
}

.reveal-img {
  width: 90px;
  height: 90px;

  mask-image: linear-gradient(to right, black 0%, black 100%);
  mask-size: 0% 100%;
  mask-repeat: no-repeat;
  mask-position: left;
  animation: maskReveal 1s ease-out forwards;

  -webkit-mask-image: linear-gradient(to right, black 0%, black 100%);
  -webkit-mask-size: 0% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left;
  -webkit-animation: maskReveal 1s ease-out forwards;
}

.section {
  padding: 100px 0px;
}

/* #endregion */

/* #region */
.region-content-left {
  display: flex;
  width: 51%;
}

.region-content-right {
  display: flex;
  width: 40%;
}

.why-use-keeper-description {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

#why-use-keeper {
  background-color: var(--color-white);

  .keeper-row2 {
    margin-top: 60px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1px;

    > div {
      padding: 30px;
      display: flex;
      flex-direction: column;
      gap: 47px;
      transition: all 0.3s ease;
      &:hover {
        transform: scale(1.02);
        transition: all 0.3s ease;
        box-shadow: inset;
      }
    }

    .img-box {
      object-fit: contain;
      filter: grayscale(100%);
    }

    .label {
      font-size: 26px;
      line-height: 120%;
      font-weight: 500;
      color: var(--color-white);
      padding-left: 1rem;
    }

    .desc {
      padding-left: 19px;
      color: var(--color-white);
      line-height: 140%;
      font-weight: 400;
    }

    .play-icon {
      position: absolute;
      width: 90px;
      height: 90px;
      bottom: 20px;
      right: 20px;
      animation: zoomInOut 2s ease-in-out infinite;
      transform-origin: center;
    }

    .content-indent::before {
      width: 3px;
      background-color: var(--color-bright-orange);
    }

    .content-indent.white-border::before {
      background-color: var(--color-white);
    }

    > div:nth-of-type(3) {
      .label,
      .desc {
        color: var(--color-dark-blue);
      }
    }
  }
}
/* #endregion */

/* #region */
#clients-say {
  background-color: var(--color-off-white);

  .bg-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    :nth-child(2) {
      background-image: url("https://4076839.fs1.hubspotusercontent-na1.net/hubfs/4076839/eyeonbooks/EOB_Pattern_white%201.svg");
      background-repeat: no-repeat;
      background-size: cover;
    }
  }

  .content-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

  .section-title {
    font-size: 36px !important;
    line-height: 120%;
    margin-right: 36px;
  }

  .bg-quote {
    background-image: url("https://4076839.fs1.hubspotusercontent-na1.net/hubfs/4076839/eyeonbooks/QuetsBg.webp");
    background-position: 50px 30px;
    background-size: 190px;
    background-repeat: no-repeat;
    padding-top: 163px;
  }

  .services-desc {
    align-self: flex-start;
    padding-left: 65px;
  }
  .slider-button {
    background-color: white; 
    position: absolute; 
    padding: 43px 68px; 
    bottom: 0; 
    left: 140px;
  }
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 31px;
  padding-left: 55px;
  margin-top: 60px;
}

.contact-info img {
  width: 100px;
  height: 100px;
}

.contact-info h5 {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-dark-blue);
  margin-bottom: 5px;
}
/* #endregion */

/* #region Our Achievement */
#our-achievement {
  background-color: var(--color-white);
}

.achievement-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1310.76px;
  margin-left: 55px;
  margin-top: 60px;
}
/* #endregion */

/* #region Bookkeeping Accordion Styles */

#bookkeeping-queries {
  background-color: var(--color-white);
  padding-top: 0px;
}

#bookkeeping-queries .services-desc {
  align-self: flex-end;
}

.accordian-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}

.accordion-bg {
  background-color: var(--color-off-white);
  padding: 20px;
  margin-left: 53px;
  display: flex;
  flex-direction: column;
}

.accordion-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  cursor: pointer;
}

.accordion-icon {
  width: 30px;
  height: 30px;
}

.accordion-title {
  color: var(--color-dark-blue);
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

.accordion-content {
  color: var(--color-back);
  font-size: 16px;
  font-weight: 400;
  padding-left: 180px;
  padding-right: 100px;
  display: none;
  padding-top: 20.5px;
}

/* #endregion */

/* #region how we can assist you Styles */
#can-assist-you {
  background-color: var(--color-white);
  position: relative;
  margin-top: 90px;
  margin-bottom: 100px;
  .bg-color-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-color: var(--color-dark-blue);
    overflow: hidden;
  }

  .content-container {
    display: flex;
    flex-direction: row;
    gap: 10%;

    .left-box {
      flex: 1;
      img {
        position: absolute;
        top: -80px;
        left: 0;
        max-width: 50%;
      }
    }

    .right-box {
      flex: 1;
      position: relative;
      padding: 100px 0px;
    }

    .form-content {
      padding-left: 130px;
      display: flex;
      flex-direction: column;
      color: var(--color-off-white);

      p {
        font-size: 16px;
        color: var(--color-white);
        font-weight: 400;
        margin: 50px 0px;
      }

      form {
        display: flex;
        flex-direction: column;
        gap: 20px;
        min-width: 180px;
        max-width: 500px;
      }
    }
  }
}
/* #endregion */

/* #region Footer */
#footer {
  background-image: url("https://4076839.fs1.hubspotusercontent-na1.net/hubfs/4076839/eyeonbooks/footer-bg.svg");
  background-size: 100%;
  /* background-repeat: no-repeat; */

  .indent-content {
    padding-left: 23px;
  }
}
#footer .content-container {
  padding-top: 100px;
}

.custom-footer-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 60px;
  justify-content: space-between;
}

.custom-footer-container > div:first-child {
  flex: 0 0 40%;
}

.custom-footer-container > div:not(:first-child) {
  flex: 1;
}

.custom-social-section{
  margin-top: 20px;
}

#footer h3 {
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: var(--color-light-blue);
  text-wrap: nowrap;
  line-height: 100%;

  &.content-indent {
    width: 3px;
    padding-left: 20px;
    &::before {
      width: 3px;
    }
  }
}

#footer p {
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--color-off-white);
  line-height: 140%;
}

/* Newsletter form */
.newsletter-form {
  padding-top: 15px;
  display: flex;
  max-width: 400px;
}

.newsletter-form input.email-input[type="email"] {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid #ffffff80;
  border-radius: 30px 0 0 30px;
  background-color: transparent;
  color: #fff;
  outline: none;
  font-size: 14px;
  padding-right: 30px;
  min-width: 180px;
  width: auto;
  border-right: 0px;
  height: 42px;
}

.email-input::placeholder {
  color: #ccc;
}

.subscribe-btn {
  border: none;
  cursor: pointer;
  margin-left: 0px;
  min-width: auto;
  margin-left: -30px;
  border: 2px solid var(--color-bright-orange);
  &:hover {
    border: 2px solid var(--color-bright-orange);
    background-color: var(--color-bright-orange);
    opacity: 0.9;
  }
  &:active {
    opacity: 0.7;
  }
}

/* Footer links */
.custom-footer-links {
  list-style: none;
  padding-left: 20px;
}

.custom-footer-links li {
  margin-bottom: 10px;
  line-height: 140%;
}

.custom-footer-links a {
  color: #F4F2EF;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
  line-height: 140%;
}

.custom-footer-links a:hover {
  color: #f47b42;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: #f47b42;
}

/* Footer bottom */
.custom-footer-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-light-blue);
  margin-bottom: 30px;
  line-height: 140%;
}
/* #endregion */