@font-face {
    font-family: 'dm-sans-semi-bold';
    src: url('../fonts/dm_sans/static/DMSans_24pt-SemiBold.ttf');
}

@font-face {
    font-family: 'dm-sans-medium';
    src: url('../fonts/dm_sans/static/DMSans_24pt-Medium.ttf');
}

@font-face {
    font-family: 'dm-sans-regular';
    src: url('../fonts/dm_sans/static/DMSans_24pt-Regular.ttf');
}

@font-face {
    font-family: 'grovant';
    src: url('../fonts/grovant/grovant.otf');
}

@font-face {
    font-family: 'grozen-bold';
    src: url('../fonts/grozen/GROZEN-MEDICAL-Bold-BF65d7e7a42d2f4.otf');
}
html {
    scroll-behavior: smooth;
}
:root {
    --primary-color: #000000;
    --primary-glow: rgba(33, 150, 243, 0.8);
    --secondary-color: #9c27b0;
    --text-color: #000000;
    --bg-color: #0a0a12;
    --nav-bg: #F97316;
    --bg-main: #F97316;
    --dropdown-bg: rgba(20, 20, 35, 0.8);
    --hover-color: #3f51b5;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --neon-glow: 0 0 10px rgba(33, 150, 243, 0.5),
        0 0 20px rgba(33, 150, 243, 0.3),
        0 0 30px rgba(33, 150, 243, 0.1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-bg: linear-gradient(135deg, var(--bg-color), #151530);
    --glass-effect: saturate(180%) blur(10px);
    --border-radius: 12px;
    --text-description: rgba(255, 255, 255, 0.7);
    --semi-bold: 'dm-sans-semi-bold';
    --medium-dm: 'dm-sans-medium';
    --dm-regular: 'dm-sans-regular';
    --grovant: 'grovant';
    --grozen-bold: 'grozen-bold';

}

body {
    overflow-x: hidden !important;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
    margin: 0 auto !important;
    max-width: 160rem;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    width: 90% !important;
    margin: 0 auto !important;
    max-width: 90% !important;
    padding: 0 !important;
}

/* Header and Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    background: var(--nav-bg);
    transition: var(--transition-medium);
}

.auth_btns {
    display: flex;
    gap: 14px;
    align-items: center;
}

.auth_btns a {
    font-family: var(--semi-bold);
    text-decoration: none !important;
}

.auth_btns .login_btn {
    background: white;
    color: black;
    padding: 7px 20px;
    border-radius: 35px;
}

.auth_btns .register_btn {
    background: black;
    color: white;
    padding: 7px 20px;
    border-radius: 35px;
}

/* Logo */
.logo {
    width: 180px;
    & img{
        width: 100%;
    }
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-item a {
    font-family: var(--semi-bold);
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 0, 0, .1);
    transform: translateY(-2px);
    border: 1px solid #000000;
    border-radius: 50px;
}

/* Search Bar */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Theme Toggle */
.theme-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    cursor: pointer;
    padding: 0.6rem;
    font-size: 1.2rem;
    transition: all var(--transition-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(15deg);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.6rem;
    transition: var(--transition-medium);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    position: absolute;
    transition: all var(--transition-medium);
    border-radius: 10px;
}

.hamburger span:first-child {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
    width: 70%;
}

.hamburger span:last-child {
    top: 18px;
}

/* Mobile Menu Active State */
.nav-active .hamburger span:first-child {
    transform: rotate(45deg);
    top: 9px;
}

.nav-active .hamburger span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-active .hamburger span:last-child {
    transform: rotate(-45deg);
    top: 9px;
}


/* Responsive Design */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        right: -100%;
        flex-direction: column;
        align-items: flex-start;
        background: var(--nav-bg);
        backdrop-filter: var(--glass-effect);
        -webkit-backdrop-filter: var(--glass-effect);
        width: 80%;
        height: calc(100vh - 70px);
        padding: 2rem;
        transition: right var(--transition-slow);
        border-left: 1px solid var(--border-color);
        z-index: -1;
    }

    .nav-active .nav-menu {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        margin-bottom: 2rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        background: rgba(33, 150, 243, 0.15);
    }

    .nav-actions {
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }


}

@media (max-width: 576px) {
    .navbar {
        padding: 1rem;
    }

    .nav-menu {
        width: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .content {
        padding: 1rem;
    }

    .section {
        padding: 3rem 1rem;
    }
}

/* Heros section */
.heros_wrapper {
    width: 100%;
    background-color: var(--bg-main);
    padding: 200px 30px;
}

.heros_content {
    text-align: center;
    max-width: 70%;
}

.heros_content h1:first-of-type {
    color: white;
}

.heros_content p {
    font-size: 26px;
    font-family: var(--medium-dm);
}

.heros_content h1 {
    font-family: var(--grovant);
    font-size: 4rem;
}

.invite_btn a {
    text-decoration: none !important;
    background: var(--bg-color);
    color: #ffff;
    font-family: var(--semi-bold);
    padding: 15px 40px;
    border-radius: 42px;
    display: inline-block;
    margin-top: 20px;
    font-size: 16px;
}

/* How Its Work Section */
.work_process_section {
    /* padding-bottom: 80px; */
    width: 100%;
}

.heros_image {
    width: 80%;
    margin-top: -125px;

    & img {
        width: 100%;
        border-bottom-right-radius: 150px;
        border: 15px solid var(--bg-main);
    }
}

.inner_process_section {
    padding: 100px 0;
}

.title__section {
    & h2 {
        text-align: center;
        font-family: var(--grovant);
        /* font-family: var(--semi-bold); */
        font-size: 3rem;
    }
}

.cards_wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 60px;
}

.work_card_main {
    padding: 20px 36px;
}

.column_card {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}

.work_thumbnail {
    text-align: center;
}

.thumbnail1 {
    width: 80%;

    & img {
        width: 100%;
    }
}

.thumbnail2 {
    width: 95%;

    & img {
        width: 100%;
    }
}

.thumbnail3 {
    width: 78%;

    & img {
        width: 100%;
    }
}

.work_card_title {
    & h2 {
        margin-top: 26px;
        font-family: var(--medium-dm);
    }
}

.work_card_content p {
    font-family: var(--dm-regular);
    margin-top: 16px;
    font-size: 18px;
}

/* Our Testimonial */
.our_testimonial_section {
    width: 100%;
    padding: 100px 0 100px 0;
}

.our_testimonial_slide_main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider_testimonial_wrapper {
    margin-top: 70px;
}

.user_image_testimonial {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 100px;

    & img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.user_testimonial_name h3 {
    text-align: center;
    font-family: var(--medium-dm);
}

.user_testimonial_content p {
    font-family: var(--dm-regular);
    text-align: center;
}

.testimonial_content_main {
    margin-top: 30px;
}

.user_testimonial_content {
    margin-top: 20px;
}

/* Swiper Slider */
.swiper {
    width: 100%;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.swiper-pagination-bullet {
    height: 15px;
    width: 15px;
    border: 1px solid #000000 !important;
    background-color: transparent !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--bg-main) !important;
}

/* Faqs Section */
.faqs_Section {
    padding: 0 0 100px 0;
    width: 100%;
}

/* Accordion */
/* faq */
.faqs_main {
    margin-top: 70px;
}

@media(max-width:576px) {
    .faqs {
        padding: 0 !important;
    }

    .load-more a {
        margin-top: 5% !important;
    }
}

.accordion-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.accordion-header {
    /* background-color: #25C1B9; */
    background-color: transparent;
    /* color: #FFFFFF; */
    color: #2E2E2E;
    padding: 14px 15px;
    font-size: 18px;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    font-family: var(--medium-dm);

}

.accordion-content {
    background-color: #FAFAFA;
    /* Very light grey for content */
    overflow: hidden;
    padding: 0 15px;
    max-height: 0;
    transition: max-height 0.3s ease;
    border-radius: 10px;
}

.accordion-content p {
    margin: 15px 0;
    line-height: 1.5;
    font-family: var(--dm-regular);
    color: #4E4E4E !important;

    & a {
        color: #4E4E4E !important;
    }
}

.icon {
    transition: transform 0.3s ease;
    font-size: 26px;
}

.active .icon {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: #ECECEC;
    padding: 20px 20px;
    text-align: center;
    font-family: var(--medium-dm);
}

.footer_content {
    font-size: 18px;

    & a {
        text-decoration: none !important;
        color: #000000;
    }
}
/* About Us */
.about_us_section {
    width: 100%;
    background: #E05B00;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(224, 91, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
    padding: 100px 0;
}

.about_us_coin_image {
    width: 90%;

    & img {
        width: 100%;
    }
}

.about_us_content {
    & .about_title h2 {
        font-family: var(--grozen-bold);
        color: #FFFFFF;
        font-size: 2.5rem;
        line-height: 54px;
    }
}

.about_para p{
    font-size: 18px;
    margin-top: 20px;
    color: #FFFFFF;
    font-family: var(--medium-dm);
}
/* Contact Us */
.contact_us_section{
    width: 100%;
    background: var(--bg-main);
    padding: 100px 0;
    position: relative;
}
.contact_us_form_main{
    width: 80%;
    background: #ffff;
    padding: 50px 40px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
}
.input_form{
    width: 100%;
    display: block;
    outline: none;
    border: none;
    border-bottom: 2px solid #5B5B5B;
    margin-top: 40px;
    font-family: var(--medium-dm)
}
.input_form::placeholder{
    font-family: var(--medium-dm)
}
.form_btn{
    margin-top: 40px;
    width: 100%;
    padding: 10px 20px;
    border-radius: 8px;
    outline: none;
    border: none;
    background: #000000;
    color: #ffff;
    font-family: var(--medium-dm);
    text-transform: uppercase;
}
.contact_us_wrapper{
    padding: 0px 60px 0 0px;
}
.contact_us_title{
    & h2{
        font-family: var(--grozen-bold);
        text-transform: uppercase;
        font-size: 2.5rem;
        line-height: 56px;
        & span{
            color: #fff;
        }
    }
}
.contact_us_content{
    & p{
        color: #fff;
        font-family: var(--medium-dm);
        font-size: 18px;
        margin-top: 20px;
    }
}

.contact__us_form_title{
    & h2{
        font-family: var(--grozen-bold);
        text-transform: uppercase;
    }
}

/* ================Media Query ======================*/
@media(max-width:992px) {
    .heros_content {
        max-width: 100% !important;

        & h1 {
            font-size: 3rem;
        }
    }

    .heros_image {
        width: 90%;
    }
    .about_us_coin_image{
        margin: 0 auto;
        width: 60%;
    }
    .about_us_section{
        text-align: center;
    }
    .about_title{
        margin-top: 40px;
    }

}

@media(max-width:768px) {
    .heros_wrapper {
        padding: 130px 30px !important;
    }

    .heros_image {
        margin-top: -90px !important;
    }

    .cards_wrapper {
        margin-top: 40px !important;
    }

    .column_card {
        width: 50% !important;
    }
    /* Contact Us */
    .contact_us_section{
        text-align: center !important;
    }
    .contact_column{
        justify-content: center !important;
    }
    .contact_us_wrapper{
        margin-top: 60px;
    }
    .contact_us_wrapper{
        padding: 0 !important;
    }

}

@media(max-width:576px) {
    .about_us_section {
        padding: 60px 0 !important;
    }
    .about_title h2{
        font-size: 2rem !important;
        line-height: 49px !important;
    }
    .heros_content {
        max-width: 100% !important;

        & h1 {
            font-size: 2.2rem;
        }
    }

    .heros_content p {
        font-size: 24px;
    }

    .heros_image {
        width: 100%;

        & img {
            border-bottom-right-radius: 90px !important;
        }
    }

    .title__section {
        & h2 {
            font-size: 2.2rem !important;
        }
    }

    .inner_process_section {
        padding: 60px 0;
    }

    .our_testimonial_section {
        padding: 60px 0;
    }

    .column_card {
        width: 100% !important;
    }

    .faqs_Section {
        padding: 0px 0 60px 0;
    }

    .thumbnail1 {
        width: 70%;
    }

    .thumbnail2 {
        width: 80%;
    }

    .thumbnail3 {
        width: 70%;
    }
    .contact_us_title{
        & h2{
            font-size: 2rem !important;
            line-height: 49px !important;
        }
    }
    .contact_us_form_main{
        width: 100% !important;
    }
    .contact_us_wrapper{
        margin-top: 40px !important;
    }
    .contact_us_section{
        padding: 60px 0 !important;
    }
}
