@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: #ffffff;
    /* button color*/
    --btn-bg: #192a45;
    /* button bg color*/

    --primary-text-color: #192a45;
    --link-hover: #192a45;
    --link-hover-secondary: #0EA5E9;
    --input-hover-bd-color: #192a45;
}


html {
    scroll-behavior: smooth;
    font-family: "Roboto", sans-serif;
}

header {
    /* background-color: #fff;
    color: #000; */
}


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: linear-gradient(135deg, #192a45 0%, #0EA5E9 50%, #06B6D4 100%);
    filter: blur(350px);
    opacity: 0.15;
}

.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(--link-hover-secondary);
}

.primary-text-color {
    color: var(--primary-text-color);
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-100 {
    opacity: 100 !important;
}

/* Button Styles */
.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;
}

.btn:hover {}

.btn:disabled {
    cursor: default;
}

.btn-primary {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    color: white;
    background-color: var(--primary-text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(25, 42, 69, 0.2);
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #0f1d2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(25, 42, 69, 0.3);
}

.btn-secondary {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    color: var(--primary-text-color);
    background-color: white;
    border: 2px solid var(--primary-text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: var(--primary-text-color);
    color: white;
    transform: translateY(-2px);
}

.btn-cta {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    color: var(--primary-text-color);
    background-color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border: none;
    width: 100%;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.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);
}

.input-error {
    border-bottom: 3px solid #ff1e1e;
}

.input-error:focus-within {
    border-bottom: 3px solid #fd0101;
}

/* Navigation dots styling */
.dots-container {
    text-align: center;
    margin-top: 20px;
}

.footer-link {
    color: #0d0d0d;
    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 .active,
.collapsible:hover {
    /* background-color: #dedddd; */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 6px rgba(25, 42, 69, 0.2);
    }
    50% {
        box-shadow: 0 8px 12px rgba(14, 165, 233, 0.4);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.cta-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

/* Hero Section */
.hero-section {
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 1px 1px, var(--primary-text-color) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Dashboard Carousel Styles */
.dashboard-carousel {
    user-select: none;
}

.carousel-container {
    position: relative;
    background: #ffffff;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    flex-shrink: 0;
    flex-grow: 0;
    box-sizing: border-box;
}

.carousel-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    vertical-align: middle;
    border: 0;
}

.carousel-btn {
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-indicators {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background-color: #9ca3af;
    transform: scale(1.2);
}

.indicator.active {
    background-color: #192a45;
    width: 32px;
    border-radius: 6px;
}

/* Mobile optimization for carousel */
@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn i {
        font-size: 1.25rem;
    }

    .carousel-btn-prev {
        left: 8px;
    }

    .carousel-btn-next {
        right: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 24px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

@media not all and (min-width: 1024px) {
    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: #ffffff;
        color: #000000;
        overflow-y: auto;
        box-shadow: 2px 0px 3px #000;
    }

    .header-links {
        color: var(--primary-text-color);
    }

}