@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root{

    --btn-color: #fdfdfd;/* button color*/
    --btn-bg: #4f55c1;/* button bg color*/

    --primary-text-color: #4f55c1;
    --header-link-hover: #6c72e8;
    --input-hover-bd-color: #4f55c1;
}


html {
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
}

/* Header styles are handled by Tailwind classes */

#shadow {
    -webkit-box-shadow: inset 0px 13px 15px -2px rgba(0,0,0,0.6); 
    box-shadow: inset 0px 13px 15px -2px rgba(0,0,0,0.6);
    }

/* LIST STYLES */
ul {
    margin: 2em 1em;
    list-style: none;
    counter-reset: gradient-list;
    padding-left: 0;
}

ul li {
    position: relative;
    margin-top: 0.5em;
    padding-left: 2em;
    color: #ffffff;
    line-height: 1.6;
    font-size:1.1em;
}

ul li span {
    font-size: 1rem;
}

/* First ul - numbered list */
ul:nth-of-type(1) {
    counter-reset: gradient-list;
}

ul:nth-of-type(1) li {
    counter-increment: gradient-list;
}

ul:nth-of-type(1) li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: counter(gradient-list, decimal-leading-zero);
    background: linear-gradient(45deg, #12c2e9, #c471ed, #f64f59);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 1.1em;
}

/* Second ul - bullet points */
ul:nth-of-type(2) li::before {
    content: '';
    position: absolute;
    top: 0.5em;
    left: 0.5em;
    width: 0.6em;
    height: 0.6em;
    background: linear-gradient(45deg, #12c2e9, #c471ed, #f64f59);
    border-radius: 50%;
}

/* General ul styles for any other lists */
ul:not(:nth-of-type(1)):not(:nth-of-type(2)) {
    list-style: disc;
    padding-left: 1.5em;
}

ul:not(:nth-of-type(1)):not(:nth-of-type(2)) li::before {
    display: none;
}

/* END LIST STYLES */

/* GRADIENT STYLES */
.content-container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.bgimg {
    position: relative;
    overflow: hidden; /* Prevents animation from going outside bounds */
}

.bgimg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../assets/images/background/bg.webp");
    background-size: 110% 110%; /* Slightly larger to allow for movement */
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5; /* Adjust this value (0.0 to 1.0) for desired opacity */
    z-index: -1;
    animation: backgroundFloat 20s ease-in-out infinite;
}

/* Background Animation - Slow floating movement */
@keyframes backgroundFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(-2%, -1%) scale(1.02);
        opacity: 0.6;
    }
    50% {
        transform: translate(1%, -2%) scale(1.01);
        opacity: 0.4;
    }
    75% {
        transform: translate(-1%, 1%) scale(1.03);
        opacity: 0.7;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
}

/* Alternative animation classes you can use */

/* Slow zoom in/out effect */
.bgimg-zoom::before {
    animation: backgroundZoom 15s ease-in-out infinite;
}

@keyframes backgroundZoom {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
}

/* Gentle rotation effect */
.bgimg-rotate::before {
    animation: backgroundRotate 25s linear infinite;
}

@keyframes backgroundRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    100% {
        transform: rotate(360deg) scale(1.1);
    }
}

/* Parallax-like movement */
.bgimg-parallax::before {
    animation: backgroundParallax 30s ease-in-out infinite;
}

@keyframes backgroundParallax {
    0% {
        transform: translateX(0) translateY(0) scale(1);
    }
    25% {
        transform: translateX(-3%) translateY(-2%) scale(1.02);
    }
    50% {
        transform: translateX(2%) translateY(-4%) scale(1.01);
    }
    75% {
        transform: translateX(-1%) translateY(1%) scale(1.03);
    }
    100% {
        transform: translateX(0) translateY(0) scale(1);
    }
}

/* Subtle breathing effect */
.bgimg-breathe::before {
    animation: backgroundBreathe 8s ease-in-out infinite;
}

@keyframes backgroundBreathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.3;
    }
}

/*.btn {
    background: linear-gradient(90deg, #ff3a82, #5233ff);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 58, 130, 0.3);
    margin: 5px 0px 10px 0px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 58, 130, 0.4);
}
*/
.gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.sphere-1 {
    width: 40vw;
    height: 40vw;
    background: linear-gradient(40deg, rgba(255, 0, 128, 0.8), rgba(255, 102, 0, 0.4));
    top: -10%;
    left: -10%;
    animation: float-1 15s ease-in-out infinite alternate;
}

.sphere-2 {
    width: 45vw;
    height: 45vw;
    background: linear-gradient(240deg, rgba(72, 0, 255, 0.8), rgba(0, 183, 255, 0.4));
    bottom: -20%;
    right: -10%;
    animation: float-2 18s ease-in-out infinite alternate;
}

.sphere-3 {
    width: 30vw;
    height: 30vw;
    background: linear-gradient(120deg, rgba(133, 89, 255, 0.5), rgba(98, 216, 249, 0.3));
    top: 60%;
    left: 20%;
    animation: float-3 20s ease-in-out infinite alternate;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 5;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

@keyframes float-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(10%, 10%) scale(1.1);
    }
}

@keyframes float-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-10%, -5%) scale(1.15);
    }
}

@keyframes float-3 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-5%, 10%) scale(1.05);
        opacity: 0.6;
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    z-index: 2;
}

.glow {
    position: absolute;
    width: 40vw;
    height: 40vh;
    background: radial-gradient(circle, rgba(72, 0, 255, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: pulse 8s infinite alternate;
    filter: blur(30px);
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}
/* END GRADIENT STYLES */

/* ACCORDION STYLES */
.accordion-content {
    border-radius: 0 0 12px 12px;
}

.tw-border.border-gradient-green {
    border-radius: 12px;
    border: 1px solid #333a44;
    background: linear-gradient(135deg, rgba(196, 144, 255, 0.1), rgba(108, 114, 232, 0.1));
    backdrop-filter: blur(10px);
}

.tw-border.border-gradient-green button {
    border-radius: 12px 12px 0 0;
    transition: all 0.3s ease;
    outline: none;
    border: none;
}

.tw-border.border-gradient-green button:hover {
    background: rgba(196, 144, 255, 0.05);
}

.tw-border.border-gradient-green button:focus {
    outline: none;
    background: rgba(196, 144, 255, 0.05);
}

.tw-border.border-gradient-green button:active {
    outline: none;
}

/* END ACCORDION STYLES */

.btop {
    border-top: 1px solid #4f55c1;
}

.inter-font {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 0.05em;
  }
  
.hexfix {margin-top: -250px;}
h3 {font-size: 96px;}

h5 {margin: 0;
font-size: 2.5rem;
text-transform: uppercase;}

h6 {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    font-weight: bolder;
}

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

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

.header-gradient{
    background: rgb(206,174,212);
    background: linear-gradient(83deg, #ceaed474 15%, #abd4e693 33%, #73edc097 79%, #8c91e86b 100%);
    filter: blur(100px);
}

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


.header-links:hover {
    color: var(--header-link-hover);
}

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

.gradient-text{
    background: rgb(233,92,255);
    background: linear-gradient(93deg, rgba(233,92,255,1) 12%, rgba(210,125,255,1) 49%, rgba(159,121,255,1) 93%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section{
    background-image: url("../assets/images/background/dots.svg");
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover;
}

.hero-bg-gradient{
    background: linear-gradient(180deg, rgba(24,27,32,0.9) 30%, rgba(0,0,0,0.258140756302521) 65%);
}

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

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

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

/* Button hover styles are handled by Tailwind classes */

.btn:disabled{
    cursor: default;
}

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

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

.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{
    transition: color 0.3s;
}

.footer-link:hover{
    color: #483cf4;
}


.review-container {
    position: relative;
    max-width: 600px;
    margin: auto;
}

.review-card{
    box-shadow: 0px 2px 4px #757474a0;
    border-radius: 15px;
    /* width: 200px; */
    /* height: 550px; */
    padding: 10px;
}

/* --------- collapsible div ---------- */
.collapsible {
    background-color: #f3f0f0;
    color: #2b2929;
    /* cursor: pointer; */
    padding: 5px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
}

/* Style for the collapsible content */
.content {
    padding: 0 18px;
    /* display: none; */
    height: 0px;
    overflow: hidden;
    background-color: transparent;
    transition: height 0.5s;
    text-align: justify;
    margin-top: 10px;
}

/* Collapsible hover styles are handled by Tailwind classes */

@media (max-width: 1023px) {
    header .collapsible-header {
        position: fixed;
        right: 0px;
        flex-direction: column;
        opacity: 0;
        height: 100vh;
        min-height: 100vh;
        height: 100dvh;
        width: 0vw;
        justify-content: space-between;
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: end;
        background-color: #181B20;
        color: #ffffff;
        overflow-y: auto;
        box-shadow: 2px 0px 3px #9f9f9f;
    }

    .header-links{
        color: rgb(255, 255, 255);
    }
    
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #1d2127;
    border: 1px solid #333a44;
    border-radius: 12px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0 24px;
    border-bottom: 1px solid #333a44;
    margin-bottom: 24px;
}

.modal-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: #333a44;
}

.modal-form {
    padding: 0 24px 24px 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 12px 16px;
    background-color: #181B20;
    border: 1px solid #333a44;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #181B20;
    border: 1px solid #333a44;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-text-color);
    box-shadow: 0 0 0 3px rgba(196, 144, 255, 0.1);
}

.form-input::placeholder {
    color: #6b7280;
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background-color: #181B20;
    color: #ffffff;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #333a44;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #333a44;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #333a44;
    border-color: #4a5568;
}

.btn-primary {
    background-color: var(--btn-bg);
    color: var(--btn-color);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5a5fc7;
    transform: translateY(-1px);
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    /* Header improvements */
    header {
        padding: 0 2%;
    }
    
    /* Hero section mobile fixes */
    .hero-section {
        padding-top: 20px;
    }
    
    .hero-bg-gradient {
        padding: 20px 10px;
    }
    
    /* Process section mobile improvements */
    .btop {
        margin-bottom: 20px;
    }
    
    /* Button improvements for mobile */
    .btn {
        font-size: 14px;
        padding: 12px 20px;
        min-height: 44px; /* Better touch target */
    }
    
    /* Form improvements */
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }
    
    /* Accordion mobile improvements */
    .accordion-content {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* List improvements */
    ul li {
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* Hex animation hidden on mobile */
    .hex {
        display: none;
    }
    
    /* Better spacing for mobile */
    .tw-mt-40 {
        margin-top: 2rem;
    }
    
    .tw-mt-20 {
        margin-top: 1.5rem;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px 20px 0 20px;
    }
    
    .modal-form {
        padding: 0 20px 20px 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-secondary,
    .btn-primary {
        width: 100%;
    }
}

/* Additional mobile breakpoints */
@media (max-width: 480px) {
    /* Extra small mobile devices */
    .hero-bg-gradient {
        padding: 10px 5px;
    }
    
    .tw-container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .btn {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    h5 {
        font-size: 1.5rem;
    }
    
    h6 {
        font-size: 1.2rem;
    }
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: linear-gradient(135deg, #1d2127 0%, #2a2f36 100%);
    border-top: 1px solid #333a44;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000 !important;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    max-height: 50vh;
    overflow-y: auto;
}

.cookie-consent-banner.show {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.cookie-consent-banner {
    visibility: hidden;
    opacity: 0;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    min-height: 80px;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h4 {
    margin: 0 0 8px 0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-consent-text p {
    margin: 0;
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-consent-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: auto;
    white-space: nowrap;
}

.cookie-settings-link {
    color: #c490ff;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.cookie-settings-link:hover {
    color: #ffffff;
    background-color: rgba(196, 144, 255, 0.1);
    border-color: #c490ff;
}

/* Mobile responsive cookie banner */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 15px;
    }
    
    .cookie-consent-text {
        min-width: auto;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-consent-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-consent-buttons .btn {
        width: 100%;
    }
    
    .cookie-settings-link {
        text-align: center;
        margin-top: 8px;
    }
}