@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

:root{

    --bg-color: #000;

    --btn-color: #fdfdfd;/* button color*/
    --btn-bg: #0A8DD3;/* button bg color*/

    --primary-text-color: #0A8DD3;
    --header-link-hover: #0A8DD3;
    --input-hover-bd-color: #0A8DD3;
}


html {
    scroll-behavior: smooth;
    font-family: "Ubuntu", sans-serif;
}

body {
    overflow-x: hidden;
}

header{
    /* background-color: #fff;
    color: #000; */
    color: #b1b1b1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100 !important;
    position: relative;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 50px;
    padding: 4px;
    margin-left: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 120px;
}

.logo-container:hover {
    text-decoration: none;
    transform: scale(1.02);
}

.logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    white-space: nowrap;
    line-height: 1.2;
}

/* Header scroll effect */
header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


header > .collapsible-header{
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: inherit;
    place-content: center;
    overflow: hidden;
    transition: width 0.3s ease;
    flex: 1;
    justify-content: space-between;
    align-items: center;
}

.animated-collapse{
    transition: width 0.3s ease;
}


.tw-px-custom 
{
    padding-left: 10%;
    padding-right: 10%;
}

/* Navigation container */
.nav-container {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.actions-container {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto;
}

.header-links {
    display: flex;
    align-items: center;
    min-width: fit-content;
    border-radius: 5px;
    padding: 8px 16px;
    transition: background-color 0.5s, color 0.5s;
    white-space: nowrap;
}


.header-links:hover {
    color: #ffffff;
    /* background-color: var(--header-link-hover); */
}

.primary-text-color{
    color: var(--primary-text-color);
}

.gradient-text{
    background: rgb(215,215,215);
    background: linear-gradient(90deg, rgba(215,215,215,1) 18%, rgba(136,136,136,1) 71%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.signup-img-section{
    background-image: url("../assets/images/home/darkbg.png");
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}

.hero-img-bg-grad{
    background: rgb(126,34,206);
    background: linear-gradient(90deg, #7e22ce91 8%, #625aafae 31%, #7badbbbc 76%, #54d2d0ca 89%);
    filter: blur(50px);
    opacity: 0.5;
}

#dashboard {
    /* transform-origin: bottom center; */
    transform: perspective(1200px) translateX(0px) translateY(12px) scale(0.8)
        rotate(0deg) rotateX(70deg);
    transition: transform 0.5;
}

.border-gradient{
    background: rgb(219,215,213);
    background: linear-gradient(180deg, rgba(219,215,213,1) 35%, rgba(214,211,233,0) 71%);
    /* background-image: linear-gradient(90deg, #7e22ce91 8%, #625aafae 31%, #7badbbbc 76%, #54d2d0ca 89%); */
    padding: 2px;
    border-radius: 10px;
}
.border-gradient>div{
    /* background-color: var(--bg-color); */
    background-color: var(--bg-color);
    border-radius: inherit;
}

.opacity-0{
    opacity: 0 !important;
}

.opacity-100{
    opacity: 100 !important;
}

.btn{
    padding: 10px 15px;
    width: max-content;
    border-radius: 5px;
    color: var(--btn-color);
    background-color: var(--btn-bg);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
}


.btn:disabled{
    cursor: default;
}

/* Download button styling */
.download-btn {
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: transparent;
    text-decoration: none;
}

.download-btn i {
    color: white;
    font-size: 16px;
}

.input{
    padding: 10px;
    background-color: transparent;
    border-radius: 5px;
    /* outline: none; */
    min-width: 100px;
    border: 1px solid #818080;
    /* transition: border 0.3s; */
}

.input:active, .input:focus, .input:focus-within{
    border: 1px solid var(--input-hover-bd-color) !important;
}

.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 800px;
}
  
.carousel {
    display: inline-block;
    animation: scroll 10s linear infinite;
}
  
.carousel-img {
    display: inline-block;
    margin: 0 20px;
}
  
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer-link{
    color: #c7c6c6;
    transition: color 0.3s;
}

.footer-link:hover{
    color: #fff;
}

/* Language Dropdown Styles */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-btn {
    background: transparent;
    padding: 10px 20px;
    color: #b1b1b1;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    min-width: 120px;
    justify-content: center;
    white-space: nowrap;
}

.language-btn:hover {
    border-color: var(--primary-text-color);
    color: #fff;
}

.language-btn i {
    font-size: 16px;
}

.language-menu {
    position: fixed;
    top: 70px;
    right: 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 250px;
    width: 250px;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-top: 5px;
}

.language-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #b1b1b1;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
    width: 100%;
    box-sizing: border-box;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #2a2a2a;
    color: #fff;
}

.language-option .flag {
    font-size: 18px;
}

/* Mobile responsive adjustments */
@media not all and (min-width: 1024px) {
    .language-dropdown {
        margin-bottom: 10px;
        position: relative;
        z-index: 1001;
    }
    
    .language-menu {
        min-width: 250px;
        width: 250px;
        right: 10px;
    }
    
    .actions-container {
        min-width: 100%;
        justify-content: center;
    }
    
    .language-btn {
        min-width: 140px;
        width: 140px;
    }
}


/* Style for the collapsible content such as faq commonly known as: accordion */

.faq-accordion {
    background-color: inherit;
    color: #f2f2f2;
    cursor: pointer;
    padding: 15px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: height 0.4s;
}

.faq .content {
    padding: 0px 18px;
    color: #e4e4e4;
    height: max-content;
    overflow: hidden;
    background-color: transparent;
    text-align: justify;
    max-height: 0px;
    transition: max-height 0.4s, padding 0.4s;
}

.faq-accordion .active,
.faq-accordion:hover {
    /* background-color: #2e2c2c; */
}

@media not all and (min-width: 1024px) {
    header .collapsible-header {
        position: fixed;
        right: 0px;
        top: 0px;
        flex-direction: column;
        opacity: 0;
        height: 100vh;
        min-height: 100vh;
        height: 100dvh;
        width: 0vw;
        justify-content: flex-start;
        padding: 5px;
        padding-top: 80px;
        padding-bottom: 5%;
        place-items: end;
        background-color: #040404;
        color: #ffffff;
        overflow-y: auto;
        box-shadow: 3px 0px 3px 2px #9f9f9f;
        z-index: 30;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: width 0.3s ease, opacity 0.3s ease;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .actions-container {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-left: 0;
    }

    .header-links{
        color: rgb(255, 255, 255);
        padding: 12px 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .header-links:hover {
        background-color: rgba(10, 141, 211, 0.1);
        color: #0A8DD3;
    }

    /* Content slide down animation when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .hero-section {
        transform: translateY(60px);
        transition: transform 0.3s ease;
    }

    body.menu-open section:not(.hero-section) {
        transform: translateY(60px);
        transition: transform 0.3s ease;
    }
    
}