body {
    /*    font-family: 'Poppins', sans-serif;*/
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0px !important;
    border: 0px !important;
    padding-top: 70px; /* Adjust for navbar height */
    /*    background: linear-gradient(to right, #f8f9fa, #e9ecef);*/
    background: #e9ecef;
    color: #333;
}


/* Smooth Scroll Effect */
html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px; /* Adjust based on your navbar height */
}

div {
    scroll-margin-top: 80px; /* Adjust based on your navbar height */
}
/* Primary Button */
.btn-primary {
    /*    background: linear-gradient(135deg, #007bff, #0056b3);*/
    background: white !important;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease-in-out !important;
    color: var(--hf-gradient-1) !important;
    padding: 12px 22px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    font-size: 16px !important;
    font-weight: 600 !important;
    /*    transition: background 0.3s ease, transform 0.2s;*/
}

    .btn-primary:hover {
        /*        background: linear-gradient(135deg, #0056b3, #004494);*/
        background: lightgrey !important;
/*        transform: translateY(-2px);*/
/*        box-shadow: 0 6px 12px rgba(0, 86, 179, 0.4);*/
    }

/* Fixed Header */
.fixed-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1) !important;
    border-bottom: none !important;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
}

/* Navbar */
.navbar {
    border-bottom: none;
    /*    background:black!important;*/
    /*    background: linear-gradient(to right, #333333,#1a1a1a) !important;*/
    /*    background: #333333 !important;*/
    height: 60px;

    /*    background: linear-gradient(135deg, #007bff, #0056b3) !important;*/
   /* background: var(--hf-gradient-1) !important;*/
}

.nav-item {
    padding: 0px 8px 0px 8px;
    
}
.navbar-brand {
    font-size:20px;
    font-weight:600;

}
@media (min-width: 992px) {
    .navbar-brand {
        margin-left: -20px;
    }
}

/* Keep logo normal on mobile */
@media (max-width: 991px) {
    .navbar-brand {
        margin-left: 0;
    }
}

    .navbar-nav .nav-link:hover {
        color: lightgrey !important;
        transform: scale(1.10);
            
        /* Bright blue */
        /*         font-weight: bold;*/
        /*text-shadow: 0px 0px 10px rgba(0, 123, 255, 0.6);*/ /* Glow effect */
    }
.nav-link.active {
    color: black !important; /* Change color to match your theme */
    /*font-weight: bold;*/ /* Make it bold */
    transform: scale(1.10);
    /*border-bottom: 2px solid #007bff;*/ /* Optional underline effect */
}


.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-left:-15rem;
}
/* Dropdown Styling */
.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    min-width: 200px;
    width: 200px; /* Increase width */
}

/* Dropdown Items */
.dropdown-item {
    padding: 10px 15px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease-in-out;
    min-height: 60px; /* Increase height */
    white-space: normal; /* Allow text wrapping */
    padding: 10px; /* Add padding for better spacing */
    display: flex;
    align-items: center;
}

    /* Hover Effect */
    .dropdown-item:hover {
        background-color: #f8f9fa;
        color:lightgrey !important;
        border-radius: 5px;
    }
/* Dropdown Container */
.mega-menu {
    width: 740px;
    border-radius: 10px;
    border: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
    /* background: #d9e2f1; */
    background: linear-gradient(to right, #ffffff, #d2dae5) !important;
    padding: 10px;
   
}

/* Feature Items */
/* Enhanced Dropdown Styles */
.dropdown-menu.mega-menu {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 30px 20px;
    margin-top: 10px;
    min-width: 750px;
    background: white;
}

.dropdown-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: #f8f9fa;
    margin-bottom: 12px;
}

.dropdown-feature-item:hover {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    border-color: #176fdd;
    transform: translateX(5px);
    color: #176fdd;
    box-shadow: 0 4px 12px rgba(23, 111, 221, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
    padding: 8px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-feature-item div {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

/* Mobile responsive dropdown */
@media (max-width: 991px) {
    .hf-redesign-primary-button{
        margin-left: 70px;
    }
    .dropdown-menu.mega-menu {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        padding: 15px;
        position: static !important;
        transform: none !important;
        margin-top: 0;
        border-radius: 0;
    }
    
    .dropdown-menu.mega-menu .row {
        margin: 0;
    }
    
    .dropdown-menu.mega-menu .col-md-3 {
        width: 100%;
        padding: 0;
        margin-bottom: 0;
    }
    
    .dropdown-feature-item {
        padding: 12px;
        margin-bottom: 8px;
        font-size: 14px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .dropdown-feature-item div {
        font-size: 14px;
    }
    
    /* Make dropdown behave properly on mobile */
    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
}

@media (max-width: 576px) {
     .hf-redesign-primary-button{
        margin-left: 70px;
    }
    .dropdown-feature-item {
        padding: 10px;
        gap: 10px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .dropdown-feature-item div {
        font-size: 13px;
    }
    .navbar-nav .dropdown:hover .dropdown-menu {
        margin-left: 0;
    }
}



/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
/*    background: linear-gradient(135deg, #f8f9fa, #e3e6eb);*/
    background: linear-gradient(to bottom, #a3d1ff80 0%, #f8f9fa 100%);
    min-height:650px !important;
    gap:20px;
    margin-top:-10px;
}

.hero-text {
    max-width: 50%;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #222;
}
/* Typing animation */
@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Cursor blinking */
@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
    color: #555;
    font-weight: 400;
}

.hero img {
    width: 50%;
    border-radius: 10px;
    /*    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);*/
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
    /*    animation: floatEffect 4s ease-in-out infinite;*/
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.hero img.visible {
    opacity: 1;
    transform: scale(1);
}

/* Features Section */
.features {
    text-align: center;
    padding: 20px;
    background: #e3e6eb;
}

.feature-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.feature {
    max-width: 250px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature:hover {
        transform: translateY(-5px);
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    }

    .feature i {
        font-size: 42px;
        color: #007bff;
        margin-bottom: 10px;
    }

    .feature p {
        font-size: 16px;
        color: #555;
    }

/* Contact Page Styles */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 40px 100px;
    /*    background: #f4f6f9;*/
    background: linear-gradient(to bottom, #f8fbff, #eaf2ff);
}

/* Contact Form */
.contact-form {
    flex: 1 !important;
    background: rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

    .contact-form h2 {
        font-size: 26px;
        margin-bottom: 15px;
        color: #222;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 16px;
        transition: 0.3s ease-in-out;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #007bff;
            box-shadow: 0px 0px 8px rgba(0, 123, 255, 0.2);
        }

    .contact-form button {
        width: 100%;
        padding: 12px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: white;
        font-size: 18px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s ease-in-out;
    }

        .contact-form button:hover {
            background: #004080;
        }

/* Contact Info */
.contact-info {
    flex: 1 !important;
    /*    background: white;*/
    background: rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

    .contact-info h2 {
        font-size: 26px;
        margin-bottom: 20px;
        color: #222;
    }

    .contact-info p {
        font-size: 16px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    .contact-info i {
        color: #007bff;
        margin-right: 10px;
    }

/* Map */
.map-container iframe {
    width: 100%;
    height: 210px;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 40px;
    }
}


/*Navigation with tabs*/
/* Tabs Styling */
.nav-tabs {
/*    border-bottom: 2px solid #ddd;*/
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

    .nav-tabs .nav-link {
        background: #f8f9fa;
        color: #333 !important;
        border: none;
        padding: 12px 20px;
        font-weight: 500;
        transition: all 0.3s ease-in-out;
        border-radius: 8px;
        margin: 5px;
    }

        .nav-tabs .nav-link:hover {
            background: #e0e0e0;
            color: #000;
        }

        .nav-tabs .nav-link.active {
            background: white !important;
            color: #fff;
            border-radius: 15px;
            box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
            padding: 14px 22px;
            font-weight: bold;
        }

/* Feature Content Layout */
.feature-tab-content {
    /* display: none; */
    animation: fadeIn 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px; /* Adjusted gap for better balance */
    flex-wrap: wrap;
/*    padding: 20px;*/
}

    .feature-tab-content.active {
        display: flex;
    }

    /* Left Content Styling */
    .feature-tab-content .content {
        flex: 1;
        max-width: 500px;
    }

    .feature-tab-content h2 {
        font-size: 28px;
        font-weight: bold;
        color: #333;
        margin-bottom: 15px !important;
        margin-top: 15px !important;
    }

    .feature-tab-content p {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
    }

/* Testimonial Styling */
.testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    margin-top: 20px;
    text-align: left;
}

.stars {
    color: #f39c12;
    font-size: 18px;
}

/* Feature Image Styling */
.tab-feature-image {
    flex: 1 !important;
    width: 100%;
    max-width: 500px;
    max-height: 300px;
    aspect-ratio: 16/9;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Small Screens */
@media (max-width: 768px) {
    .feature-tab-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .feature-tab-content .content {
            max-width: 100%;
        }

    .tab-feature-image {
        max-width: 100%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*pricing section*/

/* Section Styling */
.pricing-section {
    text-align: center;
    padding-top: 30px;
    padding-bottom:50px;
    /*    background-color: #f8fbff;*/
    background: linear-gradient(to bottom, #f8fbff, #eaf2ff);
    /*    padding: 60px 20px;*/
}

/* Title & Subtitle */
.pricing-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #222;
    margin-bottom: 1.5rem;
    /*font-family: 'Serif', Georgia, 'Times New Roman', Times, serif;*/ /* Elegant serif font */
}

.pricing-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Pricing Container */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Pricing Cards */
.pricing-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgb(26 54 208 / 59%);
    padding: 30px;
    width: 100%;
    max-width: 450px;
    text-align: left;
    transition: transform 0.3s;
    padding: 20px;
    line-height: 1.6;
}

    .pricing-card:hover {
        transform: translateY(-5px);
    }

    /* Special Styling for Business Plan */
    .pricing-card.highlighted {
        border: 2px solid #0073e6;
        /*        background: #eef6ff;*/
        /*        border: 2px solid #0073e6;*/
        background: linear-gradient(to bottom, #eef6ff, #d9ecff);
        box-shadow: 0px 4px 12px rgba(0, 115, 230, 0.2);
    }

/* Pricing Details */
.price {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.discount {
    font-size: 14px;
    color: #0073e6;
    font-weight: bold;
}

.pricing-btn {
    background: #0073e6;
    color: white;
    padding: 10px 20px;
    font-size: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

    .pricing-btn:hover {
        background: #005bb5;
        transform: scale(1.05);
    }
/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

    .features-list li {
        font-size: 15px;
        color: #444;
        margin: 5px 0;
    }

.fa-check-circle, .fa-times-circle {
    font-size: 1.2em;
}


/*Why Us Section Starts*/
.ceipal-landing-wrapper {
    box-sizing: border-box;
    padding: 3vw;
    background-color: #f9f9f9;
   /* background: linear-gradient(to bottom right, #f3f1ff, #edf5ff);*/
    color: #333;
    width: 100%;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.ceipal-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(15px, 3vw, 30px);
    width: 100%;
}

.ceipal-left-section {
    flex: 1;
    position: relative;
    width: 100%;
}

.ceipal-main-heading {
    font-size: clamp(2.5rem, 5vw, 2.5rem);
    margin-bottom: clamp(15px, 3vh, 30px);
    /*    color: rgb(20, 19, 19);*/
    color: #404a57;
    text-align: center;
    font-weight: 700;
}

.ceipal-image-wrapper {
    position: relative;
    width: 100%;
    max-height: 80vh;
}

.ceipal-blue-accent {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 60%;
    height: 80%;
    background-color: #6B92C1;
    opacity: 0.2;
    z-index: 1;
}

.ceipal-image-square {
    width: 90%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    z-index: 2;
    max-height: 70vh;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(130, 119, 188, 0.2);
    border: 3px solid #fff;
}

.ceipal-square-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceipal-right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vh, 50px);
    width: 100%;
}

.ceipal-feature-box {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    align-items: flex-start;
    width: 100%;
    transition: transform 0.3s ease;
}

    .ceipal-feature-box:hover {
        transform: translateY(-10px);
    }

.ceipal-feature-icon {
    width: clamp(50px, 8vw, 80px);
    flex-shrink: 0;
}

.ceipal-feature-content {
    flex: 1;
}

.ceipal-feature-title {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: clamp(5px, 1vh, 10px);
    /*    color: #5b4f9c;*/
    color: #404a57;
}

.ceipal-feature-description {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5;
    color: #555;
}

/* Responsive breakpoints */
@media (max-width: 1100px) {
    .ceipal-feature-description {
        font-size: clamp(0.8rem, 2vw, 1rem);
    }
}

@media (max-width: 900px) {
    .ceipal-flex-container {
        flex-direction: column;
    }

    .ceipal-image-square {
        width: 70%;
        margin: 0 auto;
        max-height: 50vh;
    }
}

@media (max-width: 600px) {
    .ceipal-feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ceipal-feature-icon {
        width: 60px;
        margin-bottom: 10px;
    }
}

@media (min-height: 1000px) {
    .ceipal-right-section {
        gap: 8vh;
    }
}
/*


/*About section */
/* About Us Section */
.about-section-custom {
    text-align: center;
    padding: 60px 10%;
    /*    background: linear-gradient(to right, #f7f9fc, #eef1f7);*/
    background: linear-gradient(to bottom, #f8fbff, #eaf2ff);
}

.about-heading-custom {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #222;
/*    font-family: 'Serif', Georgia, 'Times New Roman', Times, serif;*/
}

.about-container-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.about-image-custom img {
    max-width: 100%;
    height: auto;
    width: 500px;
    border-radius: 15px;
    flex:1;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

    .about-image-custom img:hover {
        transform: scale(1.05);
    }

.about-content-custom {
    text-align: justify;
    max-width: 600px;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.5;
    flex:1;
}

.learn-more-btn-custom {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #0073e6;
    color: white;
    font-weight: 400;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

    .learn-more-btn-custom:hover {
        background: #005bb5;
        transform: scale(1.05);
    }

/* Our Mission Section */
.mission-section-custom {
    text-align: center;
    padding: 50px 10%;
    background-color: #f8f9fa;
}

    .mission-section-custom h2 {
        font-size: 2.2rem;
        color: #222;
        margin-bottom: 15px;
    }

    .mission-section-custom p {
        font-size: 1.2rem;
        color: #555;
    }

/* Why Choose Us Section */
.why-choose-us-custom {
    text-align: center;
    padding: 60px 10%;
    /*    background: #eef1f7;*/
    background: linear-gradient(to right, #f7f9fc, #eef1f7);
}

    .why-choose-us-custom h2 {
        font-size: 2.2rem;
        color: #222;
        font-weight: 500;
        margin-bottom: 30px;
        margin-top:0px;
       
    }

.features-container-custom {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-box-custom {
    text-align: center;
    max-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .feature-box-custom:hover {
        transform: translateY(-5px);
    }

    .feature-box-custom img {
        max-width: 60px;
        margin-bottom: 15px;
    }

    .feature-box-custom h3 {
        font-size: 1.5rem;
        color: black;
        margin-bottom: 10px;
    }

    .feature-box-custom p {
        font-size: 1rem;
        color: #555;
    }
.feature-icon-custom {
    font-size: 40px;
    color: #4a90e2;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-box-custom:hover .feature-icon-custom {
    color: #1a73e8;
}
/* Responsive Design */
@media (max-width: 768px) {
    .about-container-custom {
        flex-direction: column;
        text-align: center;
    }

    .about-content-custom {
        text-align: center;
    }

    .features-container-custom {
        flex-direction: column;
        align-items: center;
    }
}


/*Footer starts here */
.custom-footer {
    /*background: white;*/
    background: linear-gradient(to bottom, #ffffff80 0%, #80b6eb 100%) !important;
    padding: 15px 10%;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
}

.custom-footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo & Socials */
.custom-footer-brand {
    margin-bottom: 20px;
}

.custom-footer-logo {
    width: 180px;
}

.custom-footer-socials a {
    display: inline-block;
    margin: 10px;
    font-size: 18px;
    color: #004080;
    transition: color 0.3s ease-in-out;
}

    .custom-footer-socials a:hover {
        color: #f39c12;
    }

/* Footer Links */
.custom-footer-links {
    display: flex;
    justify-content: center;
    gap: 150px;
    text-align: left;
    width: 100%;
    max-width: 1200px;
    margin: 30px 0;
}

.custom-footer-column h4 {
    font-size: 16px;
    font-weight: bold;
    border-bottom: 2px solid #f39c12;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.custom-footer-column ul {
    list-style: none;
    padding: 0;
}

    .custom-footer-column ul li {
        margin-bottom: 8px;
    }

        .custom-footer-column ul li a {
            text-decoration: none;
            color: #004080;
            font-size: 14px;
            transition: color 0.3s ease-in-out;
        }

            .custom-footer-column ul li a:hover {
                color: grey;
            }

/* "Stay Updated" Section */
.custom-stay-updated h5 {
    font-size: 22px; /* Bigger Title */
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 55px !important;
}

.custom-stay-updated form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.custom-stay-updated input {
    padding: 12px; /* Increased padding for better look */
    width: 300px; /* Wider input field */
    border-radius: 5px;
    border: 2px solid grey;
    outline: none;
    font-size: 16px;
}

.custom-stay-updated button {
    padding: 12px 20px;
    font-size: 16px;
/*    background: #0073e6;*/
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    background: linear-gradient(135deg, #007bff, #0056b3);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease-in-out !important;
    color: white !important;
    padding: 12px 22px;
    font-weight: 600 !important;
    /*    transition: background 0.3s ease, transform 0.2s;*/
}

.custom-stay-updated button:hover {
    /*    background: grey;*/
    background: linear-gradient(135deg, #0056b3, #004494);
    box-shadow: 0 6px 12px rgba(0, 86, 179, 0.4);
}

/* Social Icons - Increase Size */
.custom-social-icons {
    margin-top: 15px;
}

    .custom-social-icons a {
        margin: 0 12px;
        font-size: 26px; /* Bigger Icons */
        color: #004080;
        transition: color 0.3s;
    }

        .custom-social-icons a:hover {
            color: grey;
        }

/* Copyright Notice - Bigger Font */
.custom-footer-copy {
    font-size: 14px;
    color: #004080;
    margin-top: 30px;
}
/* Responsive */
@media (max-width: 1024px) {
    .custom-footer-links {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
    }

    .custom-footer-column {
        flex: 1 1 40%;
    }

    .custom-footer-options {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .custom-footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .custom-footer-column {
        flex: 1 1 100%;
    }
}

.resume-features-section {
    padding: 60px 5%;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

    /* Add subtle background pattern */
    .resume-features-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(#4a6cf7 1px, transparent 1px);
        background-size: 50px 50px;
        opacity: 0.03;
        pointer-events: none;
    }

.resume-features-heading {
    font-size: 2rem;
/*    margin-bottom: 30px;*/
    color: #2d3748;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

    /* Add decorative underline to heading */
    .resume-features-heading::after {
        content: '';
        position: absolute;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #4a6cf7, #6a8fff);
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
    }

.resume-feature-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 70px;
    gap: 40px;
    position: relative;
}

    /* Add connecting lines between cards */
    .resume-feature-container::before {
        content: '';
        position: absolute;
        top: 100px;
        left: calc(25% + 30px);
        right: calc(25% + 30px);
        height: 3px;
        background: linear-gradient(90deg, rgba(74, 108, 247, 0.1), rgba(74, 108, 247, 0.3), rgba(74, 108, 247, 0.1));
        z-index: 0;
        display: none; /* Enable on larger screens */
    }

@media (min-width: 992px) {
    .resume-feature-container::before {
        display: block;
    }
}

.resume-feature-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px 15px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .resume-feature-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 40px rgba(74, 108, 247, 0.15);
    }

    .resume-feature-card::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, #4a6cf7, #6a8fff);
        top: 0;
        left: 0;
        border-radius: 6px 6px 0 0;
    }

/* Reveal number on hover */
.resume-feature-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(74, 108, 247, 0.06);
    line-height: 1;
    transition: all 0.3s ease;
    opacity: 1;
}

.resume-feature-card:hover .resume-feature-number {
    color: rgba(74, 108, 247, 0.12);
    transform: scale(1.1);
}

.resume-feature-icon-wrapper {
    width: 110px;
    height: 110px;
    background: rgba(74, 108, 247, 0.08);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.resume-feature-card:hover .resume-feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(74, 108, 247, 0.12);
    box-shadow: 0 10px 25px rgba(74, 108, 247, 0.2);
}

.resume-feature-icon {
    font-size: 3rem;
    color: #4a6cf7;
    transition: all 0.3s ease;
}

.resume-feature-card:hover .resume-feature-icon {
    transform: scale(1.1);
}

.resume-feature-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resume-feature-card:hover .resume-feature-title {
    color: #4a6cf7;
}

.resume-feature-description {
    color: #64748b;
    font-size: 1.0rem;
    line-height: 1.6;
    margin-top: 18px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .resume-features-heading {
        font-size: 2.5rem;
    }

    .resume-feature-card {
        width: 300px;
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {
    .resume-features-section {
        padding: 80px 5%;
    }

    .resume-feature-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .resume-feature-card {
        width: 100%;
        max-width: 380px;
    }

    /* Add vertical flow line for mobile */
    .resume-feature-container::before {
        display: none;
    }

    /* Optional: add vertical connectors for mobile */
    .resume-feature-card:not(:last-child)::after {
        content: '';
        position: absolute;
        width: 3px;
        height: 40px;
        background: linear-gradient(0deg, rgba(74, 108, 247, 0.1), rgba(74, 108, 247, 0.3));
        bottom: -45px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/*Login  Page*/
:root {
    --rm-primary-color: #4285F4;
    --rm-primary-light: #e8f0fe;
    --rm-secondary-color: #333;
    --rm-light-gray: #f5f5f5;
    --rm-medium-gray: #e0e0e0;
    --rm-dark-gray: #808080;
    --rm-white: #ffffff;
    --rm-accent-color: #34A853;
    --rm-accent-light: #e6f4ea;
    --rm-google-color: #4285F4;
    --rm-facebook-color: #3b5998;
    --rm-linkedin-color: #0077b5;
}
.rm-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 510px;
    padding: 20px 20px 20px 20px;
    background: linear-gradient(135deg, var(--rm-primary-light) 0%, var(--rm-light-gray) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    
}

/* Interactive background elements */
.rm-bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    z-index: 0;
}

.rm-bg-circle1 {
    width: 250px;
    height: 250px;
    background-color: var(--rm-primary-color);
    top: -50px;
    left: -80px;
    animation: rm-float 12s ease-in-out infinite;
}

.rm-bg-circle2 {
    width: 150px;
    height: 150px;
    background-color: var(--rm-accent-color);
    bottom: -30px;
    right: 10%;
    animation: rm-float 10s ease-in-out infinite 1s;
}

.rm-bg-circle3 {
    width: 100px;
    height: 100px;
    background-color: var(--rm-primary-color);
    top: 30%;
    right: -20px;
    animation: rm-float 8s ease-in-out infinite 0.5s;
}

.rm-bg-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--rm-medium-gray) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

@keyframes rm-float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.rm-login-card {
    background-color: var(--rm-white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 30px; /* Reduced padding */
    width: 100%;
    max-width: 400px;
    /*    margin-top:20px;
    margin-bottom: 20px;*/
    position: relative;
    z-index: 10;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .rm-login-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    }

.rm-login-header {
    text-align: center;
    margin-bottom: 20px; /* Reduced margin */
}

    .rm-login-header h1 {
        color: var(--rm-secondary-color);
        margin-bottom: 5px; /* Reduced margin */
        font-size: 24px; /* Smaller font size */
    }

    .rm-login-header p {
        color: var(--rm-dark-gray);
        margin-top: 0;
        font-size: 14px; /* Smaller font size */
    }

.rm-form-group {
    margin-bottom: 16px; /* Reduced margin */
    position: relative;
}

    .rm-form-group label {
        display: block;
        margin-bottom: 6px; /* Reduced margin */
        color: var(--rm-secondary-color);
        font-weight: 500;
        transition: color 0.3s ease;
        font-size: 14px; /* Smaller font size */
    }

.rm-form-input {
    width: 100%;
    padding: 10px 14px; /* Reduced padding */
    border: 2px solid var(--rm-medium-gray);
    border-radius: 8px;
    font-size: 14px; /* Smaller font size */
    box-sizing: border-box;
    transition: all 0.3s ease;
    background-color: var(--rm-white);
}

    .rm-form-input:focus {
        border-color: var(--rm-primary-color);
        outline: none;
        box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.2);
    }

        .rm-form-input:focus + label {
            color: var(--rm-primary-color);
        }

.rm-form-icon {
    position: absolute;
    right: 12px;
    top: 32px; /* Adjusted position */
    color: var(--rm-dark-gray);
}

.rm-submit-btn {
    background-color: var(--rm-primary-color);
    color: var(--rm-white);
    border: none;
    border-radius: 50px;
    padding: 12px 0; /* Reduced padding */
    font-size: 15px; /* Smaller font size */
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 8px; /* Reduced margin */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .rm-submit-btn:hover {
        background-color: #3367d6;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
    }

    .rm-submit-btn:active {
        transform: translateY(0);
    }

    .rm-submit-btn::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%);
        transform-origin: 50% 50%;
    }

    .rm-submit-btn:focus:not(:active)::after {
        animation: rm-ripple 1s ease-out;
    }

@keyframes rm-ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(100, 100);
        opacity: 0;
    }
}

.rm-login-footer {
    text-align: center;
    margin-top: 16px; /* Reduced margin */
    font-size: 14px; /* Smaller font size */
}

    .rm-login-footer a {
        color: var(--rm-primary-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .rm-login-footer a:hover {
            color: #3367d6;
            text-decoration: underline;
        }

.rm-login-divider {
    display: flex;
    align-items: center;
    margin: 16px 0; /* Reduced margin */
}

    .rm-login-divider::before, .rm-login-divider::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid var(--rm-medium-gray);
    }

    .rm-login-divider span {
        padding: 0 10px;
        color: var(--rm-dark-gray);
        font-size: 13px; /* Smaller font size */
    }

.rm-social-login {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px; /* Reduced margin */
}

.rm-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--rm-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rm-social-btn-google {
    background-color: var(--rm-google-color);
}

.rm-social-btn-facebook {
    background-color: var(--rm-facebook-color);
}

.rm-social-btn-linkedin {
    background-color: var(--rm-linkedin-color);
}

.rm-social-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rm-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

    .rm-social-btn:hover::before {
        opacity: 1;
    }

/*.rm-social-btn:active {
    transform: translateY(-1px);
}*/

.rm-remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 16px; /* Reduced margin */
    font-size: 14px; /* Smaller font size */
}

    .rm-remember-me input {
        margin-right: 8px;
    }

@media (max-width: 768px) {
    .rm-login-card {
        padding: 25px 20px;
    }

    .rm-bg-circle1 {
        width: 150px;
        height: 150px;
    }

    .rm-bg-circle2 {
        width: 100px;
        height: 100px;
    }
}

/*Features section*/
.features-section {
    padding: 40px 40px;
    background: linear-gradient(135deg, #f8fafd 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

    .features-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23284b82' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        z-index: 0;
    }

.features-container {
   /* max-width: 1200px;*/
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-header {
    text-align: center;
    margin-bottom: 0px;
}

.features-subtitle {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1e365a;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

    .features-subtitle::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #2c5282, #4a78c3);
        border-radius: 2px;
    }

/* Features Layout */
.features-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.features-menu {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-detail {
    flex: 3;
    min-width: 320px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    padding: 40px;
    color: #333;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(44, 82, 130, 0.08);
    gap: 2.5rem;
    border: 1px solid rgba(74, 120, 195, 0.1);
    transition: all 0.3s ease;
}

/* Menu Item Styling */
.feature-menu-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 1px 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4a5568;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

    .feature-menu-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(44, 82, 130, 0.12);
        color: #2c5282;
    }

    .feature-menu-item.active {
        background: linear-gradient(45deg, #ebf3ff, #ffffff);
        color: #2c5282;
        border-left: 4px solid #2c5282;
        padding-left: 20px;
        box-shadow: 0 8px 20px rgba(44, 82, 130, 0.15);
    }

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #edf2fa 0%, #dde6f3 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-menu-item.active .feature-icon-wrapper {
    background: linear-gradient(135deg, #2c5282 0%, #4a78c3 100%);
    color: white;
}

.feature-menu-item:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.feature-menu-item i {
    font-size: 1.2rem;
}

.feature-menu-text {
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Feature Detail Styling */
.feature-content {
    flex: 1;
    padding-right: 20px;
}

.feature-content-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #1e365a;
    font-weight: 700;
    position: relative;
/*    padding-bottom: 15px;*/
}
/*
    .feature-content-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #2c5282, #4a78c3);
        border-radius: 2px;
    }*/

.feature-content-description {
    line-height: 2;
    margin-bottom: 15px;
    color: #3e4e63;
    text-align: justify;
    font-size: 16px;
}

.feature-image-container {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image {
    width: 100%;
    height: 90%;
    /*max-height: 280px;*/
    min-height: 320px;
    border-radius: 12px;
    box-shadow: 0 20px 30px rgba(44, 82, 130, 0.15);
    border: 1px solid rgba(74, 120, 195, 0.1);
    transition: all 0.5s ease;
    object-fit: cover;
    margin-top:1.5rem;
}

.feature-detail:hover .feature-image {
    transform: scale(1.03);
}

/* Animation */
@keyframes featureFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-fade-in {
    animation: featureFadeIn 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-section {
        padding: 60px 20px;
    }

    .features-subtitle {
        font-size: 2.4rem;
    }

    .feature-content-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .features-content-wrapper {
        flex-direction: column;
    }

    .feature-detail {
        flex-direction: column;
        padding: 30px;
    }

    .feature-image-container {
        margin-top: 0px;
        max-width: 100%;
    }

    .feature-content {
        padding-right: 0;
    }

    .features-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 15px;
    }

    .feature-menu-item {
        padding: 5px 5px;
       
    }

    .feature-icon-wrapper {
        width: 38px;
        height: 38px;
    }

    .feature-menu-text {
        font-size: 1rem;
    }

    .feature-content-title {
        font-size: 1.8rem;
    }

    .feature-content-description {
        font-size: 16px;
    }
    .navbar {
        height: 80px !important;
    }
    .hero-text {
    max-width: 100%;
}
}

/*Hero and carousel combined Index Page*/
:root {
    --hf-primary: #4361ee;
    --hf-primary-dark: #3a0ca3;
    --hf-secondary: #7b2cbf;
    --hf-accent: #f72585;
    --hf-text-primary: #2b2d42;
    --hf-text-secondary: #555;
    --hf-text-light: #767986;
    --hf-background: #fcfcff;
    --hf-card-bg: #ffffff;
    --hf-gradient-1: linear-gradient(135deg, #041b89, #041b89);
/*    --hf-gradient-1:black;*/
    --hf-gradient-2: linear-gradient(135deg, #7b2cbf, #3a0ca3);
/*    --hf-gradient-2: black;*/
    --hf-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --hf-shadow-md: 0 10px 15px rgba(0, 0, 0, 0.07);
    --hf-shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
    --hf-border-radius-sm: 8px;
    --hf-border-radius-md: 12px;
    --hf-border-radius-lg: 20px;
    --hf-transition: all 0.3s ease;
}

/* Base Styles */
.hf-redesign-body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--hf-text-primary);
    background-color: var(--hf-background);
    overflow-x: hidden;
    line-height: 1.6;
}

.hf-redesign-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 5;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin: 0;
}


/* Combined Hero & Carousel Section */
.hf-redesign-hero-carousel {
    padding: 40px 0 80px;
    background-color: var(--hf-background);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hf-redesign-combined-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Hero Styles */
.hf-redesign-hero-content {
    flex: 1;
    max-width: 580px;
}

.hf-redesign-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(67, 97, 238, 0.1);
    color: var(--hf-primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

    .hf-redesign-badge i {
        color: var(--hf-primary);
        font-size: 12px;
    }

.hf-redesign-hero-title {
    font-size: 50px;
    margin-bottom: 24px;
    color: var(--hf-text-primary);
    line-height: 1.2;
    font-weight:700;
}

.hf-redesign-gradient-text {
    background: var(--hf-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hf-redesign-hero-subtitle {
    font-size: 18px;
    margin-bottom: 36px;
    color: var(--hf-text-secondary);
    line-height: 1.6;
}

.hf-redesign-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hf-redesign-primary-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--hf-gradient-1);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: var(--hf-border-radius-md);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--hf-transition);
    box-shadow: 0 8px 15px rgba(67, 97, 238, 0.25);
}

    .hf-redesign-primary-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 20px rgba(67, 97, 238, 0.4);
    }

.hf-redesign-text-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--hf-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: var(--hf-transition);
/*    border:2px solid white;*/
}

    .hf-redesign-text-link:hover {
        color: var(--hf-primary-dark);
        transform: translateX(3px);
    }

/* Stats Counter */
.hf-redesign-stats {
    display: flex;
    gap: 40px;
}

.hf-redesign-stat-item {
    display: flex;
    flex-direction: column;
}

.hf-redesign-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--hf-primary);
    margin-bottom: 4px;
}

.hf-redesign-stat-text {
    font-size: 14px;
    color: var(--hf-text-secondary);
}

/* Carousel Styles */
.hf-redesign-carousel-wrapper {
    flex: 1;
    position: relative;
}

.hf-redesign-carousel-container {
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(67, 97, 238, 0.25);
    border-radius: var(--hf-border-radius-lg);
    overflow: hidden;
    /*    background: var(--hf-card-bg);*/
    background: var(--hf-gradient-1);
    position: relative;
    transform: perspective(1000px) rotateY(2deg);
    transition: transform 0.5s ease;
}

    .hf-redesign-carousel-container::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, #4361ee, #7b2cbf);
        border-radius: calc(var(--hf-border-radius-lg) + 3px);
        z-index: -1;
        opacity: 0.4;
    }

    .hf-redesign-carousel-container:hover {
        transform: perspective(1000px) rotateY(0deg);
    }

.hf-redesign-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.hf-redesign-carousel-slide {
    min-width: 100%;
    padding: 0;
}

.hf-redesign-feature-card {
    background: var(--hf-card-bg);
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 320px;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

    .hf-redesign-feature-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--hf-primary), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .hf-redesign-feature-card:hover::after {
        opacity: 1;
    }

.hf-redesign-feature-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.12), rgba(58, 12, 163, 0.12));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

    .hf-redesign-feature-icon:hover {
        transform: rotate(0deg) scale(1.05);
    }

    .hf-redesign-feature-icon::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background: linear-gradient(135deg, #4361ee, #3a0ca3);
        border-radius: 25px;
        z-index: -1;
        opacity: 0.3;
    }

    .hf-redesign-feature-icon i {
        font-size: 36px;
        color: var(--hf-primary);
        background: linear-gradient(135deg, #4361ee, #3a0ca3);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.hf-redesign-feature-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--hf-text-primary);
}

.hf-redesign-feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--hf-text-secondary);
    max-width: 320px;
    margin: 0 auto;
}

.hf-redesign-carousel-navigation {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hf-redesign-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.hf-redesign-carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: #e0e0ff;
    cursor: pointer;
    transition: all 0.4s ease;
}

    .hf-redesign-carousel-indicator.hf-redesign-active {
        width: 30px;
        /*        background: var(--hf-gradient-1);*/
        background: var(--hf-card-bg);
        transform: scale(1);
    }

.hf-redesign-carousel-controls {
    display: flex;
    gap: 16px;
}

.hf-redesign-carousel-control {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: white;
    border: 2px solid rgba(67, 97, 238, 0.2);
    color: var(--hf-primary);
    font-size: 16px;
    cursor: pointer;
    transition: var(--hf-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

    .hf-redesign-carousel-control:hover {
        background: var(--hf-gradient-1);
        color: white;
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(67, 97, 238, 0.3);
    }

/* Background Shapes */
.hf-redesign-bg-shape {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    filter: blur(60px);
}

.hf-redesign-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(67, 97, 238, 0.15);
    top: -150px;
    right: -100px;
}

.hf-redesign-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(123, 44, 191, 0.1);
    bottom: -100px;
    left: 15%;
}

.hf-redesign-shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(247, 37, 133, 0.08);
    top: 30%;
    left: -50px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hf-redesign-hero-title {
        font-size: 42px;
    }

    .hf-redesign-combined-layout {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hf-redesign-combined-layout {
        flex-direction: column;
        gap: 60px;
    }

    .hf-redesign-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hf-redesign-hero-actions {
        justify-content: center;
    }

    .hf-redesign-stats {
        justify-content: center;
    }

    .hf-redesign-carousel-wrapper {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .hf-redesign-carousel-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hf-redesign-nav-links {
        display: none;
    }

    .hf-redesign-mobile-menu-toggle {
        display: block;
    }

    .hf-redesign-hero-title {
        font-size: 36px;
    }

    .hf-redesign-hero-subtitle {
        font-size: 16px;
    }

    .hf-redesign-hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hf-redesign-text-link {
        margin-bottom: 20px;
    }

    .hf-redesign-hero-carousel {
        padding: 80px 0 40px;
    }

    .hf-redesign-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}


/*Hiring Solution Page*/

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #6366f1;
    --success: #10b981;
    --dark: #1e293b;
    --light: #f8fafc;
    --border-radius: 12px;
}

/* Resume Page Specific Styles */
.resume-hero-section {
    padding: 6rem 0 4rem;
/*        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);*/
    background: linear-gradient(to bottom, #a3d1ff80 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    height:600px;
    margin-top:-10px;
}

    .resume-hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgdmlld0JveD0iMCAwIDIwMCAyMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBmaWxsPSIjMjU2M2ViIiBmaWxsLW9wYWNpdHk9Ii4xIiBkPSJNMCAwaDEwMHYxMDBIMHoiLz48cGF0aCBmaWxsPSIjNjM2NmYxIiBmaWxsLW9wYWNpdHk9Ii4xIiBkPSJNMTAwIDBoMTAwdjEwMEgxMDB6Ii8+PHBhdGggZmlsbD0iIzI1NjNlYiIgZmlsbC1vcGFjaXR5PSIuMSIgZD0iTTEwMCAxMDBoMTAwdjEwMEgxMDB6Ii8+PHBhdGggZmlsbD0iIzYzNjZmMSIgZmlsbC1vcGFjaXR5PSIuMSIgZD0iTTAgMTAwaDEwMHYxMDBIMHoiLz48L2c+PC9zdmc+');
        background-repeat: repeat;
        opacity: 0.2;
        z-index: 0;
    }

.resume-section-title {
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
    position: relative;
}

    .resume-section-title::after {
        content: "";
        position: absolute;
        bottom: -0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 2px;
    }

.resume-feature-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    width:250px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

    .resume-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .resume-feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(180deg, var(--primary), var(--secondary));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .resume-feature-card:hover::before {
        opacity: 1;
    }

.resume-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-radius: 50%;
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.resume-upload-container {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 3rem 2rem;
    position: relative;
}

.resume-dropzone {
    border: 2px dashed #d1d5db;
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #f8fafc;
}

    .resume-dropzone:hover, .resume-dropzone.active {
        border-color: var(--primary);
        background-color: rgba(37, 99, 235, 0.05);
    }

.resume-btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    transition: all 0.3s ease;
}

.resume-btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    color: white;
}

    .resume-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
        background: linear-gradient(90deg, var(--primary-dark), var(--secondary));
    }

.resume-btn-outline-primary {
    color: var(--primary);
    background-color: transparent;
    background-image: none;
    border: 1px solid var(--primary);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

    .resume-btn-outline-primary:hover {
        color: white;
        background-color: var(--primary);
        border-color: var(--primary);
    }

.resume-benefit-list {
    margin-top: 1.5rem;
}

.resume-benefit-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

    .resume-benefit-item:last-child {
        border-bottom: none;
    }

.resume-benefit-icon {
    color: var(--success);
    margin-right: 1rem;
    font-size: 1.25rem;
}

.resume-counter-item {
    text-align: center;
    padding: 2rem 1rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.resume-counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.resume-section-subtitle {
    font-size: 1.25rem;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.resume-image-container {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
/*    margin-bottom:10rem;*/
   
}

@media (max-width: 1400px) {
    .resume-hero-section {
        padding: 4rem 0 3rem;
    }
}

/*Assssment*/

:root {
    --assessments-primary-color: #2563eb; /* Deeper blue */
    --assessments-secondary-color: #1e40af; /* Darker blue */
    --assessments-accent-color: #10b981; /* Emerald green */
    --assessments-dark-color: #0f172a; /* Very dark blue */
    --assessments-light-color: #f9fafb; /* Off-white */
    --assessments-gray-color: #64748b; /* Slate gray */
    --assessments-border-radius: 8px;
    --assessments-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --assessments-transition: all 0.3s ease;
}

/* Main container */
.assessments-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: 'Inter', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--assessments-dark-color);
    background-color: #fff;
}

/* Typography */
.assessments-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--assessments-dark-color);
}

/* Hero Section */
.assessments-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 5rem;
    padding: 2rem 0;
}

.assessments-hero-content {
    flex: 1;
}

.assessments-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--assessments-primary-color), var(--assessments-secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.assessments-hero-description {
    font-size: 1.25rem;
    color: var(--assessments-gray-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.assessments-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .assessments-hero-image img {
        max-width: 100%;
        border-radius: var(--assessments-border-radius);
        box-shadow: var(--assessments-box-shadow);
    }

.assessments-cta-button {
    background: linear-gradient(90deg, var(--assessments-primary-color), var(--assessments-secondary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--assessments-transition);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.25);
}

    .assessments-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3);
    }

/* Features Section */
.assessments-features-section {
    margin-bottom: 5rem;
    padding: 2rem 0;
}

.assessments-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.assessments-feature-card {
    background-color: white;
    border-radius: var(--assessments-border-radius);
    padding: 2rem;
    box-shadow: var(--assessments-box-shadow);
    transition: var(--assessments-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

    .assessments-feature-card:hover {
        transform: translateY(-5px);
        border-color: rgba(37, 99, 235, 0.3);
    }

.assessments-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--assessments-primary-color), var(--assessments-secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .assessments-feature-icon i {
        font-size: 1.75rem;
        color: white;
    }

.assessments-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--assessments-dark-color);
}

.assessments-feature-description {
    font-size: 1rem;
    color: var(--assessments-gray-color);
    line-height: 1.6;
    flex-grow: 1;
}

/* Assessment Types Section */
.assessments-types-section {
    margin-bottom: 5rem;
    padding: 2rem 0;
}

.assessments-types-container {
    margin-top: 3rem;
    margin-left:2rem;
    margin-right:2rem;
}

.assessments-type-tab-panel {
    border-radius: var(--assessments-border-radius);
    box-shadow: var(--assessments-box-shadow);
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.assessments-type-tabs {
    display: flex;
    background-color: var(--assessments-light-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.assessments-type-tab-button {
    flex: 1;
    padding: 1.25rem 1rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--assessments-transition);
    color: var(--assessments-gray-color);
    position: relative;
}

    .assessments-type-tab-button.active {
        color: var(--assessments-primary-color);
    }

        .assessments-type-tab-button.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--assessments-primary-color), var(--assessments-secondary-color));
        }

.assessments-type-content {
    display: none;
    padding: 2rem;
    background-color: white;
}

    .assessments-type-content.active {
        display: flex;
        justify-content: space-between;
        gap: 2rem;
    }

.assessments-type-content-inner {
    flex: 1;
}

.assessments-type-content-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--assessments-dark-color);
}

.assessments-type-content-description {
    font-size: 1rem;
    color: var(--assessments-gray-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.assessments-type-content-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
}

    .assessments-type-content-features li {
        padding: 0.5rem 0;
        position: relative;
        padding-left: 2rem;
        color: var(--assessments-dark-color);
    }

        .assessments-type-content-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--assessments-accent-color);
            font-weight: bold;
        }

.assessments-type-content-button {
    background-color: transparent;
    color: var(--assessments-primary-color);
    border: 2px solid var(--assessments-primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--assessments-transition);
}

    .assessments-type-content-button:hover {
        background-color: var(--assessments-primary-color);
        color: white;
    }

.assessments-type-content-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .assessments-type-content-image img {
        max-width: 100%;
        border-radius: var(--assessments-border-radius);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

/* Statistics Section */
.assessments-stats-section {
    margin-bottom: 5rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--assessments-primary-color), var(--assessments-secondary-color));
    border-radius: var(--assessments-border-radius);
    margin-left: 2rem;
    margin-right: 2rem;
}

.assessments-stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.assessments-stats-card {
    text-align: center;
    padding: 1rem;
    color: white;
}

.assessments-stats-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.assessments-stats-text {
    font-size: 1rem;
    opacity: 0.8;
}

/* CTA Section */
.assessments-cta-section {
    padding: 4rem 2rem;
    background-color: var(--assessments-light-color);
    border-radius: var(--assessments-border-radius);
    text-align: center;
    margin-bottom: 6rem;
    margin-top:6rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    margin-left:2rem;
    margin-right:2rem;
}

.assessments-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.assessments-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--assessments-dark-color);
}

.assessments-cta-description {
    font-size: 1.25rem;
    color: var(--assessments-gray-color);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.assessments-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.assessments-primary-button {
    background: linear-gradient(90deg, var(--assessments-primary-color), var(--assessments-secondary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--assessments-transition);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.25);
}

    .assessments-primary-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3);
    }

.assessments-secondary-button {
    background-color: transparent;
    color: var(--assessments-primary-color);
    border: 2px solid var(--assessments-primary-color);
    padding: 1rem 2rem;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--assessments-transition);
}

    .assessments-secondary-button:hover {
        background-color: rgba(37, 99, 235, 0.1);
    }

/* Add subtle hover effects */
.assessments-primary-button,
.assessments-secondary-button,
.assessments-cta-button,
.assessments-type-content-button {
    position: relative;
    overflow: hidden;
}

    .assessments-primary-button::after,
    .assessments-cta-button::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }

    .assessments-primary-button:hover::after,
    .assessments-cta-button:hover::after {
        transform: translateX(0);
    }

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .assessments-hero-section {
        flex-direction: column;
        text-align: center;
    }

    .assessments-hero-title {
        font-size: 2.75rem;
    }

    .assessments-workflow-divider {
        display: none;
    }

    .assessments-workflow-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .assessments-workflow-step {
        padding: 1rem 0;
    }

    .assessments-type-content.active {
        flex-direction: column;
    }

    .assessments-type-tabs {
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
    }
}

@media screen and (max-width: 768px) {
    .assessments-section-title {
        font-size: 2rem;
    }

    .assessments-hero-title {
        font-size: 2.25rem;
    }

    .assessments-hero-description {
        font-size: 1.1rem;
    }

    .assessments-cta-title {
        font-size: 2rem;
    }

    .assessments-cta-description {
        font-size: 1.1rem;
    }

    .assessments-stats-number {
        font-size: 2.5rem;
    }
}

/* bvo = Background Verification & Onboarding (prefix to avoid conflicts) */
.bvo-container {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    /*    background-color: #f8f9fa;*/
    background-color: #f8fbff;
    /*    background: linear-gradient(to bottom, #eef6ff, #d9ecff);*/
    color: #333;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

    .bvo-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        z-index: 0;
    }

.bvo-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.bvo-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

    .bvo-header::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #3498db, #2ecc71);
        border-radius: 2px;
    }

    .bvo-header h1 {
        font-size: 42px;
        font-weight: 800;
        color: #2c3e50;
        margin-bottom: 20px;
        text-shadow: 0px 1px 2px rgba(0,0,0,0.05);
    }

    .bvo-header p {
        font-size: 18px;
        color: #7f8c8d;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

.bvo-main-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
}

.bvo-gradient-bg {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
}

.bvo-process-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bvo-process-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

    .bvo-process-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

.bvo-card-header {
    position: relative;
    padding: 20px 30px;
    color: white;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.bvo-bg-verification {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
}

.bvo-bg-onboarding {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.bvo-card-header-icon {
    margin-right: 15px;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.bvo-card-header::before {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.bvo-card-content {
    padding: 30px 40px;
    position: relative;
}

    .bvo-card-content p {
        margin: 0 0 20px;
        line-height: 1.4;
        color: #555;
        font-size: 16px;
    }

.bvo-card-steps {
    margin-top: 20px;
}

.bvo-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e9e9e9;
    transition: all 0.3s ease;
}

    .bvo-step:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .bvo-step:hover {
        transform: translateX(10px);
    }

.bvo-step-number {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

    .bvo-step-number::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
    }

.bvo-verification-step {
    background: #3a7bd5;
}

.bvo-onboarding-step {
    background: #11998e;
}

.bvo-step-text {
    line-height: 1.1;
    font-size: 16px;
    padding-top: 5px;
    color: #444;
}

.bvo-features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.bvo-feature {
    border-radius: 16px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .bvo-feature:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .bvo-feature::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #3498db, #2ecc71);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .bvo-feature:hover::before {
        transform: scaleX(1);
    }

.bvo-feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    box-shadow: 10px 10px 20px #d9d9d9, -10px -10px 20px #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.bvo-feature:hover .bvo-feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.bvo-feature-icon {
    font-size: 32px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bvo-feature h3 {
    font-size: 20px;
    margin: 0 0 15px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

    .bvo-feature h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: #e0e0e0;
    }

.bvo-feature p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

.bvo-cta-container {
    position: relative;
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    overflow: hidden;
    margin-bottom: 80px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

    .bvo-cta-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='152' viewBox='0 0 152 152'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='temple' fill='%239C92AC' fill-opacity='0.03'%3E%3Cpath d='M152 150v2H0v-2h28v-8H8v-20H0v-2h8V80h42v20h20v42H30v8h90v-8H80v-42h20V80h42v40h8V30h-8v40h-42V50H80V8h40V0h2v8h20v20h8V0h2v150zm-2 0v-28h-8v20h-20v8h28zM82 30v18h18V30H82zm20 18h20v20h18V30h-20V10H82v18h20v20zm0 2v18h18V50h-18zm20-22h18V10h-18v18zm-54 92v-18H50v18h18zm-20-18H28V82H10v38h20v20h38v-18H48v-20zm0-2V82H30v18h18zm-20 22H10v18h18v-18zm54 0v18h38v-20h20V82h-18v20h-20v20H82zm18-20H82v18h18v-18zm2-2h18V82h-18v18zm20 40v-18h18v18h-18zM30 0h-2v8H8v20H0v2h8v40h42V50h20V8H30V0zm20 48h18V30H50v18zm18-20H48v20H28v20H10V30h20V10h38v18zM30 50h18v18H30V50zm-2-40H10v18h18V10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.3;
    }

.bvo-cta-content {
    position: relative;
    z-index: 1;
}

.bvo-cta-container h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.bvo-cta-container p {
    color: #7f8c8d;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-size: 16px;
}

.bvo-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    padding: 15px 40px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(58, 123, 213, 0.3);
}

    .bvo-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
        transform: translateY(-100%);
        transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .bvo-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(58, 123, 213, 0.4);
    }

        .bvo-btn:hover::before {
            transform: translateY(0);
        }

.bvo-progress-container {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

    .bvo-progress-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
    }

.bvo-progress-title {
    text-align: center;
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.bvo-progress-tracker {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

    .bvo-progress-tracker::before {
        content: '';
        position: absolute;
        top: 25px;
        left: 0;
        height: 4px;
        width: 100%;
        background: #e0e0e0;
        z-index: 1;
        border-radius: 2px;
    }

    .bvo-progress-tracker::after {
        content: '';
        position: absolute;
        top: 25px;
        left: 0;
        height: 4px;
        width: 100%;
        background: linear-gradient(90deg, #3498db, #2ecc71);
        z-index: 2;
        border-radius: 2px;
        transition: width 1s ease;
    }

.bvo-progress-step {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 20%;
}

.bvo-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 4px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #bbb;
    font-size: 20px;
    transition: all 0.5s ease;
    position: relative;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
}

.bvo-progress-step.completed .bvo-step-icon {
    border-color: #3498db;
    background: #3498db;
    color: white;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.2);
}

.bvo-progress-step.active .bvo-step-icon {
    border-color: #2ecc71;
    background: #2ecc71;
    color: white;
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.bvo-step-label {
    font-size: 16px;
    color: #7f8c8d;
    margin-top: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.bvo-progress-step.active .bvo-step-label,
.bvo-progress-step.completed .bvo-step-label {
    color: #2c3e50;
    font-weight: 600;
}

.bvo-progress-detail {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border: 1px dashed #e0e0e0;
}

    .bvo-progress-detail h4 {
        color: #2ecc71;
        font-size: 20px;
        margin-top: 0;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .bvo-progress-detail p {
        margin: 0;
        line-height: 1.7;
        color: #555;
    }

.bvo-faq-container {
    margin-top: 30px;
    position: relative;
}

.bvo-faq-title {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

    .bvo-faq-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #3498db, #2ecc71);
        border-radius: 2px;
    }

.bvo-faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

    .bvo-faq-item:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

.bvo-faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
    position: relative;
    font-size: 17px;
}

    .bvo-faq-question::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: linear-gradient(180deg, #3498db, #2ecc71);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

.bvo-faq-item.active .bvo-faq-question::before,
.bvo-faq-item:hover .bvo-faq-question::before {
    opacity: 1;
}

.bvo-faq-question:after {
    content: '+';
    font-size: 24px;
    transition: all 0.3s ease;
    color: #3498db;
    font-weight: 300;
}

.bvo-faq-item.active .bvo-faq-question {
    background: #f8f9fa;
}

    .bvo-faq-item.active .bvo-faq-question:after {
        transform: rotate(45deg);
        color: #2ecc71;
    }

.bvo-faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    line-height: 1.7;
    color: #7f8c8d;
    font-size: 16px;
}

.bvo-faq-item.active .bvo-faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.bvo-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .bvo-fade-up.active {
        opacity: 1;
        transform: translateY(0);
    }

.bvo-stats-container {
    display: flex;
    justify-content: space-around;
    margin: 80px 0;
    flex-wrap: wrap;
}

.bvo-stat-item {
    text-align: center;
    padding: 20px;
    width: 200px;
}

.bvo-stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.bvo-stat-label {
    color: #7f8c8d;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .bvo-main-wrapper {
        flex-direction: column;
    }

    .bvo-features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bvo-features-container {
        grid-template-columns: 1fr;
    }

    .bvo-progress-step .bvo-step-label {
        font-size: 14px;
    }

    .bvo-step-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .bvo-progress-tracker::before,
    .bvo-progress-tracker::after {
        top: 20px;
    }

    .bvo-progress-detail {
        padding: 20px;
    }

    .bvo-faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .bvo-card-header {
        padding: 25px;
    }

    .bvo-card-content {
        padding: 25px;
    }

    .bvo-header h1 {
        font-size: 32px;
    }

    .bvo-cta-container {
        padding: 40px 25px;
    }
}

/*Hiring page*/


/*Hiring*/
.hiring-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hiring-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hiring-section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.hiring-section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.hiring-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.hiring-option-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    border: 1px solid #e9ecef;
}

    .hiring-option-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.hiring-card-image-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.hiring-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hiring-option-card:hover .hiring-card-image {
    transform: scale(1.05);
}

.hiring-card-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.hiring-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(74, 111, 165, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.hiring-card-title-container {
    flex: 1;
}

.hiring-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #2c3e50;
}

.hiring-card-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
}

.hiring-card-body {
    padding: 1.5rem;
}

.hiring-feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.hiring-feature-item {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #495057;
}

    .hiring-feature-item::before {
        content: "✓";
        color: #4a6fa5;
        font-weight: bold;
    }

.hiring-cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #4a6fa5;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
}

    .hiring-cta-button:hover {
        background-color: #3a5a85;
    }

/* Custom colors for each card - specific classes */
.hiring-card-contract .hiring-card-icon {
    background-color: rgba(74, 111, 165, 0.1);
    color: #4a6fa5;
}

.hiring-card-temp .hiring-card-icon {
    background-color: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.hiring-card-direct .hiring-card-icon {
    background-color: rgba(92, 128, 118, 0.1);
    color: #5c8076;
}

.hiring-card-augmentation .hiring-card-icon {
    background-color: rgba(155, 136, 105, 0.1);
    color: #9b8869;
}

.hiring-card-executive .hiring-card-icon {
    background-color: rgba(123, 104, 136, 0.1);
    color: #7b6888;
}

.hiring-card-remote .hiring-card-icon {
    background-color: rgba(150, 111, 102, 0.1);
    color: #966f66;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hiring-options-grid {
        grid-template-columns: 1fr;
    }

    .hiring-section-title {
        font-size: 2rem;
    }
}

/*Automation */

/* Custom CSS for Hiring Automation Page */
.recruit-auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
}

.recruit-auto-hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 10px;
    background: linear-gradient(170deg, #f8fafc, #eef2ff);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

    .recruit-auto-hero h1 {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 14px;
        background: linear-gradient(90deg, #2563eb, #4f46e5);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -0.02em;
    }

    .recruit-auto-hero p {
        font-size: 20px;
        line-height: 1.5;
        max-width: 750px;
        margin: 0 auto;
        color: #475569;
        font-weight: 400;
    }

.recruit-auto-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1e293b;
}

.recruit-auto-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.recruit-auto-feature-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

    .recruit-auto-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        border-color: rgba(226, 232, 240, 0.9);
    }

    .recruit-auto-feature-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #2563eb, #4f46e5);
    }

.recruit-auto-feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

    .recruit-auto-feature-icon svg {
        width: 32px;
        height: 32px;
        color: #4f46e5;
    }

.recruit-auto-feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.recruit-auto-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .recruit-auto-feature-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 16px;
        line-height: 1.5;
        font-size: 16px;
        color: #475569;
    }

        .recruit-auto-feature-list li:last-child {
            margin-bottom: 0;
        }

        .recruit-auto-feature-list li svg {
            width: 20px;
            height: 20px;
            margin-right: 14px;
            flex-shrink: 0;
            margin-top: 3px;
            color: #4f46e5;
        }

.recruit-auto-statistics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.recruit-auto-stat-item {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

    .recruit-auto-stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
        border-color: rgba(226, 232, 240, 0.9);
    }

.recruit-auto-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 12px;
    line-height: 1;
}

.recruit-auto-stat-label {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

.recruit-auto-dashboard {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 80px;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.recruit-auto-dashboard-header {
    background: #1e293b;
    padding: 14px 24px;
    display: flex;
    align-items: center;
}

.recruit-auto-dashboard-dots {
    display: flex;
    gap: 8px;
}

.recruit-auto-dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

    .recruit-auto-dashboard-dot:nth-child(1) {
        background: #ef4444;
    }

    .recruit-auto-dashboard-dot:nth-child(2) {
        background: #f59e0b;
    }

    .recruit-auto-dashboard-dot:nth-child(3) {
        background: #10b981;
    }

.recruit-auto-dashboard-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.recruit-auto-dashboard-row {
    display: flex;
    gap: 30px;
}

.recruit-auto-dashboard-card {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.recruit-auto-dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.recruit-auto-dashboard-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #334155;
}

.recruit-auto-dashboard-card-dropdown {
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    background: #f8fafc;
    transition: background 0.2s ease;
}

    .recruit-auto-dashboard-card-dropdown:hover {
        background: #f1f5f9;
    }

.recruit-auto-chart-container {
    height: 180px;
}

.recruit-auto-chart {
    width: 100%;
    height: 100%;
}

.recruit-auto-cta {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
    margin-bottom:4rem;
    margin-top:7rem !important;
}

    .recruit-auto-cta h2 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 24px;
        letter-spacing: -0.02em;
    }

    .recruit-auto-cta p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto 40px;
        opacity: 0.9;
        line-height: 1.7;
    }

.recruit-auto-cta-button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #4f46e5;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    font-size: 17px;
}

    .recruit-auto-cta-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
        background: #f8fafc;
    }

    .recruit-auto-cta-button svg {
        margin-left: 12px;
        transition: transform 0.3s ease;
    }

    .recruit-auto-cta-button:hover svg {
        transform: translateX(4px);
    }

/* Responsive adjustments */
@media (max-width: 1100px) {
    .recruit-auto-hero h1 {
        font-size: 42px;
    }

    .recruit-auto-statistics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .recruit-auto-features {
        grid-template-columns: 1fr;
    }

    .recruit-auto-dashboard-row {
        flex-direction: column;
    }

    .recruit-auto-hero h1 {
        font-size: 38px;
    }

    .recruit-auto-hero p {
        font-size: 18px;
    }

    .recruit-auto-section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .recruit-auto-container {
        padding: 40px 16px;
    }

    .recruit-auto-hero {
        padding: 30px 16px;
        margin-bottom: 60px;
    }

        .recruit-auto-hero h1 {
            font-size: 32px;
        }

    .recruit-auto-feature-card {
        padding: 30px;
    }

    .recruit-auto-cta {
        padding: 60px 24px;
    }

        .recruit-auto-cta h2 {
            font-size: 30px;
        }
}

@media (max-width: 640px) {
    .recruit-auto-statistics {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .recruit-auto-hero h1 {
        font-size: 28px;
    }

    .recruit-auto-hero p {
        font-size: 16px;
    }

    .recruit-auto-stat-number {
        font-size: 36px;
    }

    .recruit-auto-dashboard-content {
        padding: 20px;
    }

    .recruit-auto-dashboard-card {
        padding: 16px;
    }

    .recruit-auto-cta-button {
        padding: 14px 28px;
        font-size: 16px;
    }
}


/*Offer Management*/
:root {
    --ofmprimary-color: #4361ee;
    --ofmprimary-dark: #3a56d4;
    --ofmsecondary-color: #7209b7;
    --ofmaccent-color: #4cc9f0;
    --ofmdark-color: #2b2d42;
    --ofmlight-color: #f8f9fa;
    --ofmgray-color: #6c757d;
    --ofmsuccess-color: #38b000;
    --ofmwarning-color: #ffbe0b;
    --ofmgradient-primary: linear-gradient(135deg, var(--ofmprimary-color), var(--ofmaccent-color));
    --ofmbox-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --ofmbox-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
    --ofmtransition: all 0.3s ease;
}



.ofm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Enhanced Header Section */
.ofm-header {
    position: relative;
    background: var(--ofmgradient-primary);
    border-radius: 20px;
    color: white;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: var(--ofmbox-shadow);
}

    .ofm-header::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        z-index: 1;
    }

    .ofm-header::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        z-index: 1;
    }

.ofm-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.ofm-subtitle {
    font-size: 18px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Enhanced Features Grid */
.ofm-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.ofm-feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: var(--ofmbox-shadow);
    transition: var(--ofmtransition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .ofm-feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--ofmbox-shadow-hover);
    }

    .ofm-feature-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: var(--ofmgradient-primary);
        transition: var(--ofmtransition);
    }

    .ofm-feature-card:hover::after {
        width: 7px;
    }

.ofm-feature-icon {
    margin-bottom: 25px;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, #e6f2ff, #d1e8ff);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ofmtransition);
}

.ofm-feature-card:hover .ofm-feature-icon {
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
    transform: scale(1.05);
}

.ofm-feature-icon svg,
.ofm-feature-icon i {
    width: 32px;
    height: 32px;
    color: var(--ofmprimary-color);
}

.ofm-feature-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--ofmdark-color);
    margin-bottom: 15px;
}

.ofm-feature-description {
    font-size: 16px;
    color: var(--ofmgray-color);
    line-height: 1.5;
    flex-grow: 1;
}

/* Enhanced Workflow Section */
.ofm-workflow {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 80px;
    position: relative;
    box-shadow: var(--ofmbox-shadow);
}

.ofm-workflow-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--ofmdark-color);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

    .ofm-workflow-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--ofmgradient-primary);
        border-radius: 2px;
    }

.ofm-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 60px 0;
}

    .ofm-steps::before {
        content: '';
        position: absolute;
        top: 50px;
        left: 10%;
        right: 10%;
        height: 4px;
        background: #e6e8eb;
        z-index: 1;
        border-radius: 2px;
    }

.ofm-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    position: relative;
    z-index: 2;
}

.ofm-step-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--ofmgradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
    position: relative;
    transition: var(--ofmtransition);
}

.ofm-step:hover .ofm-step-number {
    transform: scale(1.08);
    box-shadow: 0 15px 25px rgba(67, 97, 238, 0.4);
}

.ofm-step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(67, 97, 238, 0.4);
    animation: spin 30s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.ofm-step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--ofmdark-color);
    text-align: center;
    line-height: 1.4;
    margin-top: 10px;
}

.ofm-step-description {
    font-size: 14px;
    color: var(--ofmgray-color);
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
    margin-top: 10px;
}

/* Enhanced CTA Section */
.ofm-cta {
    position: relative;
    background: var(--ofmgradient-primary);
    text-align: center;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: var(--ofmbox-shadow);
    color: white;
    overflow: hidden;
    margin-bottom: 80px;
}

    .ofm-cta::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
    }

    .ofm-cta::after {
        content: '';
        position: absolute;
        bottom: -70px;
        left: -70px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
    }

.ofm-cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.ofm-cta-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.ofm-button {
    display: inline-block;
    background: white;
    color: var(--ofmprimary-color);
    padding: 16px 40px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--ofmtransition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

    .ofm-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

/* Added Statistics Section */
.ofm-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0 80px;
}

.ofm-stat-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: var(--ofmtransition);
    box-shadow: var(--ofmbox-shadow);
}

    .ofm-stat-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--ofmbox-shadow-hover);
    }

.ofm-stat-number {
    font-size: 46px;
    font-weight: 700;
    color: var(--ofmprimary-color);
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--ofmprimary-color), var(--ofmaccent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ofm-stat-label {
    font-size: 16px;
    color: var(--ofmgray-color);
}

/* Added Testimonials Section */
.ofm-testimonials {
    margin: 80px 0;
}

.ofm-testimonials-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--ofmdark-color);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

    .ofm-testimonials-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--ofmgradient-primary);
        border-radius: 2px;
    }

.ofm-testimonial-carousel {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.ofm-testimonial-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.ofm-testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.ofm-testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--ofmbox-shadow);
    position: relative;
    z-index: 1;
}

    .ofm-testimonial-card::before {
        content: '\201C';
        position: absolute;
        top: 30px;
        left: 30px;
        font-size: 80px;
        color: rgba(67, 97, 238, 0.1);
        font-family: Georgia, serif;
        z-index: -1;
    }

.ofm-testimonial-text {
    font-size: 18px;
    color: var(--ofmdark-color);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.ofm-testimonial-author {
    display: flex;
    align-items: center;
}

.ofm-author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--ofmprimary-color), var(--ofmaccent-color));
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 24px;
}

.ofm-author-info {
    flex: 1;
}

.ofm-author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--ofmdark-color);
}

.ofm-author-role {
    font-size: 14px;
    color: var(--ofmgray-color);
    margin-top: 5px;
}

.ofm-carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.ofm-nav-button {
    background: white;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--ofmtransition);
}

    .ofm-nav-button:hover {
        background: var(--ofmprimary-color);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
    }

        .ofm-nav-button:hover svg {
            color: white;
        }

    .ofm-nav-button svg {
        width: 20px;
        height: 20px;
        color: var(--ofmprimary-color);
        transition: var(--ofmtransition);
    }

/* Added Dashboard Preview Section with Animation */
.ofm-dashboard-preview {
    margin-top: 80px;
    text-align: center;
    position: relative;
}

.ofm-dashboard-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--ofmdark-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

    .ofm-dashboard-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--ofmgradient-primary);
        border-radius: 2px;
    }

.ofm-dashboard-container {
    position: relative;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(45deg, #2d3748, #4a5568);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.ofm-dashboard-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--ofmtransition);
}

/* Feature Card Highlight Effect */
.ofm-highlight-card {
    position: relative;
    z-index: 3;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.25);
}

/* Added Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(67, 97, 238, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .ofm-features {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 900px) {
    .ofm-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

        .ofm-steps::before {
            display: none;
        }

    .ofm-step {
        width: 45%;
        margin-bottom: 30px;
    }

    .ofm-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ofm-container {
        padding: 40px 15px;
    }

    .ofm-header {
        padding: 40px 20px;
        margin-bottom: 50px;
    }

    .ofm-title {
        font-size: 32px;
    }

    .ofm-subtitle {
        font-size: 16px;
    }

    .ofm-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ofm-feature-card {
        padding: 30px 20px;
    }

    .ofm-workflow {
        padding: 40px 20px;
    }

    .ofm-step {
        width: 100%;
    }

    .ofm-step-number {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }

    .ofm-cta {
        padding: 40px 20px;
    }

    .ofm-stats {
        grid-template-columns: 1fr;
    }
}


.carousel-img { height: 600px; object-fit: cover; /* Ensures the image fills the area without distortion */
}

#leadershipImage:hover {
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
     transform: scale(1.1);
}
.tab-feature-images:hover{
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
     transform: scale(1.1);
}
.carousel-indicators [data-bs-target] {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background-color: #6c757d; /* Default dot color */
  border: none;
  margin: 0 6px;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-indicators .active {
  background-color: #0056b3; /* Active dot color */
  opacity: 1;
  transform: scale(1.2); /* Slightly enlarge active dot */
}
.resume-counter-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #007BFF;
  transition: transform 0.3s ease;
  text-align: center;
}
.resume-counter-number:hover {
  transform: scale(1.1);
}
.resume-counter-item {
  text-align: center;
  padding: 20px 0;
}


.ceipal-square-img {
     transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-radius: 8px;
      
}

.ceipal-square-img:hover {
     transform: scale(1.2);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);   
       
}




 .hover-glow {
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     }

 .hover-glow:hover {
    transform: scale(1.1);
     box-shadow: 0 10px 20px rgba(0, 123, 255, 0.5);
     }

 
.hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-radius: 8px;
 }

 .hover-effect:hover {
    transform: scale(1.05);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); 
     }




