@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;700;900&display=swap);
@import url(../css/bootstrap.css);

:root {
    --light_white: #f8f8f8;
    --black: #000000;
    --white: #fff;
    --primary_color: #9ad9a4;
    --secondary_color: #fcc42c;
    --primary-gradient: linear-gradient(360deg, rgba(112, 185, 166, 1) 0%, rgba(41, 138, 199, 1) 100%);
    --secondary-gradient: linear-gradient(45deg, #fcb900, #ff9900);
    --font-family: Inter, sans-serif
}

body {
    font-family: var(--font-family);
    overflow-x: hidden;
    font-size: 14px;
    line-height: 22px;
    color: #000;
    background: #fff
}

html,
body {
    overflow-x: hidden;
}

div#userwayAccessibilityIcon {
    right: -20px !important;
    top: 20px
}

body::-webkit-scrollbar {
    width: 10px;
    height: 10px
}


body::-webkit-scrollbar-button:start:decrement,
body::-webkit-scrollbar-button:end:increment {
    display: none
}

body::-webkit-scrollbar-track-piece {
    background-color: #f4f4ec;
    -webkit-border-radius: 0;
    border-left: 1px solid #ccc
}

body::-webkit-scrollbar-thumb:vertical {
    -webkit-border-radius: 0;
    background: var(--black);
}

::selection {
    color: var(--white);
    background: var(--black);
}

a {
    text-decoration: none !important;
    color: #000
}

a:hover,
a:focus {
    text-decoration: none;
    color: #000
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
    list-style-type: none
}

p {
    color: #B1B5D3
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none
}

ol,
ul {
    padding-left: 0rem !important
}

.container {
    margin: 0 auto;
    padding: 0
}

.btn,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family);
    font-weight: 700 !important;
    margin: 0 !important;
    color: var(--black);
}

h1 {
    font-size: 50px !important;
    line-height: 40px !important;
    padding: 10px 0 60px 0;
    margin: 0
}

h2 {
    font-size: 36px !important;
    letter-spacing: 0;
    line-height: 1.2 !important;
}

p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    color: var(--black);
    line-height: 1.8;
}

/* =========================
   HEADER
========================= */
#header {
    position: fixed;
    padding: 15px;
    z-index: 9999;
    width: 90%;
    left: 50%;
    right: 50%;
    transform: translate(-50%, 14%);
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.15);
    /* transparent white */
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all .6s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

header.sticky {
    width: 100% !important;
    border-radius: 0 !important;
    top: -12px;
}

section.inner-page-banner h1 {
    text-decoration: underline;
}

.sticky-nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo-main {
    background-color: #f1f1f1;
    border-radius: 50px;
    max-width: 100%;
    width: 180px;
    padding: 0 15px;
}

ul.main-navigation li {
    background-color: #f1f1f1;
    border-radius: 50px;
    padding: 2px 15px;
}

ul.main-navigation li:last-child {
    background-color: transparent;
}

/* Logo */
.logo-main a {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.logo-main img {
    width: 180px;
}

/* =========================
   DESKTOP MENU
========================= */
.main-navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    margin: 0px;
}

.main-navigation li a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 500 !important;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover underline */
/* .main-navigation li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #000;
    transition: 0.3s;
}

.main-navigation li a:hover::after {
    width: 100%;
}

.main-navigation li a:hover {
    color: #000;
} */

.btn-yellow.gd {
    display: inline-block;
    padding: 10px 22px;
    color: #fff;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500 !important;
    font-size: 15px;
    background: #F54927;
    border: 0.1px solid #fff;
}

.btn-yellow.gd:hover {
    color: #ffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    background: #333333;
}

.btn-yellow.gd:active {
    transform: scale(0.96);
}

.main-navigation li.active a {
    border-bottom: 1px solid;
    /* color: #fff; */
}

/* hero Section */

section.hero {
    position: relative;
}

section.hero {
    position: relative;
    z-index: 99;
    padding: 160px 0 15px 0;
}

section.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 12%);
    z-index: -1;
    opacity: 0.5;
}

section.hero h1 {
    line-height: 1.2 !important;
    /* position: relative; */
    font-size: 60px !important;
    padding: 10px 0 0;
}

h6.hero-h {
    font-weight: 500 !important;
    font-size: 22px;
}

.list li {
    font-size: 17px;
    font-weight: 600;
    padding: 4px 0 4px 20px;
    position: relative;
}

.list li:before {
    width: 10px;
    height: 10px;
    top: 11px;
    background: #f54927;
    position: absolute;
    border-radius: 10px;
    left: 0;
    content: "";
}

.form-base {
    width: 100%;
    max-width: 80%;
    padding: 25px;
    border-radius: 20px;
    margin: 0px auto 0 auto;
    background: rgba(255, 255, 255, 0.15);
    /* transparent white */
    backdrop-filter: blur(12px);
    /* main glass blur */
    -webkit-backdrop-filter: blur(12px);
    /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* subtle border */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.custom-form {
    margin: 0 auto;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.cta {
    margin-bottom: 10px;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 16px;
    background-color: #000;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
}

.input-icon input {
    width: 100%;
    padding: 10px 12px 12px 50px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 50px;
    outline: none;
    transition: 0.3s;
    font-weight: 600;
}

.input-icon input:focus {
    border-color: #f54927;
    box-shadow: 0 0 5px #f54927;
}

.input-icon input::placeholder {
    color: var(--black);
}

.btn.btn-custom {
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500 !important;
    padding: 12px 20px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid #fff;
    background: #f54927;
}

.btn.btn-custom:hover {
    background: #333333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* end hero Section */

/* about section */

.chat-btn .chat-icon {
    margin-right: 10px;
    filter: brightness(11111);
}

.about-img {
    border-radius: 20px;
}

/*  End about section */

/* process card */

.card-custom {
    text-align: left;
    min-height: 270px;
    margin-top: 20px;
    padding: 80px 40px 25px;
    box-shadow: 0 25px 60px rgb(0 0 0 / .25);
    border-radius: 21px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
    overflow: hidden;
}

.card-custom:before {
    content: "";
    position: absolute;
    top: -30px;
    left: -50px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    transition: 0.7s linear;
    z-index: -1;
    background: #f5492775;
}

.card-custom:hover::before {
    width: 125%;
    height: 125%;
    transform: scale(150%);
}

.card-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

section.process-section {
    background: linear-gradient(200deg, rgb(236 236 236) 0%, rgba(252, 254, 252, 1) 100%);
}

span.carde_number {
  position: absolute;
    left: 20px;
    top: 10px;
    color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 50px;
    text-align: center;
    font-weight: bold;
    border: 8px solid #ffffff;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f54927;
}

.card-custom h3
 {
    margin-top: 20px !important;
}

.card-process {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 25px !important;
}

.card-process::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -50px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    transition: 0.7s linear;
    z-index: -1;
    background: #f5492775;
}

.card-process:hover::before {
    width: 125%;
    height: 125%;
    transform: scale(150%);
}

.icon {
    background-color: #f54927;
}


/* end process card */

/* process-step */

section.process-step {
    background: linear-gradient(200deg, rgb(236 236 236) 0%, rgba(252, 254, 252, 1) 100%);
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 25px !important;
    background: #f5492775 !important;
}

.card::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -50px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    transition: 0.7s linear;
    z-index: -1;
    background: #f5492775;
}

.card:hover::before {
    width: 125%;
    height: 125%;
    transform: scale(150%);
}

.card h5,
.card p {
    transition: color 0.3s ease;
}

/* .card:hover h5,
.card:hover p {
    color: #ffffff;
} */

/* end process-step */

/* Faqs Css Begin  */

.faq-title::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
    background: #f5492775;
    background: linear-gradient(rgb(245, 73, 39) 0%, rgb(51, 51, 51) 80%);
}

.faq-title {
    height: 740px;
    padding: 60px 40px 70px 40px;
    border-radius: 10px;
    margin: 0 20px;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.faq-title h3 {
    font-size: 40px;
    color: white;
}

.faq-title p {
    font-size: 18px;
    padding: 30px 0 0 0;
    color: #fff;
}

section.faqs a.quest-title::before {
    background: transparent;
    content: "\f067";
}

section.faqs .quest-section {
    background: transparent;
    border: 1px solid #3333;
}

section.faqs .quest-section a.quest-title {
    color: #000;
}

.quest-section {
    background: #daf1ffa8;
    margin: 0 0 20px 0;
}

section.faqs .quest-title.active::before {
    content: "\f068";
    transform: rotate(0);
}

.faq-title::before {
    position: absolute;
    content: "";
    width: 340px;
    height: 340px;
    border: 41px solid #ffff;
    background: transparent;
    border-radius: 100%;
    bottom: -120px;
    right: -90px;
    animation: 3s ease-in-out infinite floatUpDown;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

section.why-choose .faqs-txt {
    padding: 70px 0 0 0;
}

h2.why-choose-title {
    font-size: 70px !important;
    margin-bottom: 100px !important;
}

img.why-choose-img {
    border-radius: 10px;
}

.choose-card-1 {
    animation: rightMove 3s ease-in-out infinite;
}

@keyframes rightMove {
    0% {
        transform: rotate(0deg) translateX(0);
    }

    50% {
        transform: rotate(3deg) translateX(5px) translateY(-8px);
    }

    100% {
        transform: rotate(0deg) translateX(0);
    }
}

.choose-card-2 {
    animation: leftMove 3s ease-in-out infinite;
}

@keyframes leftMove {
    0% {
        transform: rotate(0deg) translateX(0);
    }

    50% {
        transform: rotate(-4deg) translateX(-10px) translateY(-8px);
    }

    100% {
        transform: rotate(0deg) translateX(0);
    }
}

a.quest-title {
    color: #000000;
    padding: 20px 30px 20px 20px;
    display: inline-block;
    margin: 0;
    border-radius: 9px;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 9;
    text-decoration: none;
}

a.quest-title::before {
    content: "\f054";
    position: absolute;
    font-family: "Font Awesome 5 Free";
    right: 20px;
    background: #ffda51;
    width: 37px;
    height: 37px;
    transition: all .6s ease;
    text-align: center;
    border-radius: 100%;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.quest-title.active::before {
    content: "\f054";
    transform: rotate(90deg);
}

.quest-section p {
    padding: 10px 20px 30px;
    margin: 0 9px 17px
}

a.quest-title::after {
    position: absolute;
    content: "";
    width: 100%;
    transition: .7s;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -1
}

a.quest-title.active::after,
a.quest-title:hover:after {
    left: -160px;
}

.faqs-txt.aos-init.aos-animate {
    padding: 80px 0 0 0px;
}

.quest-content.open {
    display: block
}

.quest-content {
    display: none
}

/* Faqs End */

/* cta section  */

.cta-bg {
    background: url(../images/cta-background-img.png);
    background-position: right;
    background-repeat: no-repeat;
    position: relative;
    z-index: 99;
    background-size: 71%;
}

section.cta-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff00;
    z-index: -1;
    opacity: 0.8;
}

span.highlight {
    position: relative;
}

span.highlight:before {
    position: absolute;
    content: "";
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(40px);
    width: 500px;
    height: 70px;
    border-radius: 50px;
    z-index: -1;
    left: -5px;
    top: -10px;
}

/* end cta section  */

/* footer */
footer.footer {
    padding: 50px 0 0 0;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(12px);
    background: linear-gradient(180deg, #F54927 0%, #333333 80%);
}

.end_footer {
    margin-top: 10px;
}

a.footer_logo img {
    width: 60%;
    max-width: 100%;
}

.mid_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer_logo {
    flex: 1;
    overflow: hidden;
    filter: invert(1);
}

.footer-form {
    border-radius: 21px;
    padding: 15px 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(12px);
    max-width: 100%;
    width: 400px;
}

.policy_links li a {
    color: #fff;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500 !important;
}

ul.policy_links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.end_foot_part {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.end_footer p {
    color: #fff;
}

/* footer end */

/* inner page */
.inner-page-banner {
    padding: 200px 0 60px 0;
    position: relative;
    text-align: center;
}

section.inner-page-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(245 73 39 / 54%);
    z-index: -1;
    opacity: 0.5;
}

section.cta-section {
    background: radial-gradient(circle at top left, rgba(255, 218, 81, 0.45), transparent 30%), linear-gradient(120deg, rgba(48, 139, 196, 0.16), rgba(56, 185, 159, 0.24));
}

section.contact_form_section_re {
    background: linear-gradient(200deg, rgb(236 236 236) 0%, rgba(252, 254, 252, 1) 100%);
}

.location-section {
    padding: 50px 0 0 0;
    background: linear-gradient(345deg, rgb(236 236 236) 0%, rgba(252, 254, 252, 1) 100%);
}

.location-wrapper {
    display: flex;
    gap: 30px;
    align-items: stretch;
    flex-wrap: wrap;
}

.location-info {
    flex: 1;
    min-width: 300px;
    background: #111;
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: #f5492775;
    background: linear-gradient(rgb(245, 73, 39) 0%, rgb(51, 51, 51) 80%);
}

.loc-label {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.loc-label img {
    width: 18px;
    margin-right: 6px;
}

.location-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
}

.loc-address {
    color: #fff;
}

.loc-phone {
    margin: 20px 0;
    font-weight: bold;
    color: #fff;
}

.themebtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #fcb900, #ff9900);
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.themebtn img {
    width: 20px;
}

.location-map {
    flex: 1;
    min-width: 300px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
    border-radius: 12px;
}

.location-info::before {
    position: absolute;
    content: "";
    width: 340px;
    height: 340px;
    border: 41px solid #fff;
    background: transparent;
    border-radius: 100%;
    bottom: -150px;
    right: -90px;
    animation: 3s ease-in-out infinite floatUpDown;
}

section.think {
    background: linear-gradient(345deg, rgb(236 236 236) 0%, rgba(252, 254, 252, 1) 100%);
}

/* Modal Css */

.form-modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999
}

.form-modal .overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / .65);
    backdrop-filter: blur(6px)
}

.popupform {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 400px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgb(0 0 0 / .25);
    animation: popupBounce 0.4s ease;
    z-index: 2;
    border: 1px solid #000;
    backdrop-filter: blur(8px);
    background: transparent;
}

@keyframes popupBounce {
    0% {
        transform: scale(0.7);
    }

    60% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.close_popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    background: var(--primary-gradient);
    border: 0.1px solid #fff;
    background: #f54927;
}

.close_popup i {
    font-size: 16px;
    color: #fff;
    transition: 0.3s ease
}

.close_popup:hover {
    background: #2c2c2c;
    transform: rotate(90deg)
}

.close_popup:hover i {
    color: #fff
}

.books-points-des {
    margin-bottom: 25px;
}

/* Modal Css end */


/*Marketing brand css*/
.image-market-box {
    height: 460px;
    overflow: hidden;
}

.image-market-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s ease;
}
.content-market-box {
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: -150px;
    transition: all .5s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 8;
}

.marketing-box-main {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.marketing-box-main::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    background: linear-gradient(0deg, #000000ed 40%, transparent);
    transition: all .6s ease;
    bottom: 0;
    z-index: 1;
}

.content-market-box h2,.content-market-box p {
    color: white;
}

.marketing-box-main:hover:before {
    height: 100%;
}

.marketing-box-main:hover .content-market-box {
    bottom: 80px;
    opacity: 1;
    visibility: visible;
}

.marketing-box-main:hover .image-market-box img {
    transform: scale(1.2);
}
.head-sec.aos-init.aos-animate {
    text-align: center;
    padding: 60px 150px 40px 150px;
}

section.marketing-des {
    padding: 0 0 60px 0;
}
.content-market-box p {
    padding: 10px 40px 10px 40px;
}