/* HROnline+ Custom CSS */

/* CSS Variables */
:root {
    --primary-purple: #9333ea;
    --primary-orange: #f59e0b;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --white: #ffffff;
    --gradient-bg: linear-gradient(135deg, #9333ea 0%, #f59e0b 100%);
    --hero-gradient: linear-gradient(135deg, #9333ea 0%, #f59e0b 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --border-radius: 0.75rem;
    --border-radius-lg: 1rem;
}

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

/* Section Title with Pill Border */
.section-title-pill {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #4434FD;
    border-radius: 50px;
    background: transparent;
    display: inline-block;
    width: fit-content;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    transition: all 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

/* Desktop: scrolled-nav starts hidden */
@media (min-width: 992px) {
    .navbar.scrolled-nav {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
    }
}

/* Mobile: scrolled-nav is always visible */
@media (max-width: 991.98px) {
    .navbar.scrolled-nav {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}

/* Navbar when scrolled */
.navbar.navbar-scrolled {
    background: linear-gradient(135deg, #9333ea 0%, #f59e0b 100%) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    height: 80px;
    width: auto;
}

.scrolled-nav .navbar-brand img {
    height: 40px!important;
    width: auto;
}

.homepage .navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-pill-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-pill-container .navbar-nav {
    flex-direction: row;
    gap: 10px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.348);
    padding: 0.2rem 1.5rem !important;
    margin: 0;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: black !important;
    font-weight: 600;
}

.sign-in-btn {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: black !important;
    font-weight: 600;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: .9rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.sign-in-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: black !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.custom-dropdown.show .sign-in-btn,
.sign-in-btn:active,
.sign-in-btn.active {
    background: var(--primary-purple) !important;
    color: white !important;
    border-color: var(--primary-purple) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

/* Offcanvas Styles */
.offcanvas {
    /*background: linear-gradient(135deg, #9333ea 0%, #f59e0b 100%) !important;*/
    background: transparent !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    width: 320px;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
}

.offcanvas-header .navbar-brand img {
    height: 40px;
    width: auto;
}

.offcanvas-body {
    padding: 2rem 1.5rem;
}

.offcanvas .nav-pill-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
}

.offcanvas .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
}

.offcanvas .navbar-nav .nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.75rem 1.5rem !important;
    margin: 0;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
}

.offcanvas .navbar-nav .nav-link:hover,
.offcanvas .navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.25);
    color: white !important;
    font-weight: 600;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.offcanvas .sign-in-btn {
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: white !important;
    font-weight: 600;
    padding: 0.75rem 2rem !important;
    border-radius: 50px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
}

.offcanvas .sign-in-btn:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.6) !important;
}

.offcanvas .custom-dropdown.show .sign-in-btn,
.offcanvas .sign-in-btn:active,
.offcanvas .sign-in-btn.active {
    background: var(--primary-purple) !important;
    color: white !important;
    border-color: var(--primary-purple) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.offcanvas .custom-dropdown-menu {
    position: static;
    background-image: url('../images/signin-dropdown-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.15), 0 15px 20px -5px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    margin: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: none;
    width: 100%;
}

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

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
    padding: 0.5rem;
}

.btn-close-white:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
}

.sign-in-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.custom-dropdown.show .sign-in-btn i {
    transform: rotate(90deg);
}

.custom-dropdown-menu {
    position: absolute;
    top: 20%;
    right: 0;
    background-image: url('../images/signin-dropdown-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.15), 0 15px 20px -5px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    width: 220px;
    margin-top: 0.75rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    max-width: calc(100vw - 2rem);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0;
    border: none;
}

.dropdown-option {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border-radius: 1rem;

    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.dropdown-option:focus,
.dropdown-option:active {
    color: inherit;
    text-decoration: none;
    outline: none;
}

.hr-dashboard {
    /* Background managed by general dropdown-option rule */
   text-align: right;
}

.employee-access {
    /* Background managed by general dropdown-option rule */
}

.option-icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hr-dashboard .option-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.employee-access .option-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.dropdown-option:hover .option-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.option-icon i {
    font-size: 1.5rem;
}

.option-content {
    flex: 1;
    z-index: 1;
}

.option-content h6 {
    margin: 0 0 0.25rem 0;
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
    letter-spacing: -0.025em;
}

.option-content small {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.3;
}

.navbar-toggler {
 
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);

}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);

}

/* Hero Section */
.hero-section {
    background: var(--hero-gradient);
    background-image: url('../images/hero-bg.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="9" cy="9" r="1"/><circle cx="9" cy="39" r="1"/><circle cx="39" cy="9" r="1"/><circle cx="39" cy="39" r="1"/></g></svg>');
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 2rem 0;
    margin-left: 10%;
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #172026;
}

.hero-title span {
    color:#172026;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #172026;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
}


/* App Store Buttons */
.btn-app-store,
.btn-google-play {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: fit-content;
}

.btn-app-store {
    background: var(--primary-purple);
    color: white;
}

.btn-app-store:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-google-play {
    /*background: white;*/
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-google-play:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-app-store i,
.btn-google-play i {
    font-size: 1.5rem;
}

.download-text {
    font-size: 0.75rem;
    line-height: 1;
    opacity: 0.8;
}

.store-name {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

/* Hero Image */
.hero-image-container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    z-index: 1;
}

.hero-image {
    max-width: none;
    width: auto;
    height: 80vh;
    max-height: 600px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* About Page Hero Background */
body.about-page .hero-section {
    background-image: url('../images/about-hero-bg.png');
    background-size: cover;
    background-position: 0px -100px;
    background-repeat: no-repeat;
}

.about-page .hero-description, .about-page .hero-content p{
    color:#667085;
}

.hero-offset-section {
    background-color: #F3F7FF;
    height: 50vh;
    margin-top: -550px;
}

/* Features Page Hero Background */
body.features-page .hero-section {
    background-image: url('../images/features-page-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* Mobile responsive styles for about page background */
@media (max-width: 991px) {
    body.about-page .hero-section {
        background-image: url('../images/about-hero-bg.png') !important;
        background-size: cover !important;
        background-position: center -500px !important;
        background-repeat: no-repeat !important;
    }
    
}

@media (max-width: 767px) {
    body.about-page .hero-section {
        background-image: url('../images/about-hero-bg.png') !important;
        background-size: cover !important;
        background-position: center -500px !important;
        background-repeat: no-repeat !important;
    }
    
}

@media (max-width: 575px) {
    body.about-page .hero-section {
        background-image: url('../images/about-hero-bg.png') !important;
        background-size: cover !important;
        background-position: center -700px !important;
        background-repeat: no-repeat !important;
    }
    
    body.features-page .all-features-section {
        background-position: -200px -800px !important;
    }
}

/* Mobile responsive styles for features page background */
@media (max-width: 991px) {
    body.features-page .hero-section {
        background-image: url('../images/features-page-bg.png') !important;
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }
}

@media (max-width: 767px) {
    body.features-page .hero-section {
        background-image: url('../images/features-page-bg.png') !important;
        background-size: contain !important;
        background-position: center -500px !important;
        background-repeat: no-repeat !important;
    }
}

@media (max-width: 575px) {
    body.features-page .hero-section {
        background-image: url('../images/features-page-bg.png') !important;
        background-size: contain !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }

    .features-background-text {
        font-size: 6rem;
    }

    .features-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    
    .hero-section {
        min-height: auto;
        padding: 6rem 0 4rem;
    }
    
    .navbar {
        /*background: linear-gradient(135deg, #9333ea 0%, #f59e0b 100%) !important;*/
        padding: 1rem 0;
    }
    
    /* Hide mobile collapse styles since we're using offcanvas */
    .navbar-collapse {
        display: none !important;
    }
    
    /* Ensure offcanvas is properly sized on tablet */
    .offcanvas {
        width: 300px;
    }
}
    
   
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    
    
    .hero-content {
        margin-left: 0;
       
    }
    
    .hero-image-container {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        text-align: center;
        margin-bottom: 3rem;
        z-index: auto;
    }
    
    .hero-image {
        max-width: 100%;
        width: auto;
        height: auto;
        max-height: none;
    }
}

@media (max-width: 767px) {
    
    .navbar {
        background: linear-gradient(135deg, #9333ea 0%, #f59e0b 100%) !important;
        padding: 0.75rem 0;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .navbar-toggler {
        padding: 0.5rem;
        border-width: 2px;
    }
    
    .navbar-toggler-icon {
        width: 1.25em;
        height: 1.25em;
    }
    
    /* Offcanvas responsive adjustments */
    .offcanvas {
        width: 280px;
    }
    
    .offcanvas-body {
        padding: 1.5rem 1rem;
    }
    
    .hero-title {
        font-size: 2.3125rem; /* 37px */
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-app-store,
    .btn-google-play {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    /* Reduce spacing between hero content and hero image in mobile */
    .hero-content-container {
        margin-bottom: 1rem;
    }
    
    .hero-image-container {
        margin-bottom: 2rem;
    }

    /* Tablet dropdown responsive adjustments */
    .custom-dropdown-menu {
        min-width: 350px;
        padding: 1.25rem;
    }

    .dropdown-option {
        padding: 1rem 1.125rem;
    }

    .option-icon {
        width: 55px;
        height: 55px;
    }

    .option-icon i {
        font-size: 1.375rem;
    }

    .option-content h6 {
        font-size: 1.0625rem;
    }
}

@media (max-width: 575px) {
    
    .hero-description {
        font-size: 1.125rem;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
        align-items: center;    
    }
    .hero-content {
        text-align: center!important;
    }
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand img {
        height: 30px;
    }
    
    /* Offcanvas adjustments for small phones */
    .offcanvas {
        width: 260px;
    }
    
    .offcanvas-body {
        padding: 1.25rem 0.75rem;
    }
    
    .offcanvas .dropdown-option {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .offcanvas .option-content h6 {
        font-size: 0.9rem;
    }

    /* Further reduce spacing for smaller mobile devices */
    .hero-content-container {
        margin-bottom: 0.5rem;
    }
    
    .hero-image-container {
        margin-bottom: 1.5rem;
    }

    /* Desktop dropdown responsive adjustments */
    .custom-dropdown-menu {
        min-width: 300px;
        padding: 1rem;
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .dropdown-option {
        padding: 0.875rem 1rem;
        gap: 1rem;
    }

    .option-icon {
        width: 50px;
        height: 50px;
    }

    .option-icon i {
        font-size: 1.25rem;
    }

    .option-content h6 {
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 5rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2.315rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }

    .features-section {
        padding: 40px 0!important;
    }

    .features-background-text {
        font-size: 5rem!important;
        opacity: 0.8;
        top:5%!important;
    }

    .features-title {
        font-size: 1.75rem!important;
        margin-bottom: 1rem;
    }

    .features-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-learn-more {
        padding: 0.65rem 2rem;
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .feature-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
        min-height: 140px;
    }

    .card-content-wrapper {
        gap: 0.75rem;
    }

    .feature-content {
        padding-right: 0.75rem;
    }

    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-bg);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #ea580c 100%);
}

/* Features Section */
.features-section {
    padding: 120px 0 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

body.features-page .all-features-section {
    background-image: url('../images/features-page-bg.png');
    background-size:contain;
    background-position: 0px -200px;
    background-repeat: no-repeat;
}

.features-background-text {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    font-weight: 800;
    color: rgba(147, 51, 234, 0.05);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.features-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.features-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.features-page .features-subtitle{
    
    max-width: 100%;
    font-size: 1rem;
}

.btn-learn-more {
    background: var(--primary-purple);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 3rem;
}

.btn-learn-more-arrow{
    padding-left: 0px;
    position: relative;
    padding-right: 3rem;
}

.btn-learn-more-arrow::after {
    content: "→";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-learn-more-arrow:hover::after {
    transform: translateY(-50%) translateX(5px);
}

.btn-learn-more:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.feature-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;

    min-height: 130px;
}

.blog-page .feature-card{
    margin-bottom: 2rem;   
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-bg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
}

.feature-card:hover::before {
    opacity: 1;
}

.card-content-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
    height: 100%;
    min-height: inherit;
    position: relative;
}

.feature-content {
    flex: 1;
    padding-right: 1rem;
    z-index: 2;
    position: relative;
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-gray);
    margin: 0;
    font-weight: 400;
}

/* Equal Height Cards Layout */
.features-section .row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.features-section .feature-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

/* Individual Feature Card Styles */
.personal-info-module {
    background-image: url('../images/one-201.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-right: 20px;
}

.applicant-module {
    background-image: url('../images/one-applicant.png');
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    padding-left: 100px;
}

.salary-scenario-module {
    background-image: url('../images/one-whatif.png');
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat;
    padding-right: 100px;
}

.resigned-module {
    background-image: url('../images/one-resigned.png');
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    padding-left: 130px;
}

.query-module {
    background-image: url('../images/one-query.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-right: 100px;
}

.reports-module {
    background-image: url('../images/one-reports.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-right: 100px;
}

/* New Feature Card Styles for Features Page */
.personal-information-module {
    background-image: url('../images/one-201.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-right: 80px;
}

.government-identification-module {
    background-image: url('../images/one-government.png');
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    padding-left: 120px;
}

.educational-attainment-module {
    background-image: url('../images/one-educational.png');
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    padding-left: 120px;
}

.family-information-module {
    background-image: url('../images/one-family.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-right: 120px;
}

.employment-history-module {
    background-image: url('../images/one-employment-history.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-right: 120px;
}

.language-profile-module {
    background-image: url('../images/one-language.png');
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    padding-left: 80px;
    margin-top: 50px;
}

.reference-information-module {
    background-image: url('../images/one-reference.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-right: 120px;
}

/* New Feature Card Styles - Row 2 */
.work-information-module {
    background-image: url('../images/one-work-information.png');
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    padding-left: 80px;
}

.training-profile-module {
    background-image: url('../images/one-training-profile.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    
}

.leaves-application-module {
    background-image: url('../images/one-leaves-application.png');
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    padding-left: 120px;
}

.movement-profile-module {
    background-image: url('../images/one-movement.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-right: 120px;
}

.violations-profile-module {
    background-image: url('../images/one-violations.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-right: 80px;
}

.awards-citation-module {
    background-image: url('../images/one-awards.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-right: 120px;
}

.goals-module {
    background-image: url('../images/one-goals.png');
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    padding-left: 120px;
}

.performance-evaluation-module {
    background-image: url('../images/one-performance.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-right: 120px;
}

.applicant-module-new {
    background-image: url('../images/one-applicant.png');
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
   padding-left: 120px;
}

.benefits-evaluation-module {
    background-image: url('../images/one-benefits.png');
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    padding-left: 120px;
}

.clubs-module {
    background-image: url('../images/one-clubs.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-right: 80px;
}

.applicant-requirement-module {
    background-image: url('../images/one-applicant-requirement.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
}

.resigned-module-new {
    background-image: url('../images/one-resigned.png');
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    padding-left: 120px;
}

/* New Feature Card Styles - Row 3 */
.based-on-query-module {
    background-image: url('../images/one-query.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-right: 80px;
}

.what-if-salary-module {
    background-image: url('../images/one-whatif.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-right: 120px;
}

.organizational-chart-module {
    background-image: url('../images/one-organizational.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-right: 120px;
}

/* New Feature Card Styles - Row 4 (Reports Section) */
.one-report-module {
    background-image: url('../images/one-reports.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-right: 80px;
}

.one-custom-report-module {
    background-image: url('../images/one-custom-report.png');
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    padding-left: 120px;
}

/* Featured Apps Section */
.featured-apps-section {
    background: url('../images/featured-apps-bg.png') top center no-repeat;
    background-size: 120%;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Blog1 
.blog-1 {
    background-image: url('../images/blog-1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 300px;
}*/

.blog-2 {
    background-image: url('../images/blog-2.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.blog-3 {
    background-image: url('../images/blog-3.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.blog-v2 .blog-v1 {
    background-image: url('../images/blog-color-1.png');
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    max-height: 220px!important;
}

.blog-v2 .blog-2 {
    background-image: url('../images/blog-color-2.png');
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    max-height: 220px;
}

.blog-v2 .blog-3 {
    background-image: url('../images/blog-color-3.png');
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    max-height: 220px;
}

.blog-v2 .blog-4 {
    background-image: url('../images/blog-color-4.png');
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    max-height: 220px;
}

.blog-v2 .blog-5 {
    background-image: url('../images/blog-color-5.png');
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    max-height: 220px;
}


.featured-apps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="9" cy="9" r="1"/><circle cx="9" cy="39" r="1"/><circle cx="39" cy="9" r="1"/><circle cx="39" cy="39" r="1"/></g></svg>');
    z-index: 1;
}

.featured-apps-header {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.featured-apps-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-apps-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-request-quote {
    background: var(--primary-purple);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-request-quote:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.featured-apps-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.featured-app {
    display: flex;
    align-items: center;
    gap: 80px;
}

.featured-app.app-2 .app-info {
    text-align: right; 
}
.app-phone {
    position: relative;
    flex: 0 0 auto;
    z-index: 3;
}

.phone-mockup {
    width: 600px;
    height: auto;
    position: relative;
    z-index: 4;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.app-info {
    flex: 1;
    color: #667085;
}

.app-logo {
    margin-bottom: 1.5rem;
}

.logo-img {
    height: 80px;
    width: auto;
}

.lbc-logo, .abs-logo{
    height: 150px;
}

.app-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667085;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.app-description {
    font-size: 1rem;
    color: #667085;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 400;
}

.app-description:last-child {
    margin-bottom: 0;
}

.featured-app.app-2{
    margin-top: 50px;
}

.featured-app.app-3{
    margin-top: -120px;
}

/* Mobile Responsive */
/* 1440px specific styles */
@media (min-width: 1200px) and (max-width: 1440px) {
    .hero-offset-section {
        margin-top: -450px;
    }
}

@media (max-width: 1199px) {
    .hero-offset-section {
        margin-top: -450px!important;
    }
    .featured-apps-title {
        font-size: 2.5rem;
    }
    
    .featured-app {
        gap: 60px;
        margin-bottom: 100px;
    }
    
    .phone-mockup {
        width: 500px;
    }
}

@media (max-width: 991px) {
    .featured-app.app-2 .app-info{
        text-align: center!important;
    }
    .featured-apps-section {
        padding: 80px 0 60px;
    }
    
    .featured-apps-title {
        font-size: 2.2rem;
    }
    
    .featured-apps-subtitle {
        font-size: 1rem;
    }
    
    .featured-app {
        flex-direction: column !important;
        text-align: center!important;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .phone-mockup {
        width: 450px;
    }
    
    .app-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .featured-apps-section {
        padding: 60px 0 40px;
        text-align: center;
    }
    
    .featured-apps-header {
        margin-bottom: 60px;
        padding: 0 1rem;
    }
    
    .featured-apps-title {
        font-size: 1.8rem;
    }
    
    .featured-apps-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-request-quote {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .featured-apps-content {
        padding: 0 1rem;
    }
    
    .featured-app {
        margin-bottom: 60px;
        gap: 30px;
    }
    
    .phone-mockup {
        width: 400px;
    }
    
    .logo-img {
        height: 50px;
    }

    .lbc-logo, .abs-logo{
        height: 100px;
    }
    
    .app-name {
        font-size: 1rem;
    }
    
    .app-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .featured-apps-section {
        padding: 50px 0 30px;
        background-size: 400%
    }
    
    .featured-apps-title {
        font-size: 1.6rem;
    }
    
    .phone-mockup {
        width: 350px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    background-image: url('../images/testimonial-bg.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.testimonials-content {
    padding-right: 2rem;
}

.testimonials-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials-cards {
    padding-left: 2rem;
}

.testimonial-card {
    position: relative;
    border: none;
    transition: all 0.3s ease;
    background: white;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.testimonial-card .card-body {
    padding: 1.5rem;
    position: relative;
}

.testimonial-card img {
    transition: all 0.3s ease;
}

.testimonial-card:hover img {
    border-color: var(--primary-purple);
}

.testimonial-card h6 {
    color: #1a1a1a;
    font-size: 0.95rem;
}

.testimonial-card .card-text {
    color: #495057;
    line-height: 1.6;
    font-size: 0.9rem;
}

.testimonial-card .bi-quote {
    font-size: 2rem !important;
}

/* Featured testimonial styling */
.testimonial-card.border-primary {
    border: none !important;
    position: relative;
    overflow: hidden;
}

.testimonial-card.border-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: var(--primary-purple);
    border-radius: 10px;
}

/* Second testimonial card offset */
.testimonial-card.featured-testimonial {
    margin-left: -2rem;
    position: relative;
    z-index: 2;
}


/* Footer Section */
.social-icons a{
    text-decoration: none;
}

.cta-banner-subtitle a{
    text-decoration: none;
    color:#fff;
}


.footer-cta-title{
    font-size: 3rem!important;
}
.footer-section {
    background-image: url('../images/footer-bg.png');
    background-size: cover;
    background-position: 0px 400px;
    background-repeat: no-repeat;
    padding-bottom: 100px;
}

.blog-page .footer-section{
    margin-top: 100px;
    background-position: 0px 0px;
 
}

.about-page .footer-section {
    background-image: url('../images/footer-bg.png');
    background-size: cover;
    background-position: 0px 1300px;
    background-repeat: no-repeat;
    padding-bottom: 100px;
}

/* Glass Container for Footer Content */
.footer-glass-container {
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 13px 10px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}


/* LOGIN */

body.login{
    background-image: url('../images/hero-login-bg-right.png'), url('../images/footer-login-bg.png');
    background-position: top right, center 500px;
    background-repeat: no-repeat, no-repeat;
    background-size: auto, cover;
    min-height: 100vh;
}

body.login.employee{
    background-image: url('../images/hero-login-employee-bg-right.png'), url('../images/footer-login-bg.png')!important;
    background-position: 300px -200px, center 500px;
}

body.signup-page{
    background-image: url('../images/hero-login-bg-left.png'), url('../images/footer-login-bg.png');
    background-position: top left, center 500px;
}

body.employee.signup-page{
    background-image: url('../images/hero-login-employee-bg-left.png'), url('../images/footer-login-bg.png')!important;
    background-position: -700px -200px, center 500px;
}

body.employee.forgot-password-page{
    background-image: url('../images/forgot-bg-green.png'), url('../images/footer-login-bg.png')!important;
    background-position: top center, center 500px;
    background-size: contain;
}

body.hr.forgot-password-page{
    background-image: url('../images/forgot-bg-orange.png'), url('../images/footer-login-bg.png')!important;
    background-position: top center, center 500px;
    background-size: contain;
}


.login .footer-section{
    background: none;
}

/* Login Form Styles */
.login-main {
    min-height: 100vh;
    padding-top: 100px;
}

.login-form-container {
    max-width: 450px;
    margin: 0 auto;
}

.login-form-card {
    background: transparent;
    border-radius: 2rem;
    padding: 3rem 2.5rem;
}

.login-header {
    margin-bottom: 2.5rem;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.login-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form .input-group {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.login-form .input-group-text {
    background: transparent;
    border: none;
    padding: 1rem 1.25rem;
    color: var(--primary-purple);
    font-size: 1.1rem;
}

.login-form .form-control {
    background: transparent;
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.login-form .form-control::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

.login-form .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.login-form .input-group:focus-within {
    box-shadow: 0 8px 32px rgba(147, 51, 234, 0.2);
    border-color: var(--primary-purple);
}

.login-form .btn-outline-secondary {
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 1rem 1.25rem;
}

.login-form .btn-outline-secondary:hover {
    background: transparent;
    color: var(--primary-purple);
    border: none;
}

.form-options {
    margin-bottom: 2rem;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.5rem;
    border: 2px solid var(--text-light);
    border-radius: 0.25rem;
}

.form-check-input:checked {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.form-check-label {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
}

.forgot-password-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.forgot-password-link:hover {
    color: var(--primary-purple);
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 1rem;
}

.btn-login {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    border: none;
    border-radius: 100px;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(147, 51, 234, 0.3);
    flex: 1;
}

.btn-login:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(147, 51, 234, 0.4);
    color: white;
}

.btn-signup {
    border: 2px solid var(--primary-purple);
    background: transparent;
    color: var(--primary-purple);
    border-radius: 100px;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-signup:hover {
    background: rgba(147, 51, 234, 0.1);
    color: var(--primary-purple);
    border-color: var(--primary-purple);
    transform: translateY(-2px);
}

/* Responsive adjustments for login form */
@media (max-width: 768px) {
    .login-form-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .login-title {
        font-size: 2rem;
    }
    
    .login-subtitle {
        font-size: 0.9rem;
    }
}

/* Responsive adjustments for testimonial card offset */
@media (max-width: 991px) {
    .testimonial-card.featured-testimonial {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .testimonial-card.featured-testimonial {
        margin-left: 0;
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .testimonials-content h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-content {
        padding-right: 1rem;
    }
    
    .testimonials-cards {
        padding-left: 1rem;
    }
}

@media (max-width: 991px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .testimonials-cards {
        padding-left: 0;
    }
    
    .testimonials-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .features-section {
        background: #F2F4F7;
    }

    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-content h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-card .card-body {
        padding: 1.25rem;
    }
    
    .testimonial-card h6 {
        font-size: 0.9rem;
    }
    
    .testimonial-card .card-text {
        font-size: 0.85rem;
    }
    body.login.employee{
        background-image: none, url('../images/footer-login-bg.png')!important;

    }
}

@media (max-width: 575px) {
    body.hr.forgot-password-page, body.employee.forgot-password-page{
        background-size: cover;
    }
    body.login{
        background-image: url('../images/hero-login-bg.png'), url('../images/footer-login-bg.png');
        background-position: -800px 0px, -500px bottom;
        background-repeat: no-repeat, no-repeat;
        background-size: auto, cover;
        min-height: 100vh;
    }

   

    .testimonials-content h2 {
        font-size: 1.6rem;
    }
    
    .testimonial-card .d-flex .flex-grow-1 {
        flex-direction: column;
    }
    
    .testimonial-card .d-flex .justify-content-between {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .testimonial-card .ms-auto {
        margin-top: 0.5rem !important;
        margin-left: 0 !important;
    }

    .featured-app.app-2, .featured-app.app-3{
        margin-top: -10px;
    }

    .footer-cta-title{
        font-size: 2rem!important;
    }
}


/* Responsive adjustments for glass container */
@media (max-width: 991px) {
    .footer-glass-container {
        margin: 15px;
        border-radius: 15px;
    }
}

@media (max-width: 767px) {
    .footer-glass-container {
        margin: 10px;
        border-radius: 12px;
    }
    .footer-office{
        font-size: 12px;
    }
}

/* Demo Modal Styles */
.demo-modal-dialog {
    max-width: 1000px !important;
}

.demo-modal-content {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: linear-gradient(
  to right,
  #FEC65A 0%,
  #E89F85 0%,
  #C25BCF 50%,
  #AB34FD 99%
);

    position: relative;
    min-height: 600px;
}

.demo-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1060;
    background: linear-gradient(135deg, #4434FD 0%, #760AFF 100%);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    opacity: 1;
}

.demo-modal-close::before {
    content: '×';
    font-size: 50px;
    font-weight: 300;
    color: white;
    line-height: 1;
}

.demo-modal-close:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.6);
}

.demo-modal-close:focus {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.demo-modal-container {
    height: 100%;
    min-height: 600px;
}

.demo-modal-left {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.demo-modal-left-content {
    height: 100%;
    width: 100%;
    position: relative;
}

.demo-modal-form-section {
    background: transparent;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    margin: 1.5rem;
    height: calc(100% - 3rem);
}

.demo-modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.demo-modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.demo-modal-description {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.demo-form-label {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Demo form input for non-modal use */
.demo-form-input {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.demo-form-input:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

/* Override for demo form inputs in modals - transparent background */
.modal .demo-form-input {
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent !important;
    color: white;
    padding: 15px 20px;
}

.modal .demo-form-input:focus,
.modal .demo-form-input:active,
.modal .demo-form-input:valid,
.modal .demo-form-input:not(:placeholder-shown) {
    border-color: rgba(255,255,255,0.5);
    background: transparent !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    color: white !important;
}

/* Handle autofill for demo form inputs in modals */
.modal .demo-form-input:-webkit-autofill,
.modal .demo-form-input:-webkit-autofill:hover,
.modal .demo-form-input:-webkit-autofill:focus,
.modal .demo-form-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    -webkit-text-fill-color: white !important;
    background: transparent !important;
    background-color: transparent !important;
}

.modal-phone-image{
    z-index: 999;
    top: 140px!important;
    left: 230px!important;
}

.modal-otp-image{
    z-index: 999;
    top: 200px!important;
    left: 400px!important;
}

/* Media query for landscape/wide but short screens like 1920x768 */
@media (min-width: 1601px) and (max-height: 800px) {
    .modal-phone-image{
        z-index: 999;
        top: 90px!important;
        left: 230px!important;
    }
    .modal-otp-image{
        z-index: 999;
        top: 150px!important;
        left: 400px!important;
    }
}

/* International Tel Input Styling */
.iti {
    width: 100%;
    position: relative;
    display: flex !important;
    align-items: stretch;
}

.iti .iti__flag-container {
    position: static;
    flex-shrink: 0;
    display: flex;
}

.iti .iti__selected-flag {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e5e7eb;
    border-right: none;
    border-radius: 12px 0 0 12px;
    padding: 0.75rem 1rem;
    backdrop-filter: blur(10px);
    height: auto;
    transition: all 0.3s ease;
}

.iti .iti__selected-flag:hover,
.iti .iti__selected-flag:focus {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.iti input[type="tel"] {
    border-left: none !important;
    border-radius: 0 50px 50px 0 !important;
    padding-left: 1rem !important;
    flex: 1;
    min-width: 0;
}

.iti .iti__country-list {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    margin-top: 2px;
    z-index: 1060;
}

.iti .iti__country {
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.iti .iti__country:hover,
.iti .iti__country.iti__highlight {
    background: rgba(147, 51, 234, 0.1);
    color: var(--primary-purple);
}

.iti .iti__country-name {
    font-size: 0.9rem;
}

.iti .iti__dial-code {
    color: #6b7280;
    font-size: 0.85rem;
}

.iti .iti__arrow {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #6b7280;
    margin-left: 6px;
}

.iti.iti--show-flags .iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.13/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti.iti--show-flags .iti__flag {
        background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.13/img/flags@2x.png");
    }
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.demo-submit-btn {
    background: linear-gradient(135deg, #4434FD 0%, #760AFF 100%);
    border: none;
    border-radius: 100px;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    min-width: 200px;
}

.demo-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.demo-submit-btn:active {
    transform: translateY(0);
}

/* Modal input base styles - transparent background */
.modal input, 
.modal select,
.iti .iti__selected-flag, 
.iti input[type="tel"] {
    border-radius: 50px; 
    border: 2px solid rgba(255,255,255,0.3); 
    background: transparent !important; 
    color: white; 
    padding: 15px 20px;
}

/* Ensure inputs maintain transparent background when filled or focused */
.modal input:focus,
.modal input:valid,
.modal input:not(:placeholder-shown),
.modal input:active,
.modal select:focus,
.modal select:valid,
.modal select:not(:placeholder-shown),
.modal select:active,
.iti input[type="tel"]:focus,
.iti input[type="tel"]:valid,
.iti input[type="tel"]:not(:placeholder-shown),
.iti input[type="tel"]:active {
    background: transparent !important;
    color: white !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25) !important;
}

/* Handle autofill styles - ensure transparent background */
.modal input:-webkit-autofill,
.modal input:-webkit-autofill:hover,
.modal input:-webkit-autofill:focus,
.modal input:-webkit-autofill:active,
.modal input:-internal-autofill-selected {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    -webkit-text-fill-color: white !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* Specific styling for select elements in quote modal - transparent background */
#quoteModal select.form-select {
    border-radius: 50px !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    background: transparent !important;
    color: white !important;
    padding: 15px 20px !important;
}

#quoteModal select.form-select:focus,
#quoteModal select.form-select:valid,
#quoteModal select.form-select:active {
    background: transparent !important;
    color: white !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25) !important;
}

#quoteModal select.form-select option {
    background: #9333ea !important;
    color: white !important;
}

#demoOtpModal input, #otpModal .otp-input{
    border-radius: 10px!important;
}

.iti .iti__selected-flag{
    border-radius: 50px 0 0 50px;
}

.workspace-content-container{
    padding-left: 100px;
}

@media (max-width: 768px) {
    .workspace-content-container{
        padding-left: 0;
    }
}

.hero-content-container{
    padding-left: 20px;
    padding-right: 20px;
}

/* Responsive Modal Styles */
@media (max-width: 991px) {

    .demo-modal-form-section {
        padding: 2rem 1.5rem;
        margin: 1rem;
        height: calc(100% - 2rem);
    }
    
    .demo-modal-title {
        font-size: 2rem;
    }
    
    .demo-modal-description {
        font-size: 1rem;
    }
}

@media (max-width: 1199px) {

    .demo-modal-dialog {
        max-width: 95% !important;
        margin: 1rem auto;
    }
}

@media (max-width: 1600px) {
    .modal-phone-image{
        z-index: 999;
        top: 150px!important;
        left: 50px!important;
    }
    .modal-otp-image{
        z-index: 999;
        top: 250px!important;
        left: 200px!important;
    }
}

@media (max-width: 1361px) {

    .modal-otp-image{
        z-index: 999;
        top: 150px!important;
        left: 150px!important;
    }
}

@media (max-width: 1440px) {
    .modal-phone-image{
        z-index: 999;
        top: 50px!important;
        left:-50px!important;
    }

    .modal-otp-image{
        z-index: 999;
        top: 100px!important;
        left: 150px!important;
    }
  
}

@media (max-width: 767px) {
    
    .demo-modal-dialog {
        max-width: 95% !important;
        margin: 1rem auto;
    }
    
    .demo-modal-content {
        min-height: 500px;
    }
    
    .demo-modal-container {
        min-height: 500px;
    }
    
    .demo-modal-form-section {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
        height: calc(100% - 1rem);
    }
    
    .demo-modal-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .demo-modal-description {
        font-size: 0.95rem;
    }
    
    .demo-modal-header {
        margin-bottom: 1.5rem;
    }
    
    .demo-submit-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-width: 150px;
    }
}

@media (max-width: 575px) {
   
    .modal-lg {
        max-width: 100%;
        margin: 0.5rem;
    }
    
    .demo-modal-content {
        border-radius: 16px;
        min-height: 450px;
    }
    
    .demo-modal-container {
        min-height: 450px;
    }
    
    .demo-modal-form-section {
        padding: 1.25rem 0.75rem;
        margin: 0.25rem;
        height: calc(100% - 0.5rem);
        border-radius: 16px;
    }
    
    .demo-modal-title {
        font-size: 1.5rem;
    }
    
    .demo-modal-description {
        font-size: 0.9rem;
    }
    
    .demo-form-input {
        padding: 0.625rem 0.75rem;
        font-size: 0.95rem;
    }
    
    .demo-phone-input .input-group-text {
        padding: 0.625rem 0.75rem;
    }
    
    .demo-submit-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-width: 120px;
    }
    
    /* International Tel Input responsive styles */
    .iti {
        display: flex !important;
        align-items: stretch;
    }
    
    .iti .iti__flag-container {
        flex-shrink: 0;
        min-width: auto;
    }
    
    .iti .iti__selected-flag {
        padding: 0.625rem 0.75rem;
        min-width: 80px;
        white-space: nowrap;
    }
    
    .iti input[type="tel"] {
        flex: 1;
        min-width: 0;
    }
    
    .iti .iti__country-list {
        max-height: 150px;
    }
    
    .iti .iti__country {
        padding: 0.5rem 0.75rem;
    }
    
    .iti .iti__country-name {
        font-size: 0.85rem;
    }
    
    .iti .iti__dial-code {
        font-size: 0.8rem;
    }
}

/* Video Modal Styles */
.workspace-video-btn {
    transition: all 0.3s ease;
    cursor: pointer !important;
    pointer-events: auto !important;
    display: block !important;
    position: relative !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px;
    z-index: 10;
}

.workspace-video-btn:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.workspace-video-btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.workspace-video-btn:active {
    transform: scale(0.98);
}

.video-play-overlay {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.workspace-video-btn:hover .video-play-overlay {
    opacity: 1;
    cursor: pointer;
}

.play-button-circle {
    width: 80px;
    height: 80px;
    background: rgba(147, 51, 234, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.play-button-circle:hover {
    background: rgba(147, 51, 234, 1);
    transform: scale(1.1);
}

.play-button-circle i {
    font-size: 32px;
    margin-left: 4px;
}

@media (max-width: 768px) {
    .play-button-circle {
        width: 60px;
        height: 60px;
    }
    
    .play-button-circle i {
        font-size: 24px;
    }
}

/* OTP Input Styles - transparent background */
.otp-input,
.demo-otp-input {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent !important;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.otp-input:focus,
.otp-input:active,
.demo-otp-input:focus,
.demo-otp-input:active {
    outline: none;
    border-color: rgba(255,255,255,0.6);
    background: transparent !important;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.otp-input::placeholder,
.demo-otp-input::placeholder {
    color: rgba(255,255,255,0.5);
}

/* Handle autofill styles for OTP inputs specifically - transparent background */
.otp-input:-webkit-autofill,
.otp-input:-webkit-autofill:hover,
.otp-input:-webkit-autofill:focus,
.otp-input:-webkit-autofill:active,
.demo-otp-input:-webkit-autofill,
.demo-otp-input:-webkit-autofill:hover,
.demo-otp-input:-webkit-autofill:focus,
.demo-otp-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    -webkit-text-fill-color: white !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    transition: all 0.3s ease;
}

/* Ensure consistent styling for filled OTP inputs - transparent background */
.otp-input:valid,
.otp-input:not(:placeholder-shown),
.demo-otp-input:valid,
.demo-otp-input:not(:placeholder-shown) {
    background: transparent !important;
    color: white !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
}

.otp-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
}

@media (max-width: 767px) {
    .otp-input,
    .demo-otp-input {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 12px;
    }
    
    .otp-container {
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .otp-input,
    .demo-otp-input {
        width: 45px;
        height: 45px;
        font-size: 18px;
        border-radius: 10px;
    }
    
    .otp-container {
        gap: 8px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .otp-input,
    .demo-otp-input {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .otp-container {
        gap: 15px;
    }
}

/* Small screens - very compact */
@media (max-width: 360px) {
    .otp-input,
    .demo-otp-input {
        width: 35px;
        height: 35px;
        font-size: 14px;
        border-radius: 6px;
    }
    
    .otp-container {
        gap: 4px;
    }
}

body.employee.forgot-password-page{
    background-image: url('../images/forgot-bg-green.png'), url('../images/footer-login-bg.png')!important;

}

body.hr.forgot-password-page{
    background-image: url('../images/forgot-bg-orange.png'), url('../images/footer-login-bg.png')!important;

}

/* Universal modal input transparency override - ensures all inputs are transparent */
.modal input[type="text"],
.modal input[type="email"], 
.modal input[type="tel"],
.modal input[type="number"],
.modal input[type="password"],
.modal select,
.modal textarea {
    background: transparent !important;
    background-color: transparent !important;
}

.modal input[type="text"]:focus,
.modal input[type="email"]:focus, 
.modal input[type="tel"]:focus,
.modal input[type="number"]:focus,
.modal input[type="password"]:focus,
.modal input[type="text"]:active,
.modal input[type="email"]:active, 
.modal input[type="tel"]:active,
.modal input[type="number"]:active,
.modal input[type="password"]:active,
.modal select:focus,
.modal select:active,
.modal textarea:focus,
.modal textarea:active {
    background: transparent !important;
    background-color: transparent !important;
}

/* Universal autofill transparency override */
.modal input[type="text"]:-webkit-autofill,
.modal input[type="email"]:-webkit-autofill,
.modal input[type="tel"]:-webkit-autofill,
.modal input[type="number"]:-webkit-autofill,
.modal input[type="password"]:-webkit-autofill,
.modal input[type="text"]:-webkit-autofill:hover,
.modal input[type="email"]:-webkit-autofill:hover,
.modal input[type="tel"]:-webkit-autofill:hover,
.modal input[type="number"]:-webkit-autofill:hover,
.modal input[type="password"]:-webkit-autofill:hover,
.modal input[type="text"]:-webkit-autofill:focus,
.modal input[type="email"]:-webkit-autofill:focus,
.modal input[type="tel"]:-webkit-autofill:focus,
.modal input[type="number"]:-webkit-autofill:focus,
.modal input[type="password"]:-webkit-autofill:focus,
.modal input[type="text"]:-webkit-autofill:active,
.modal input[type="email"]:-webkit-autofill:active,
.modal input[type="tel"]:-webkit-autofill:active,
.modal input[type="number"]:-webkit-autofill:active,
.modal input[type="password"]:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    -webkit-text-fill-color: white !important;
    background: transparent !important;
    background-color: transparent !important;
}

@media screen and (max-width: 768px) {
  .modal-otp-image, .modal-phone-image{
    display:none!important;
  }
}
