/* Simple, Working Banner System - 1920x800 Images */

/* Preloader fixes - ensure it can be hidden */
.preloader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 99999 !important;
}

.preloader.preloader-deactivate,
.preloader[style*="display: none"] {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Logo sizing - simple and effective */
.navbar-brand img {
    max-width: 180px !important;
    height: auto !important;
}

/* Simple banner styling */
.home-item {
    height: 800px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

/* Banner 1 - ERP */
.home-item.item-bg1 {
    background-image: url('../img/slider/1.png') !important;
}

/* Banner 2 - HRMS */
.home-item.item-bg2 {
    background-image: url('../img/slider/2.png') !important;
}

/* Banner 3 - CRM */
.home-item.item-bg3 {
    background-image: url('../img/slider/3.png') !important;
}

/* Simple overlay for text readability */
.home-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Content positioning */
.slider-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

/* Button styling */
.default-btn {
    background: #0067ff !important;
    color: #ffffff !important;
    padding: 15px 30px !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin: 10px !important;
}

.video-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    padding: 15px 30px !important;
    border-radius: 5px !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin: 10px !important;
    border: 2px solid #ffffff !important;
}

/* Shape positioning */
.shape {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    max-width: 200px;
}

.shape img {
    width: 100%;
    height: auto;
}

/* Footer contact info styling */
.footer-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-contact .contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
}

.footer-contact .contact-item i {
    margin-right: 8px;
    font-size: 16px;
    color: #0067ff;
}

.footer-contact .contact-item span {
    color: #ffffff;
}

/* Footer social media styling */
.footer-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-social .social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social .social li {
    display: inline-block;
}

.footer-social .social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social .social li a:hover {
    background: #0067ff;
    transform: translateY(-3px);
}

.footer-social .social li.facebook a:hover {
    background: #1877f2;
}

.footer-social .social li.youtube a:hover {
    background: #ff0000;
}

.footer-social .social li.whatsapp a:hover {
    background: #25d366;
}

.footer-social .social li a i {
    font-size: 20px;
}

/* Hero title responsive sizing */
.slider-content h1 {
    font-size: 42px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
}

@media (max-width: 1200px) {
    .slider-content h1 {
        font-size: 36px !important;
    }
}

@media (max-width: 992px) {
    .slider-content h1 {
        font-size: 32px !important;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .home-item {
        height: 600px;
    }
    
    .slider-content h1 {
        font-size: 28px !important;
    }
    
    .slider-content p {
        font-size: 16px;
    }
    
    .footer-contact .contact-details {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .slider-content h1 {
        font-size: 24px !important;
    }
}

/* Enhanced Navigation Menu Styling */

/* Improved navbar positioning and centering */
.main-navbar .navbar .navbar-nav {
    margin-right: auto !important;
    margin-left: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex: 1 !important;
}

/* Enhanced navigation item styling */
.main-navbar .navbar .navbar-nav .nav-item {
    position: relative;
    padding: 0;
    margin: 0 8px;
}

/* Improved navigation link styling */
.main-navbar .navbar .navbar-nav .nav-item a {
    font-size: 16px !important;
    color: #0d1820 !important;
    text-transform: none !important;
    padding: 25px 16px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    position: relative;
    transition: all 0.3s ease !important;
    letter-spacing: 0.3px !important;
    font-family: 'Poppins', sans-serif !important;
    text-decoration: none !important;
    border-radius: 6px !important;
}

/* Hover effects for navigation links */
.main-navbar .navbar .navbar-nav .nav-item a:hover,
.main-navbar .navbar .navbar-nav .nav-item a:focus,
.main-navbar .navbar .navbar-nav .nav-item a.active {
    color: #0865f8 !important;
    background-color: rgba(8, 101, 248, 0.05) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(8, 101, 248, 0.15) !important;
}

/* Dropdown arrow styling */
.main-navbar .navbar .navbar-nav .nav-item a i {
    font-size: 14px !important;
    position: relative !important;
    top: 1px !important;
    display: inline-block !important;
    margin-left: 4px !important;
    margin-right: 0 !important;
    transition: transform 0.3s ease !important;
}

/* Dropdown arrow animation on hover */
.main-navbar .navbar .navbar-nav .nav-item:hover a i {
    transform: rotate(90deg) !important;
}

/* Enhanced dropdown menu styling */
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu {
    border-radius: 12px !important;
    border: 1px solid rgba(8, 101, 248, 0.1) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
    padding: 12px 0 !important;
    margin-top: 10px !important;
}

/* Enhanced dropdown item styling */
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    margin: 2px 8px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

/* Dropdown item hover effects */
.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
    background-color: rgba(8, 101, 248, 0.08) !important;
    color: #0865f8 !important;
    transform: translateX(5px) !important;
    letter-spacing: 0.5px !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .main-navbar .navbar .navbar-nav {
        margin-left: 0 !important;
        justify-content: flex-start !important;
    }
    
    .main-navbar .navbar .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .main-navbar .navbar .navbar-nav .nav-item a {
        padding: 15px 20px !important;
        border-radius: 0 !important;
        border-bottom: 1px solid rgba(8, 101, 248, 0.1) !important;
    }
}

/* Logo positioning adjustment for better balance */
.main-navbar .navbar-brand {
    margin-right: 30px !important;
}

/* Others options positioning */
.main-navbar .others-options {
    margin-left: auto !important;
}
/* Powered by footer link */
.powered-by-text {
    color: #dfe6f5;
    font-size: 14px;
    margin: 0;
}

\
.powered-by-text a {\n    position: relative;\n    font-weight: 700;\n    color: #ffffff;\n    text-decoration: none;\n    padding: 4px 12px;\n    border-radius: 20px;\n    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);\n    display: inline-flex;\n    align-items: center;\n    gap: 6px;\n    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);\n    transition: transform 0.25s ease, box-shadow 0.25s ease;\n}\n\n

.powered-by-text a:hover {\n    transform: translateY(-2px);\n    box-shadow: 0 12px 28px rgba(0, 212, 255, 0.35);\n}

/* Policy pages */
.policy-hero-area {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    padding: 120px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.policy-hero-area .hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.policy-hero-area h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}
.policy-hero-area p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}
.policy-wrapper {
    max-width: 980px;
    margin: -60px auto 60px;
    position: relative;
    z-index: 2;
}
.policy-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(21, 33, 58, 0.12);
    padding: 48px 56px;
}
.policy-card h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1e3c72;
}
.policy-card p,
.policy-card li {
    color: #485265;
    line-height: 1.8;
    font-size: 15px;
}
.policy-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}
.policy-section + .policy-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eef1f8;
}
.policy-toc {
    background: #f2f6ff;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 32px;
}
.policy-toc h3 {
    color: #1e3c72;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}
.policy-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 18px;
}
.policy-toc a {
    color: #1e3c72;
    font-weight: 600;
    text-decoration: none;
}
.policy-toc a:hover {
    text-decoration: underline;
}
@media (max-width: 767px) {
    .policy-hero-area {
        padding: 100px 0 80px;
    }
    .policy-hero-area h1 {
        font-size: 32px;
    }
    .policy-card {
        padding: 32px 26px;
    }
}



