* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white-color: #FBF9F2;
    --yellow-color: #FBA002;
    --black-color: #000000;
}

body {
    font-family: "Nunito Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Space Grotesk", sans-serif;
}

a {
    font-family: "Space Grotesk", sans-serif;
}

.yellow-btn {
    color: var(--black-color);
    font-weight: 500;
    font-size: 16px;
    background-color: var(--yellow-color);
    padding: 14px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.yellow-btn i {
    color: var(--yellow-color);
    background-color: var(--black-color);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 14px;
}

.white-btn {
    color: var(--black-color);
    font-weight: 500;
    font-size: 16px;
    background-color: var(--white-color);
    padding: 14px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.black-btn {
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    background-color: var(--black-color);
    padding: 14px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.same-heading {
    color: var(--black-color);
    font-size: 40px;
    font-weight: 700;
}

.yellow-heading {
    color: #FBA002;
    font-size: 40px;
    font-weight: 700;
}

.para {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
}

/*header css start*/
.header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    width: 100%;
    padding: 0px 5rem;
}

.header .nav-item .nav-link {
    padding: 0;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--white-color);
    transition: all ease 0.4s;
}

.header .nav-item .nav-link:hover {
    color: var(--yellow-color);
}

.header .navbar-nav {
    gap: 24px;
}

.header .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/*dropdown*/
.header ul li {
    position: relative;
}

.header ul li .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--yellow-color);
    display: block;
    flex-direction: column;
    min-width: 250px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.header ul li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.header ul li .dropdown-menu li {
    width: 100%;
}

.header ul li .dropdown-menu li a {
    justify-content: flex-start;
    padding: 5px 25px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
    white-space: nowrap;
    text-decoration: none;
    transition: all ease 0.3s;
    display: flex;
}

.header ul li.dropdown-link a {
    color: var(--white-color);
    text-decoration: none;
}

.header ul li .dropdown-menu li a:hover {
    background-color: #000;
}

/*header css end*/

/* banner css start */
.banner-sec {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 34rem 5rem 70px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.inner-banner {
    padding: 17rem 5rem 70px;
}

.inner-banner h3 {
    font-size: 30px;
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 20px;
}

.inner-banner ul {
    margin: 40px 0px 30px;
    list-style-type: none;
    padding: 0;
}

.inner-banner ul li {
    margin-bottom: 10px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inner-banner .banner-sec-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-banner {
    background-image: url("../images/home-banner.png");
}

.about-banner {
    background-image: url("../images/about-banner-bg.png");
}

.services-banner {
    background-image: url("../images/services-banner-bg.png");
}

.testimonials-banner {
    background-image: url("../images/testimonials-banner-bg.png");
}

.portfolio-banner {
    background-image: url("../images/portfolio-banner-bg.png");
}

.contact-banner {
    background-image: url("../images/contact-banner-bg.png");
}

.book-publishing-banner {
    background-image: url("../images/book-publishing-bg.png");
}

.children-book-banner {
    background-image: url("../images/children-book-bg.png");
}

.ghostwriting-banner {
    background-image: url("../images/ghostwriting-bg.png");
}

.audio-book-banner {
    background-image: url("../images/audio-book-bg.png");
}

.book-cover-banner {
    background-image: url("../images/book-cover-bg.png");
}

.illustration-banner {
    background-image: url("../images/illustration-bg.png");
}

.author-website-banner {
    background-image: url("../images/author-website-bg.png");
}

.book-marketing-banner {
    background-image: url("../images/book-marketing-bg.png");
}

.banner-sec p {
    margin-bottom: 20px;
}

.banner-sec.inner-banner-text h1 {
    font-size: 150px;
}

.banner-sec.book-publishing-banner h1 {
    font-size: 54px;
    font-weight: 700;
}

.banner-sec-content h1 {
    color: var(--white-color);
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 20px;
}

.banner-sec-content p {
    color: var(--white-color);
    font-weight: 400;
    font-size: 16px;
}

.banner-sec-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
}

.banner-form-div {
    background-color: var(--yellow-color);
    width: 540px;
    margin: 0px 0px 0px auto;
    padding: 30px 40px;
    border-radius: 60px 15px 60px 15px;
}

.banner-form-div form input {
    width: 100%;
    height: 40px;
    background-color: unset;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 3px solid #fff;
    margin-bottom: 10px;
    outline: none;
    color: #fff;
}

.banner-form-div form input::placeholder {
    color: #ffffffa3;
}

.banner-form-div form textarea {
    width: 100%;
    height: 100px;
    background-color: unset;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 3px solid #fff;
    margin-bottom: 10px;
    outline: none;
    color: #fff;
    resize: none;
}

.banner-form-div form textarea::placeholder {
    color: #ffffffa3;
}

.banner-form-div form button {
    width: 100%;
    height: 56px;
    margin-top: 15px;
    outline: none;
    border: none;
    background-color: var(--black-color);
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 16px;
}

.banner-form-div h2 {
    color: var(--white-color);
    text-align: center;
    font-weight: 800;
    font-size: 40px;
    text-transform: uppercase;
}

.banner-form-div p {
    color: var(--white-color);
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    margin-top: 10px;
}

/* banner css end */

/* trusted partner css start */
.trusted-partner {
    background-image: url("../images/trusted-partner-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 90px 0px;
}

.trusted-partner-content h2 {
    margin-bottom: 25px;
}

.trusted-partner-content p {
    margin-bottom: 25px;
}

.trusted-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trusted-partner-image img {
    width: 100%;
}

/* trusted partner css end */

/* hire sec start */
.hire-sec .hire-sec-content {
    padding: 100px 0px 30px;
    text-align: center;
}

.hire-sec .hire-sec-content h2 {
    margin-bottom: 20px;
}

.hire-sec .hire-sec-content h2 span {
    color: var(--yellow-color);
}

.hire-sec {
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
}

.hire-slide-box {
    padding: 16px 35px 16px;
    background-color: #000000;
    box-shadow: 2px 7px 10px 0px #313B2F;
    text-align: center;
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hire-slide-box h4 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    margin: 15px 0px 12px;
    text-align: center;
}

.hire-slide-box p {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin: 0;
}

.hire-slide-box i {
    font-size: 48px;
    color: var(--yellow-color);
}

.hire-sec-heading h3 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--white-color);
}

.hire-sec-heading {
    margin-top: 40px;
}

.hire-sec-para {
    margin-top: 40px;
}

.hire-sec-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.hire-sec::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: var(--yellow-color);
    width: 100%;
    height: 500px;
    bottom: 0;
    left: 0;
}

.hire-sec-para p {
    color: var(--white-color);
}

/* hire sec end */

/*animated sec start*/
.animated-sec {
    background-image: url("../images/animated-sec-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #1a1a2e;
    padding: 30rem 0px;
    position: relative;
    overflow: hidden;
}

#animated1,
#animated2,
#animated3,
#animated4 {
    position: absolute;
    width: 220%;
    left: -60%;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 0;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.9s ease;
    will-change: transform;
    z-index: 4;
    opacity: 0;
    overflow: hidden;
}

#animated1 .ribbon-inner,
#animated2 .ribbon-inner,
#animated3 .ribbon-inner,
#animated4 .ribbon-inner {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    flex-shrink: 0;
}

#animated1 span,
#animated2 span,
#animated3 span,
#animated4 span {
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

#animated1 span::after,
#animated2 span::after,
#animated3 span::after,
#animated4 span::after {
    content: "•";
    opacity: 0.5;
}

#animated1,
#animated3 {
    background: #f5a623;
    color: #4a2c00;
}

#animated2,
#animated4 {
    background: #ffffff;
    color: #333;
}

#animated1 {
    top: 20%;
    transform: rotate(-35deg) translateX(-130%);
}

#animated2 {
    top: 32%;
    transform: rotate(35deg) translateX(130%);
}

#animated3 {
    bottom: 32%;
    transform: rotate(35deg) translateX(-130%);
}

#animated4 {
    bottom: 20%;
    transform: rotate(-35deg) translateX(130%);
}

.animated-sec.in-view #animated1 {
    transform: rotate(-35deg) translateX(-10%);
    opacity: 1;
    transition-delay: 0.05s;
}

.animated-sec.in-view #animated2 {
    transform: rotate(35deg) translateX(-10%);
    opacity: 1;
    transition-delay: 0.18s;
}

.animated-sec.in-view #animated3 {
    transform: rotate(35deg) translateX(-10%);
    opacity: 1;
    transition-delay: 0.31s;
}

.animated-sec.in-view #animated4 {
    transform: rotate(-35deg) translateX(-10%);
    opacity: 1;
    transition-delay: 0.44s;
}

/*animated sec end*/

/*our portfolio sec start*/
.our-portfolio {
    padding: 50px 0px 20px;
}

.our-portfolio-content {
    margin-bottom: 40px;
    text-align: center;
}

.our-portfolio-content p {
    color: var(--black-color);
    font-weight: 500;
}

.our-portfolio-content h2 {
    margin-bottom: 20px;
}

.portfolio-image img {
    height: 500px;
}

/*our portfolio sec end*/

/* cta sec start */
.cta-sec {
    background-color: var(--yellow-color);
    padding: 30px 0px;
    overflow: hidden;
}

.cta-strip {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    gap: 2rem;
    animation: scroll-marquee 20s linear infinite;
}

.marquee-content span {
    color: #ffffff;
    font-size: 1.5rem;
    text-transform: lowercase;
}

.marquee-content span:nth-child(even) {
    opacity: 0.8;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* cta sec end */

/* faq sec start */
.faq-sec {
    padding: 100px 0px;
    background-image: url("../images/trusted-partner-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.faq-sec-content {
    text-align: center;
    margin-bottom: 50px;
}

.accordion-item {
    background: #fdf8f0;
    border: 1.5px solid var(--yellow-color) !important;
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.accordion-button {
    background: #fdf8f0;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.97rem;
    padding: 18px 20px;
    border-radius: 12px !important;
    box-shadow: none !important;
    transition: background 0.25s ease, color 0.25s ease;
}

.accordion-button:not(.collapsed) {
    background: #F5A500;
    color: #000;
    border-radius: 12px 12px 0 0 !important;
}

.accordion-button::after {
    display: none;
}

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1;
    margin-left: auto;
    transition: background 0.25s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-button:not(.collapsed) .faq-icon {
    background: #1a1a1a;
    transform: rotate(45deg);
}

.accordion-body {
    background: #fdf8f0;
    color: #444;
    font-size: 0.93rem;
    line-height: 1.7;
    padding: 16px 20px 20px;
    border-top: 1px solid #e8dfc8;
}

/* faq sec end */

/* testimonial sec start */
.testimonial-sec {
    background-image: url("../images/testimonial-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 24rem 0px 100px;
}

.testimonial-content {
    text-align: center;
    margin-bottom: 100px;
}

.testimonial-content h2 {
    font-size: 268px;
    font-weight: 400;
    color: var(--white-color);
}

.testimonial-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-btn .black-btn i {
    color: var(--black-color);
    background-color: var(--yellow-color);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 100px;
}

.testi-box {
    border: 1px solid #3F211D;
    background-color: #000;
    padding: 64px 50px;
    height: 350px;
}

.testi-client-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.testi-box p {
    color: var(--white-color);
    font-size: 14px;
}

.testi-client-box-content h5 {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

.testi-client-box-content span {
    color: var(--white-color);
    font-size: 13px;
}

.testi-ratings {
    margin-bottom: 30px;
}

.testi-ratings i {
    color: var(--yellow-color);
}

.split-text span {
    display: inline-block;
    transform-origin: center;
    opacity: 0;
    /* hidden by default */
}

.split-text.animate span {
    animation: splitUnfold 1.5s ease-out forwards;
}

.split-text.animate span:nth-child(2) {
    animation-delay: 0.2s;
}

.split-text.animate span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes splitUnfold {
    0% {
        transform: scaleY(0) translateY(-50%);
        opacity: 0;
    }

    50% {
        transform: scaleY(1.2) translateY(0);
        opacity: 1;
    }

    100% {
        transform: scaleY(1) translateY(0);
        opacity: 1;
    }
}

/* testimonial sec end */

/* help form section start */
.help-form-left h2 {
    font-size: 40px;
    font-weight: 400;

    color: #000;
    margin-bottom: 40px;
}

.help-form-left form input {
    width: 100%;
    padding: 22px 30px;
    margin-bottom: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
    font-size: 16px;
    border: none;
    outline: none;
}

.help-form-left form textarea {
    width: 100%;
    padding: 22px 30px;
    margin-bottom: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
    height: 150px;
    font-size: 16px;
    border: none;
    resize: none;
    outline: none;
}

.help-form-left form button {
    width: 100%;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
}

.help-form-sec {
    padding: 80px 0px;
}

.help-form-right {
    position: relative;
    z-index: 1;
    text-align: center;
}

.help-form-right::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/dots.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    top: -50px;
    width: 241px;
    height: 248px;
}

/* help form section end */

/* footer start */
.footer {
    background-image: url("../images/footer-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-main {
    padding: 100px 0px 40px;
}

.footer-branding a {
    display: flex;
}

.footer-branding p {
    margin-top: 30px;
    color: var(--white-color);
    font-size: 14px;
}

.footer-links h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.copyright-main p {
    margin-bottom: 0;
    color: var(--white-color);
    text-align: center;
}

.copyright-parent {
    padding: 25px 0px;
    border-top: 1px solid var(--white-color);
}

.copyright-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style-type: none;
    gap: 15px;
}

.copyright-links li a {
    color: var(--white-color);
    text-decoration: none;
}

/* footer end */

/* advice sec start */
.advice-sec {
    padding: 200px 0px 100px;
}

.advice-sec-box {
    background: linear-gradient(0deg, #E07612 0%, #ECAE32 100%);
    border-radius: 25px;
    position: relative;
    padding: 80px;
}

.advice-image {
    text-align: center;
    position: absolute;
    bottom: 0;
    right: 4rem;
}

.advice-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.advice-content h2 {
    margin-bottom: 20px;
}

.advice-content p {
    color: var(--white-color);
}

.advice-sec2 .advice-image {
    position: unset;
}

.advice-sec2 .advice-image img {
    width: 100%;
}

/* advice sec end */

/* step sec start */
.step-sec-content {
    text-align: center;
    margin-bottom: 40px;
}

.step-sec-content p {
    color: var(--black-color);
}

.step-sec-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--yellow-color);
}

.step-sec {
    padding: 80px 0;
    background-image: url("../images/trusted-partner-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.step-sec-content {
    margin-bottom: 48px;
}

.left-panel {
    position: relative;
}

.slide-content-wrap {
    overflow: hidden;
    min-height: 130px;
    margin-bottom: 32px;
    position: relative;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.slide-content.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
}

.slide-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.slide-content p {
    color: #555;
    font-size: 0.97rem;
    line-height: 1.7;
    margin: 0;
}

.step-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-tab {
    background: var(--yellow-color);
    color: var(--white-color);
    border: none;
    border-radius: 4px;
    padding: 17px 22px;
    text-align: left;

    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, color 0.3s ease;
    letter-spacing: 0.01em;
}

.step-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--yellow-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-tab.active {
    background: var(--black-color);
    color: #fff;
    font-weight: 600;
}

.step-tab.active::before {
    opacity: 0;
}

.step-tab:not(.active):hover {
    background: #000;
}

.step-tab:not(.active):hover::before {
    opacity: 1;
}

.step-tab .tab-num {
    display: inline-block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    color: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    line-height: 26px;
    margin-right: 12px;
    flex-shrink: 0;
    transition: background 0.3s;
    color: #000;
}

.step-tab.active .tab-num {
    background: #fff;
    color: #000;
}

.step-tab-inner {
    display: flex;
    align-items: center;
}

.right-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-circle-wrap {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1;
}

.step-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.step-img.active {
    opacity: 1;
    transform: scale(1);
}

.image-circle-wrap::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 3px dashed var(--yellow-color);
    opacity: 0.45;
    animation: spin-ring 18s linear infinite;
}

@keyframes spin-ring {
    to {
        transform: rotate(360deg);
    }
}

/* step sec end */

/*number counter sec start*/
.number-counter {
    padding: 20px 0px;
    background-color: var(--yellow-color);
}

.number-counter-box h4 {
    color: var(--white-color);
    font-size: 70px;
    font-weight: 700;
    text-align: center;
}

.number-counter-box p {
    margin-bottom: 0;
    color: var(--white-color);
    font-size: 18px;
    text-align: center;
}

/*number counter sec end*/

/* why choose sec start */
.why-choose-sec {
    background-image: url("../images/trusted-partner-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px 0px;
}

.why-choose-content h2 {
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--black-color);
}

.why-chhose-btns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 40px;
}

.why-choose-img2 img {
    width: 100%;
}

/* why choose sec end */

.terms-banner-sec {
    position: relative;
    z-index: 1;
    background-color: #000;
    padding: 17rem 0px;
    background-image: url("../images/terms-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.terms-banner-content h1 {
    font-size: 80px;
    text-align: center;
    color: var(--white-color);
    margin-bottom: 0;
}

.terms-content-sec {
    padding: 80px 0px;
}

.terms-content-sec h2 {
    font-size: 26px;
    font-weight: 900;
}

.terms-content-box {
    margin-bottom: 20px;
}

.terms-banner-content p {
    color: var(--white-color);
    text-align: center;
    margin-top: 20px;
}

/* popup form */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 24, 14, .55);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    padding: 16px;
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.popup-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 780px;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
    transform: translateY(30px) scale(.97);
    transition: transform .35s cubic-bezier(.34, 1.4, .64, 1), opacity .3s ease;
    opacity: 0;
}

.popup-overlay.active .popup-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.popup-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 420px;
    height: 420px;
    background: conic-gradient(from 0deg,
            rgba(232, 160, 32, .13) 0deg 20deg,
            transparent 20deg 40deg,
            rgba(232, 160, 32, .10) 40deg 60deg,
            transparent 60deg 80deg,
            rgba(232, 160, 32, .08) 80deg 100deg,
            transparent 100deg 120deg,
            rgba(232, 160, 32, .11) 120deg 140deg,
            transparent 140deg 160deg,
            rgba(232, 160, 32, .09) 160deg 180deg,
            transparent 180deg 200deg,
            rgba(232, 160, 32, .12) 200deg 220deg,
            transparent 220deg 240deg,
            rgba(232, 160, 32, .08) 240deg 260deg,
            transparent 260deg 280deg,
            rgba(232, 160, 32, .10) 280deg 300deg,
            transparent 300deg 320deg,
            rgba(232, 160, 32, .13) 320deg 340deg,
            transparent 340deg 360deg);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #555;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color .2s, transform .2s;
}

.close-btn:hover {
    color: #111;
    transform: scale(1.15) rotate(10deg);
}

.popup-left {
    padding: 44px 36px 44px 44px;
    position: relative;
    z-index: 1;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.logo-icon {
    width: 56px;
    height: 56px;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 900;
    color: #2d3a1e;
    letter-spacing: -1px;
}

.logo-main span {
    color: #e8a020;
}

.logo-sub {
    font-size: .62rem;
    letter-spacing: 3.5px;
    color: #2d3a1e;
    text-transform: uppercase;
    margin-top: 2px;
}

.popup-headline {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(1.9rem, 4vw, 2.55rem);
    line-height: 1.12;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.popup-headline .accent {
    color: #e8a020;
}

.popup-sub {
    font-size: .93rem;
    color: #444;
    margin-bottom: 26px;
    line-height: 1.5;
}

.popup-sub strong {
    color: #2d3a1e;
}

.form-control {
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: .93rem;
    font-family: 'Lato', sans-serif;
    color: #222;
    transition: border-color .2s, box-shadow .2s;
    background: #fafafa;
}

.form-control:focus {
    border-color: #e8a020;
    box-shadow: 0 0 0 3px rgba(232, 160, 32, .18);
    background: #fff;
}

.form-control::placeholder {
    color: #aaa;
}

textarea.form-control {
    resize: none;
    height: 110px;
}

.btn-submit {
    width: 100%;
    background: var(--yellow-color);
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    padding: 14px;
    /* font-family: 'Playfair Display', serif; */
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: .6px;
    cursor: pointer;
    transition: background .25s, transform .15s;
    margin-top: 6px;
}

.btn-submit:hover {
    background: #3e5229;
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
}

.popup-right {
    /* background: linear-gradient(155deg, #f9f4ea 0%, #ede4d0 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
    min-height: 320px;
}

.popup-modal-image img {
    width: 300px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}