.logo-pro{
    border: 1px solid #ddd; /* Light gray border for the box */
border-radius: 5px; /* Slightly rounded corners */
text-align: center; /* Center align the text */

}


/* Header Styles */


.header {
    position: sticky;
    top: 0;
    background-color: #003366; /* Dark blue color for header */
    color: white; /* White text for contrast */
    z-index: 1000; /* Ensure it stays on top of other content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: add a shadow for better visibility */
}


.header a {
    color: white; /* White text for links */
    padding: 10px; /* Add padding for better click area */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s, background-color 0.3s; /* Smooth transition for hover effects */
}

.header a:hover {
    color: #f0f0f0; /* Light gray on hover */
    background-color: rgba(255, 255, 255, 0.1); /* Light background on hover for contrast */
    border-radius: 5px; /* Slightly rounded corners on hover */
}

/* Adjust the logo color if needed */
.header .logo {
    color: white; /* Change logo color to white */
}
    .mega-dropdown {
        position: static !important;
    }
    .mega-dropdown-menu {
        padding: 20px 0px;
        width: 100%;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    }
    .mega-dropdown-menu .dropdown-header {
        font-size: 18px;
        color: #003366; /* Dark blue for header */
        padding: 5px 60px 5px 5px;
        line-height: 30px;
        text-decoration: underline; /* Underline the text */
        font-weight: bold; /* Make the text bold */
        text-align: center; /* Center align the text */
    }
    
    /* Dropdown Item Color */
.mega-dropdown-menu .dropdown-item {
    color: #003366; /* Dark blue for dropdown items */
    background-color: white; /* White background for better contrast */
    padding: 10px 15px; /* Add padding for better spacing */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
}

/* Hover Effect for Dropdown Items */
.mega-dropdown-menu .dropdown-item:hover {
    background-color: #f0f0f0; /* Light gray background on hover */
    color: #003366; /* Keep text color dark blue on hover */
}
    .navbar-nav > li > .dropdown-menu {
        margin-top: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .solbox{
        border: 1px solid #ddd; /* Light gray border for the box */
    border-radius: 5px; /* Slightly rounded corners */
    }
/* Header Styles */

.header .navbar {
    background-color: #003366; /* Dark blue color for header */
}

.header .navbar a {
    color: #003366; /* White text for links */
}

.header .navbar a:hover {
    color: #003366; /* Light gray on hover */
}

/* Adjust logo subtitle color */
.logo-subtitle {
    color: white; /* Change subtitle color to white */
    font-size: 16px;
}

/* Dropdown Menu Header Color */
.mega-dropdown-menu .dropdown-header {
    color: #003366; /* Dark blue for dropdown headers */
}

/* Dropdown Item Color */
.mega-dropdown-menu .dropdown-item {
    color: #003366; /* Dark blue for dropdown items */
}
/* Register Button Styles */
.btn-register {
    background-color: #FFB800; /* Bright color for the Register button */
    color: #003366; /* Dark blue text for contrast */
    border-radius: 20px; /* Rounded corners for the button */
    padding: 10px 20px; /* Padding for a larger button */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
}

.btn-register:hover {
    background-color: #fff !important; /* Slightly brighter on hover */
    color: #003366 !important; /* White text on hover */
}


    /* Sticky footer styles */
    html, body {
        height: 100%;
    }
    body {
        display: flex;
        flex-direction: column;
    }
    
    main {
        flex: 1 0 auto;
        margin: 0; /* Remove margin */
        padding: 0; /* Remove padding */
    }
    footer {
        flex-shrink: 0;
    }
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    /* Hero Section */
    .hero-section {
        background-image: url('/assets/images/hero.webp');
        background-size: cover;
        background-position: center;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        color: #ffffff; /* White text for contrast */
        text-align: center;
        padding: 0 20px;
        margin-top: 0; /* Remove any top margin */
        padding-top: 0; /* Remove any top padding */
    }
    
    
    .hero-headline, .hero-subheadline {
        position: relative; /* Position the text above the overlay */
        z-index: 2; /* Bring the text above the overlay */
    }
    .hero-headline {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 20px;
    }
    
    .hero-subheadline {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    .hero-buttons a {
        margin: 10px;
        padding: 12px 25px;
        font-size: 1.2rem;
        border-radius: 50px;
    }
    .hero-container{

    background-color: rgba(0, 0, 0, 0.6); /* Black with 60% opacity */
    padding: 20px; /* Optional: add some padding */
    border: 1px solid #003366;
    border-radius: 10px; /* Optional: add rounded corners */        
    }
    .btn-primary {
        background-color: #003366; /* Dark blue for primary buttons */
        border: none;
        color: white;
    }
    .btn-secondary {
        background-color: #28a745; /* Green for secondary buttons */
        border: none;
        color: white;
    }
    .btn-tertiary {
        background-color: #ffc107; /* Yellow for tertiary buttons */
        border: none;
        color: white;
    }
    .btn:hover {
        opacity: 0.8;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .hero-headline {
            font-size: 2rem;
        }
        .hero-subheadline {
            font-size: 1.2rem;
        }
    }

    /* ProHire for Agencies Section */
    .agencies-section {
        background-color: #f9f9f9;
        padding: 60px 0;
        color: #333;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: bold;
        color: #003366; /* Dark blue for section titles */
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .card-text{
        color: white;
    }

    .feature-card {
        background-color: #ffffff; /* White background for cards */
        border: none;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        padding: 20px;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .feature-card i {
        color: #003366; /* Dark blue for icons */
        margin-bottom: 15px;
    }

    .feature-card h5 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 1rem;
        color: #d1cece !important;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .feature-card {
            padding: 15px;
        }
        .feature-card h5 {
            font-size: 1.2rem;
        }
        .feature-card p {
            font-size: 0.9rem;
        }
    }

    /* Testimonial Section */
    .testimonial-section {
        background-color: #ffffff; /* White background for testimonials */
        padding: 60px 0;
        color: #333;
    }

    .testimonial-card {
        background-color: #f9f9f9; /* Light grey for testimonial cards */
        border: none;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 30px;
        margin-bottom: 30px;
        text-align: left;
        position: relative;
    }

    .testimonial-content {
        position: relative;
    }

    .testimonial-text {
        font-size: 1.1rem;
        color: #555;
        font-style: italic;
        margin-bottom: 30px;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
    }

    .author-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-right: 20px;
    }

    .author-name {
        font-size: 1.2rem;
        font-weight: 600;
        color: #333;
    }

    .author-title {
        font-size: 1rem;
        color: #777;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .testimonial-text {
            font-size: 1rem;
        }
        .author-name {
            font-size: 1.1rem;
        }
    }

    /* ProHire for Job Seekers Section */
    .job-seekers-section {
        background-color: #f9f9f9;
        padding: 60px 0;
        color: #333;
    }

    /* ProHire for Corporates Section */
    .corporates-section {
        background-color: #ffffff; /* White background for corporates section */
        padding: 60px 0;
        color: #333;
    }

    /* Create Your Perfect Resume Section */
    .create-resume-section {
        background-color: #ffffff; /* White background for the create resume section */
        padding: 60px 0;
        color: #333;
    }

    .step-card {
        position: relative;
        margin: 0 15px; /* Adjust margin as needed */
    }

    /* Arrow Connection */
    .arrow-container {
        display: flex;
        justify-content: center;
        position: relative;
        margin-top: -50px; /* Move the arrow up to connect the cards */
    }

    .curved-arrow {
        width: 60px; /* Adjust width to fit */
        height: 60px; /* Adjust height to fit */
        border: 5px solid #003366; /* Arrow color matches logo */
        border-radius: 50%; /* Make it circular */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        z-index: 0;
    }

    .curved-arrow:before {
        content: '';
        position: absolute;
        width: 100%; /* Adjust arrow width */
        height: 100%; /* Adjust arrow height */
        background-color: #003366; /* Arrow color matches logo */
        border-radius: 50%;
        transform: rotate(45deg);
        z-index: -1;
    }

    /* Styling for the Card */
    .card {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        backdrop-filter: blur(10px);
        border: 1px solid #003366;
        border-radius: 20px;
        padding: 2rem;
        color: #fff;
        transition: all 0.3s ease;
        margin-bottom: 10px;

    }
    .card-header {
        /* background-color: #003366; */
        color: #fff;
        border-bottom: none;
        font-size: 1.5rem;
        text-align: center;

    }
    .center{
        text-align: center;
    }
    .right{
        text-align: right;
    }
    .card-footer{
        text-align: center;

    }
    
    .feature-card {
        background-color: #f9f9f9;
        border: none;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        padding: 20px;
        margin-bottom: 10px;
    }

    .feature-card i {
        color: #003366; /* Dark blue for icons */
        margin-bottom: 15px;
    }

    .feature-card h5 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 1rem;
        color: #555;
    }

    /* Create Your Perfect Resume Section */
    .resume-section {
        background-color: #ffffff; /* White background for resume section */
        padding: 60px 0;
        color: #333;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: bold;
        color: #003366; /* Dark blue for section titles */
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .cta-section {
        background-color: #003366; /* Dark blue for CTA sections */
        color: white; /* White text */
        padding: 40px 20px;
        text-align: center;
        margin: 40px 0;
    }
    .golden-button {
        background-color: #FFD700; /* Gold color */
        color: #003366; /* White text */
        border: 1px solid #DAA520; /* Goldenrod border */
        border-radius: 5px; /* Rounded corners */
        padding: 10px 20px; /* Padding for size */
        font-size: 16px; /* Font size */
        font-weight: bold; /* Bold text */
        text-align: center; /* Center text */
        text-decoration: none; /* No underline */
        display: inline-block; /* Inline block for better control */
        transition: background-color 0.3s, transform 0.3s; /* Smooth transition */
    }
    
    .golden-button:hover {
        background-color: #FFC107; /* Lighter gold on hover */
        transform: translateY(-2px); /* Slight lift on hover */
    }
    .shadowed-bordered-bullets {
        border: 1px solid #ddd;
        padding: 20px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        background-color: #f9f9f9;
        margin-bottom: 20px;
    }
    .shadowed-bordered-bullets li {
        margin-bottom: 10px;
    }
    .accordion-button {
        background-color: #f8f9fa;
        border: 1px solid #ddd;
    }
    .accordion-button:not(.collapsed) {
        background-color: #e9ecef;
        color: #495057;
    }

    ul.tick-list {
        list-style-type: none; /* Remove default bullet points */
    }
    
    ul.tick-list li {
        position: relative;
        padding-left: 20px; /* Space for the tick */
    }
    
    ul.tick-list li::before {
        content: "\2713"; /* Unicode for checkmark (✓) */
        position: absolute;
        left: 0;
        color: #003366; /* Set your desired color */
        font-weight: bold; /* Make it bold if you want */
    }

    .link-group {
        font-size: 0.9rem;
    }
    .link-group a {
        color: #007bff;
        text-decoration: none;
    }
    .link-group a:hover {
        text-decoration: underline;
    }

    .button-link {
        background: none; /* Remove the default button background */
        border: none; /* Remove the default button border */
        color: #003366; /* Set the text color to blue */
        text-decoration: underline; /* Underline the text to mimic a link */
        cursor: pointer; /* Change the cursor to a pointer */
        padding: 0; /* Remove padding */
        font: inherit; /* Inherit font styles from parent */
        display: inline; /* Make the button inline */
    }
    
    /* Optional: Add hover effects */
    .button-link:hover {
        color: #003366; /* Change color on hover */
        text-decoration: underline; /* Remove underline on hover */
    }
    .space-bg {
        background-image: url('https://example.com/space-background.jpg'); /* Replace with your space-themed background */
        background-size: cover;
        background-position: center;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.3;
        z-index: -1;
    }
    .emoji {
        font-size: 5rem;
        animation: bounce 1.5s infinite;
    }
    .error-code {
        font-size: 8rem;
        font-weight: bold;
        color: #003366; /* Match your dark blue logo color */
        margin: 0;
    }

    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    #pdfPreview {
        position: relative;
        top: 0;
        right: 0;
        width: 100%; /* Adjust the width as needed */
        height: 90%;
        border: 1px solid #ccc;
        display: none;
    }

    .pricing-header {
        color: #003366;
        padding: 60px 0;
        text-align: center;
    }
    .pricing-card {
        border: none;
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .pricing-card-header {
        background-color: #003366;
        color: white;
        text-align: center;
        padding: 20px;
    }
    
    .pricing-card-body {
        padding: 30px;
    }
    .feature-list {
        list-style-type: none;
        padding-left: 0;
    }
    .feature-list li {
        margin-bottom: 10px;
    }
    .feature-list li::before {
        content: "✓";
        color: #28a745;
        margin-right: 10px;
    }
    .btn-pricing {
        width: 100%;
        padding: 10px;
        font-size: 18px;
        font-weight: bold;
    }
    .role-box {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        backdrop-filter: blur(10px);
        border: 1px solid #003366;
        border-radius: 20px;
        padding: 2rem;
        color: #fff;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .role-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }
    .role-box i {
        font-size: 4rem;
        margin-bottom: 1rem;
        
    }
    .role-box h2 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    .role-box h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 2rem;
        text-align: center;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    .role-box p {
        font-size: 1rem;
        opacity: 0.8;
    }
    .btn-role {
        background-color: #ffffff;
        color: #764ba2;
        border: none;
        padding: 0.5rem 1.5rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
    }
    .btn-role:hover {
        background-color: #f2f680;
        color: #003366;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    .link-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .link-container a {
        text-decoration: none; /* Remove underline from links */
        color: blue; /* Set link color */
    }
    
    .link-container a:hover {
        text-decoration: underline; /* Underline on hover */
    }

    .loader {
        position: fixed; /* Fixed position to stay in the same place */
        top: 50%; /* Center vertically */
        left: 50%; /* Center horizontally */
        transform: translate(-50%, -50%); /* Adjust for the loader's own size */
        border: 8px solid #f3f3f3; /* Light grey background */
        border-top: 8px solid #3498db; /* Blue color for the top */
        border-radius: 50%; /* Make it circular */
        width: 50px; /* Width of the loader */
        height: 50px; /* Height of the loader */
        animation: spin 1s linear infinite; /* Spin animation */
        z-index: 9999; /* Ensure it is on top of other elements */
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .nav-item {
        margin-right: 15px; /* Adjust as needed */
    }
    
    