@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", system-ui, sans-serif !important;
}

html,
body {
    overflow-x: hidden;
}

:root {
    --primary-color: #124BDC;
    --secondary-color: #0A2876;
    --text-primary: #333D52;
    --text-secondary: #6b7280;
    --gradient-start: #2d6ae3;
    --gradient-end: #1d4ed8;
    --card-bg: #ffffff;
    --section-text: #192136;
}

.errors,
.star {
    color: #e63f30;
}

.pointer {
    cursor: pointer;
}

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

/* Custom Navbar Styles */
.navbar-vesure {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.navbar-vesure.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Navigation Links */
.nav-link {
    position: relative;
    text-decoration: none;
    color: #333;
    margin: 0 0.2rem;
    font-size: 16px;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.3s ease;
}

/* Demo Button */
.demo-btn {
    background-color: var(--section-text);
    padding: 5px 30px;
    border-radius: 24px;
    transition: 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(58, 107, 255, 0.2);
}

.demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(58, 107, 255, 0.3);
}

/* Animated Hamburger */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 30px;
    position: relative;
    background: transparent;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    z-index: 999999999 !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    position: absolute;
    height: 3px;
    width: 85%;
    background: var(--primary-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
}

.navbar-toggler span:nth-child(1) {
    top: 0;
}

.navbar-toggler span:nth-child(2) {
    top: 10px;
}

.navbar-toggler span:nth-child(3) {
    top: 20px;
}

/* Hamburger Animation when Active */
.navbar-toggler.collapsed span:nth-child(1) {
    transform-origin: left center;
}

.navbar-toggler.collapsed span:nth-child(2) {
    transform-origin: left center;
}

.navbar-toggler.collapsed span:nth-child(3) {
    transform-origin: left center;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: rotate(45deg);
    top: 7px;
    left: 5px;
    background-color: var(--secondary-color);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: rotate(-45deg);
    top: 6px;
    left: 4px;
    background-color: var(--secondary-color);
}

/* Hero */
.cloudBg {
    background-color: #F0F4F8;
}

.cloudBall {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 14px;
    height: 14px;
}

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

.gradient-text {
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.para-color {
    color: #8E97A8;
}

.heroBtn .demo-btn {
    max-width: max-content;
    text-decoration: none;
    background-position: 100% 100%;
    position: relative;
    overflow: hidden;
    color: #fff;
    transition: all 0.3s ease;
}

/* Sliding overlay */


.heroBtn .demo-btn,
.inquiryBox .demo-btn {
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    padding-block: 10px;
    cursor: pointer;
}

.heroBtn .demo-btn:hover {
    transform: translateY(-2px) !important;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
}

.inquiryBox .demo-btn {
    max-width: max-content;
}

.business_showcase h2 {
    font-size: 39px;
}

.business_showcase small {
    color: #878C91;
}

.form-container {
    background: linear-gradient(#E1E1E1, #7B7B7B);
    border-radius: 15px;
    box-shadow: 0px 9px 3px 0px #02164017;
}

.signup-btn {
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    padding-block: 13px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.signup-btn:hover {
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
}


/* Inset label container */
.inset-field {
    position: relative;
    margin-bottom: 16px;
}

.inset-field label {
    position: absolute;
    top: -8px;
    left: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    background: #fff;
    padding: 0 4px;
    pointer-events: none;
    z-index: 99999;
}

.inset-field input,
.inset-field select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 12px;
}

.inset-field input:focus,
.inset-field select:focus {
    outline: none;
    border-color: #9ca3af;
    box-shadow: none;
}

.form-check-label {
    font-size: 13px;
}


.form-check-input:checked {
    background-color: #e63f30;
    border-color: #e63f30;
}


.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* features */
.sectionBox {
    max-width: max-content !important;
    color: var(--section-text);
    background-color: #D7E5FF;
    font-weight: 600;
    padding: 10px 20px;
    font-size: 20px;
}

.sectionBoxHead {
    font-size: 2.5rem;
    color: var(--text-primary);
}

.glass-card-hover,
.why-card {
    border-radius: 1rem;
    border: 1px solid transparent;
    background-color: #F0F4F8;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 13px hsl(0 0% 0% / .3);
}

.icon-box {
    padding: 13px;
    max-width: max-content;
    box-shadow: 0 4px 15px hsl(0 0% 0% / .3);
    transition: transform 0.3s ease;
}

.green {
    background-color: #34C759;
}

.red {
    background-color: #FF383C;
}

.purple {
    background-color: #CB30E0;
}

.orange {
    background-color: #FF8D28;
}

.burgandi {
    background-color: #6155F5;
}

.pink {
    background-color: #FF2D55;
}

.blue {
    background-color: #00C0E8;
}

.glass-card-hover .h5,
.why-card h6 {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.glass-card-hover:hover {
    border-color: var(--primary-color);
    /* black border */
}

.glass-card-hover:hover .icon-box {
    transform: scale(1.15);
}

.glass-card-hover:hover .h5 {
    color: var(--primary-color);
}

#whyUs .form-container {
    padding-bottom: 80px !important;
}

#coonection h6 {
    font-size: 24px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 0;
    width: 90%;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='8' viewBox='0 0 100 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4 C10 0 20 8 30 4 40 0 50 8 60 4 70 0 80 8 90 4 100 2' stroke='%23124BDC' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

/* Show stroke on hover */
.nav-link:hover::after {
    transform: scaleX(1);
}



.process-card {
    background: #F0F4F8;
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 35px 16px;
    border: 1px solid rgba(0, 0, 0, .08);
    transition: all .3s ease;
}

/* hover */
.process-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(18, 75, 220, .15);
}

/* step badge */
.step-badge {
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 50px;
}

/* Card */
.testimonial-card {
    background: #F0F4F8;
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, .08);
    transition: all .3s ease;
    text-align: start;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(18, 75, 220, .15);
    border-color: var(--primary);
}

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

.testimonial-card .avatar {
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 50px;
    padding: 12px;
    color: #fff;
    min-width: 48px;
}

.brand-logo {
    /* height: 100px; */
    max-width: 140px;
    object-fit: contain;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

#faqs div.faqMove {
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    padding: 7px 40px;
    border-radius: 20px;
    transform: rotate(-9deg);
    max-width: max-content;
}

#faqs div.faqMove:hover {
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
}

#faqs h4 {
    font-size: 40px;
}

#faqs .accordion-item {
    border: 0 !important;
    margin-bottom: 10px;
}

#faqs .accordion-button {
    background-color: #F0F4F8;
    color: #000;
    box-shadow: none;
    /* margin-bottom: 10px; */
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#faqs .accordion-button.collapsed::after {
    top: 5px;
    position: relative;
}

#faqs .accordion-button::after {
    background-image: url(../../../images/landing-page/hrms/faq-drop.png) !important;
}

.inquiryBox {
    background-color: #F0F4F8;
    padding: 40px;
    border-radius: 20px;
}

.ctaBox {
    background-image: url(../../../images/landing-page/hrms/shadow.png) !important;
    background-color: var(--primary-color);
    padding: 60px 40px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.trial-button {
    background-color: #fff;
    color: #000;
    font-size: 23px;
    padding: 10px 50px;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
}

.trial-button:hover {
    background-color: #000;
    transform: translateY(-2px);
    color: #fff;
}

/* Responsive adjustments */
@media (min-width: 991.98px) {
    .display-lg-6 {
        font-size: 4rem;
    }

    .hero_description,
    #whyUs p {
        max-width: 700px;
    }

    .w-md-75 {
        max-width: 75%;
    }

    .heroBtn .demo-btn {
        margin-inline: 0 !important;
    }
}

@media (max-width: 991.98px) {
    .demo-btn-container {
        text-align: center;
        margin-top: 1rem;
    }

    .demo-btn {
        width: 100%;
        max-width: 250px;
    }

    .icon-box {
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .heroHead {
        font-size: 28px !important;
    }

    .heroBtn .demo-btn {
        display: none !important;
    }

    .navbar-collapse .demo-btn {
        max-width: 85%;
    }

    .animate-float {
        animation: none;
    }

    .nav-link::after {
        width: 70%;
        background-size: 35% 100%;
    }

    .sectionBoxHead,
    #whyUs h2.display-5,
    .business_showcase h2 {
        font-size: 1.5rem !important;
    }

    .business_showcase small {
        font-size: .675em;
    }

    p.para-color.fs-5,
    .ctaBoxContent p.fs-5 {
        font-size: 1rem !important;
    }

    .sectionBox {
        padding: 7px 15px;
        font-size: 16px;
    }

    #whyUs .form-container {
        padding-bottom: 40px !important;
    }

    .customPadding {
        padding-inline: 38px !important;
    }

    #coonection h6 {
        font-size: 20px;
    }

    .testimonial-card {
        padding: 18px 25px;
    }

    .testimonial-card h3 {
        font-size: 17px !important;
    }

    .brand-logo {
        filter: grayscale(0%);
        opacity: 1;
        height: 100%;
    }

    #faqs h4 {
        font-size: 30px;
    }

    .inquiryBox {
        padding: 25px;
    }

    #faqs .accordion-button {
        padding: 1rem;
        font-size: 14px;
        line-height: 21px;
    }

    .ctaBox {
        padding: 30px;
    }

    .trial-button {
        margin-top: 15px;
        font-size: 17px;
        padding: 10px 31px;
    }
}

/* Thankou */
.thankDiv h5 {
    font-size: 58px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thankBtn {
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border: none;
    transition: all 0.3s ease;
    padding: 20px 35px;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
}

/* Modal */

#book_demo .form-container {
    background: #F0F4F8;
}

#book_demo .close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    position: absolute;
    top: -20px;
    right: -10px;
    background-color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    opacity: 0.4;
    color: #7E7E7E !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    z-index: 999;
}

#book_demo .close-btn:hover {
    opacity: 1;
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* MOBILE SLIDE MENU */
@media (max-width: 991px) {
    .mobile-slide-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: #fff;
        padding: 1rem;
        transition: right 0.4s ease-in-out;
        z-index: 105000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    }

    .mobile-slide-menu.show {
        right: 0;
    }

    /* Center menu items */
    .mobile-slide-menu .navbar-nav {
        margin-top: 3rem;
        text-align: left;
    }

    .mobile-slide-menu .nav-link {
        font-size: 1rem;
        padding: 0.75rem 0;
    }

    /* Demo button spacing */
    .mobile-slide-menu .demo-btn-container {
        margin-top: 2rem;
    }

    /* Prevent body scroll when open */
    body.menu-open {
        overflow: hidden;
    }
}


/* Custom Styles for App Section */
.download-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.qr-gradient-bg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 400px;
}

.qr-wrapper {
    background: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.qr-wrapper:hover {
    transform: scale(1.05);
}

.badge-item {
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4b4b4b;
    border: 1px solid #eee;
}

/* Icons (Bootstrap Icons recommended) */
.badge-item i {
    margin-right: 5px;
    color: #764ba2;
}

@media (max-width: 991px) {
    .qr-gradient-bg {
        min-height: 300px;
    }
}