/* General Styling */
body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header Styling */
.header {
    background: #ffffff;
    padding: 0 0;           /* Reduced header height */
    transition: all 0.4s ease; 
    z-index: 999;
    width: 100%;
}

/* Sticky Header */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);  /* Subtle shadow */
    animation: slideDown 0.5s ease;              /* Smooth animation */
}

/* Logo */
.logo-img {
    height: 100px;            
    width: 100px;
    transition: transform 0.3s, height 0.4s ease; /* Smooth logo resize */
}

/* Smaller logo when sticky */
.sticky .logo-img {
    height: 60px;              /* Resize logo on sticky */
    width: auto;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Center Navigation */
.navbar-nav {
    display: flex;
    width: 100%;
}

/* Navigation Links */
.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 25px;  
    font-weight: 600 !important;   
    transition: color 0.3s ease;
}

/* Hover effect */
.nav-link:hover {
    color: #FF6600;            /* Hover color */
}

/* Active link color */
.nav-link.active {
    color: #E65C00 !important;
    font-weight: bold;
}

/* Login and Button Styling */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-link {
    color: #333;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.login-link:hover {
    color: #FF6600 !important;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav {
        display: block;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
        font-size: 16px;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .logo-img {
        height: 50px;         /* Smaller logo for mobile */
        width: auto;
    }

    .sticky .logo-img {
        height: 35px;         /* Smaller sticky logo on mobile */
    }

    .btn-demo {
        padding: 8px 20px;    
        font-size: 14px;
    }
}

/* ✅ Smooth slide-down animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Section Styling /////////////////////////////*/
.hero-section {
    padding: 100px 0;
    background: #fff;
    color: #000;
}

/* Title Styling */
.hero-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.scale-up {
    color: #000000; /* Orange color */
}

/* Description Styling */
.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

/* Button Styling */
.demo-btn {
    display: inline-block;
    background: #f46c23;
    color: #fff;
    padding: 12px 32px;
    font-size: 18px;
    border-radius: 25px;
    text-decoration: none;
    /* transition: all 0.3s ease; */
}

.demo-btn:hover {
    background: #ff9064;
    color: #000000;
    /* transform: scale(1.05); */
}

/* Image Styling */
.hero-img {
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* transition: transform 0.3s; */
}


/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 50px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    .demo-btn {
        padding: 10px 25px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 15px;
    }

    .demo-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .hero-img {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-description {
        font-size: 14px;
    }

    .demo-btn {
        padding: 6px 18px;
        font-size: 13px;
    }
}

/* //////////////////////*/
/* General Styling */
.payment-section {
    padding: 60px 0;
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    padding-left: 40px; /* Space for bullet */
}

/* Orange Circular Bullet with Checkmark */
.benefits-list li::before {
    content: "\f00c";  /* Font Awesome checkmark icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff; 
    background-color: #FF7F00; /* Orange circle */
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 14px;
}
/* Image Styling */
.image-container img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto;
}

/* Desktop Layout (Default) */
.section-layout {
    display: flex;
    flex-direction: row; /* Normal order on larger screens */
}

/* Mobile Layout: Content first */
@media (max-width: 768px) {
    .section-layout {
        display: flex;
        flex-direction: column-reverse; /* Content first, image second */
    }
}


/* General Styling */
.payroll-section {
    padding: 60px 0;
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
}

/* Features List with Orange Check Bullets */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    padding-left: 40px; /* Space for bullet */
}

/* Orange Circular Bullet with Checkmark */
.features-list li::before {
    content: "\f00c";  /* Font Awesome checkmark icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff; 
    background-color: #FF7F00; /* Orange circle */
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 14px;
}

/* Image Styling */
.img-container img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Desktop Layout (Default) */
.content-priority {
    display: flex;
    flex-direction: row; /* Content Left, Image Right */
}

/* Mobile Layout: Content First */
@media (max-width: 768px) {
    .content-priority {
        flex-direction: column; /* Content first, Image second */
    }
}


/* General Styling/////////////// */
.awards-section {
    padding: 80px 0;
    background-color: #f9f5ed; /* Light beige background */
    text-align: center;
    margin-bottom: 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

/* Logos Styling */
.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px; /* Space between logos */
}

.logo {
    max-width: 100px;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styling */
@media (max-width: 992px) {
    .logo {
        max-width: 120px;
    }

    .logos-container {
        gap: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 100px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .logos-container {
        gap: 20px;
    }
}




/* Footer Styling */
.footer {
    background: #fff;          /* White background */
    color: #333;               /* Dark text */
    padding: 60px 0;
    font-family: Arial, sans-serif;
    border-top: 2px solid #ddd;
}



/* Full-Width Line Above Bottom Row */
.footer-full-line {
    width: 100%;
    height: 2px;
    background: #ddd;          /* Light grey line */
    margin: 50px 0;
}

/* Footer Logo */
.footer-logo {
    font-size: 120px;
    font-weight: bold;
    color: #f46c23;
    margin-bottom: 40px;
}

/* Footer Headings */
.footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Footer Links */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    transition: 0.3s;
}

.footer a:hover {
    color: #f46c23;
    transform: scale(1.05);
}

/* Icons with Spacing */
.footer i {
    margin-right: 10px;
}

/* Social Media Icons */
.footer .footer-icons a {
    font-size: 24px;
    margin: 0 10px;
    color: #555;
    transition: 0.3s;
}

.footer .footer-icons a:hover {
    color: #f46c23;
    transform: scale(1.1);
}

/* Bottom Row Styling */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: #777;
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
}

/* Privacy & Terms Links */
.footer-links a {
    color: #555;
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #f46c23;
}

/* Separator */
.footer-links .separator {
    color: #777;
    margin: 0 8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-logo {
        font-size: 90px;
    }
}

@media (max-width: 992px) {
    .footer-logo {
        font-size: 70px;
    }

    .footer-icons a {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        font-size: 60px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-icons a {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .footer-logo {
        font-size: 50px;
    }

    .footer-icons a {
        font-size: 16px;
    }
}
