*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'regular';
}
@font-face {
    font-family: 'regular';
    src: url('../font/AstoriaRoman.ttf');
}
@font-face {
    font-family: 'bold';
    src: url('../font/zAstoriaBold.ttf');
}
@font-face {
    font-family: 'cinzel-bold';
    src: url('../font/CinzelDecorative-Bold.ttf');
}
@font-face {
    font-family: 'cinzel-black';
    src: url('../font/CinzelDecorative-Black.ttf');
}
.getstarted {
  --c:  #229091; /* the color*/
  
  box-shadow: 0 0 0 .1em inset var(--c); 
  --_g: linear-gradient(var(--c) 0 0) no-repeat;
  background: 
    var(--_g) calc(var(--_p,0%) - 100%) 0%,
    var(--_g) calc(200% - var(--_p,0%)) 0%,
    var(--_g) calc(var(--_p,0%) - 100%) 100%,
    var(--_g) calc(200% - var(--_p,0%)) 100%;
  background-size: 50.5% calc(var(--_p,0%)/2 + .5%);
  outline-offset: .1em;
  transition: background-size .4s, background-position 0s .4s;
}
.getstarted:hover {
  --_p: 100%;
  transition: background-position .4s, background-size 0s;
}
.getstarted button:active {
  box-shadow: 0 0 9e9q inset #0009; 
  background-color: var(--c);
  color: #fff;
}

.getstarted {
  font-family: system-ui, sans-serif;
  cursor: pointer;
  padding: .1em .6em;
  font-weight: bold;  
  border: none;
}
.link-underline {
    position: relative;
    display: inline-block;
}
.link-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #cde6e6;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.link-underline:hover::after,
.link-underline.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.link-underline.active {
    font-weight: 700;
    color: #33cccc;
}

img.site-logo {
    width: 85%;
}
img.footer-logo {
    width: 45%;
}

.navbar {
    transition: background-color 0.3s, box-shadow 0.3s;
}
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #122727;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
/* hero section */
.hero-bg {
    display: flex;
    background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/hero-bg.png");
    background-position: center;
    background-size: cover;
    color: #fff;
}
.form-bg{
    background-color:  rgba(99, 88, 88, 0.5);
}
/* Our service section styling */
.services-bg, .process-bg, .testimonial-bg {
    background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/our-services-bg.png");
    background-position: center;
    background-size: cover;
}
.card{
    background-color:  rgba(123, 117, 117, 0.5);
    transition: all 0.3s ease;
}
.card-bg, .review-bg{
    background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/card-bg.png");
    background-position: bottom;
    background-size: cover;
}
.card:hover{
    background-color:  #33c5c5;
}
.card:hover .heading{
    color: #33cccc;
}
/* Our Portfolio section styling */
.portfolio-bg, .help-bg, .contact-us {
    background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/our-portfolio-bg.png");
    background-position: center;
    background-size: cover;
}
/* Why Choose Us section styling */
.choose-bg {
    background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/why-choose-usBg.png");
    background-position: top center;
    background-size: cover;
}
.faq-bg {
    background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/faq-bg.png");
    background-position: top center;
    background-size: cover;
}
button.accordion {
    position: relative;
    width: 100%;
    background-color: #e8f2f2;
    border: none;
    outline: none;
    text-align: left;
    padding: 15px 20px;
    font-size: 18px;
    color: #000000;
    cursor: pointer;
    transition: background-color 0.2s linear;
  }
  button.accordion:after {
    position: absolute;
    font-family: FontAwesome;
    content: "\f077";
    font-family: "fontawesome";
    font-size: 18px;
    right: 15px;
    top: 10px;
  }
  button.accordion.is-open:after {
    content: "\f078";
  }
  .accordion-content {
    background-color: #e8f2f2;
    border-left: 1px solid whitesmoke;
    border-right: 1px solid whitesmoke;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
  }
  /* this styling for portfolio section */
  .tab-button.active {
    background-color: #4A5568;
    color: white;
  }
  .hidden {
    display: none;
  }
  .hidden {
    display: none;
  }
  .group {
    position: relative;
    overflow: hidden;
  }
  .group img {
    display: block;
    width: 100%;
    height: auto;
  }
  .group-hover\:opacity-100 {
    opacity: 1;
  }
  .group-hover\:translate-y-0 {
    transform: translateY(0);
  }
  .group-hover\:translate-y-full {
    transform: translateY(100%);
  }
  .transition {
    transition: all 0.3s ease-in-out;
  }
  /* portfolio section */
  .porfolio-bg {
    display: flex;
    background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/portfolio-bg.png");
    background-position: center;
    background-size: cover;
    color: #fff;
}
.tab-button {
  position: relative;
  overflow: hidden;
}

.tab-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #132727;
  transition: left 0.3s ease;
  z-index: -1;
}
.tab-button:hover::before {
  left: 0;
}
.tab-button.active {
  background-color: #132727;
  color: white;
  z-index: 1;
}
.tab-button > span {
  position: relative;
  z-index: 1;
}
/* This is for About us Sectoin styling */
.about-bg {
  display: flex;
  background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/about-us-hero.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}
/* This is for Ghost Writing styling */
.ghost-bg {
  display: flex;
  background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/ghost-writing-hero.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}
/* This is for Contact Us Section */
.contact-bg {
  display: flex;
  background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/contact-us-hero.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}
.contact-box {
  --c: #fff; /* text color */
  background: 
    linear-gradient(90deg, #0000 33%, #fff5, #0000 67%) var(--_p,100%)/300% no-repeat,
    #132727; /* background color */
  color: #0000;
  border: none;
  /* transform: perspective(500px) rotateY(calc(20deg*var(--_i,-1))); */
  text-shadow: 
    calc(var(--_i,-1)* 0.08em) -.01em 0   var(--c),
    calc(var(--_i,-1)*-0.08em)  .01em 2px #0004;
  outline-offset: .1em;
  transition: 0.3s;
}
.contact-box:hover,
.contact-box:focus-visible {
  --_p: 0%;
  --_i: 1;
}
.contact-box:active {
  text-shadow: none;
  color: var(--c);
  box-shadow: inset 0 0 9e9q #0005;
  transition: 0s;
}
.contact-box {
  font-family: system-ui, sans-serif;
  font-weight:bold;
  margin: 0;
  cursor: pointer;
}
/* This is for Ghost Writing styling */
.bookEdit-bg {
  display: flex;
  background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/book-editing-hero.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}
/* This is for Publishing Book styling */
.bookPublishing-bg {
  display: flex;
  background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/book-publishing-hero.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}
/* This is for Marketing Book styling */
.bookMarketing-bg {
  display: flex;
  background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/book-marketing-hero.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}
/* This is for Book Cover Design styling */
.bookCover-bg {
  display: flex;
  background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/book-cover-hero.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}
.container-box
{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
}
.container-box .box
{
  position: relative;
  width: 299px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px 30px;
  transition: 0.5s;
}
.container-box .box span
{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
}
.container-box .box:hover span:after
{
  bottom: -50px;
  right: 50px;
  width: 100px;
  height: 100px;
  opacity: 1;
}

@keyframes animate
{
  0%, 100%
  {
    transform: translateY(10px);
  }
  
  50%
  {
    transform: translate(-10px);
  }
}
.container-box .box .content
{
  position: relative;
  height: 400px;
  width: 500px;
  padding: 20px;
  left: 0;
  background: #33cccc;
  border-radius: 8px;
  z-index: 1;
  transform: 0.5s;
  color: black;
}
.container-box .box .content h2
{
  text-align: center;
  font-size: 20px;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 10px;
}
/* Footer Styling */
.footer-bg {
    display: flex;
    background-image: linear-gradient(rgba(4, 9, 30, 0.0), rgba(4, 9, 30, 0.0)), url("../images/footer-bg.png");
    background-position: center;
    background-size: cover;
    color: #fff;
}