
:root {
    --primary-color: #3BBDAD;
    --secondary-color: #2B8DFB;
    --accent-color: #FFCC23;
    --text-dark: #1A3449;
    --text-gray: #4D4D56;
    --light-bg: #D6F5EE;
    --footer-bg: #23433F;
    --gradient-bg: linear-gradient(237deg, #EAFEEAEA 13.85%, #AFEDEF 48.26%, #D6F5EE 86.15%);
}

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

.bg-white{
    background-color: #fff;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    /* width: 8px; */
    /* width: initial; */
}

::-webkit-scrollbar-track {
    background: transparent;
}

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

/* Navigation */
.navbar {
    /* background: rgba(255, 255, 255, 0.95); */
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

.navbar-brand img {
    height: 45px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--text-dark) !important;
    margin: 0 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}
        
.navbar-toggler{
    border: none!important;
}
.navbar-toggler:focus{
    border: none!important;
    outline: none!important;
    box-shadow: none!important;
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 35px;
    }
    .fixed-top{
        width: 100vw;
    }
}

/* Hero Section */
.hero-section {
    /* background: radial-gradient(circle at center, rgba(232,252,241,1) 0%, rgba(184,240,211,0.8) 14%, rgba(136,228,182,0.6) 29%, rgba(88,216,152,0.4) 43%, rgba(40,204,122,0.2) 58%, rgba(255,255,255,0) 100%); */
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #FFDD00, #46F883);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.3;
    top: -100px;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #ADFF44, #00C197);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.4;
    top: 50px;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 155px 0 0 0;
}

.jobseeker-hero.hero-content{
    padding: 0;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 56px;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .cta-button-div{
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .hero-content{
        min-height: 100vh;
        max-height: 100vh;
    }
    .hero-title {
        font-size: 36px;
        margin-top: 7rem;
        padding-inline: 1rem;
    }
    .hero-subtitle {
        padding-inline: 1rem;
    }
    .hero-section::before {
        display: none;
    }
    .hero-section::after {
        top: 110px;
        right: 0%;
        border-radius: 4916.2px;
        opacity: 0.34;
        background: linear-gradient(90deg, #FD0 0%, #46F883 100%);
        filter: blur(50px);
        width: 491.62px;
        height: 491.62px;
        flex-shrink: 0;
        animation: float 12s ease-in-out infinite reverse;
    }
}

.section-header {
    /* text-align: center; */
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

.section-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 23px;
    color: var(--text-gray);
    margin-top: 12px;
    font-weight: 400;
}

/* Floating badges */
.floating-badge {
    position: absolute;
    background: var(--secondary-color);
    color: white;
    padding: 3px 17px;
    border-radius: 15px;
    border: 2px solid white;
    box-shadow: 0 1px 9px rgba(0,0,0,0.25);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.8125rem;
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 5;
}

/* Floating Badge */

.floating-badge.blue::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -25px;
    width: 28px;
    height: 28px;
    background: url('../assets/cursor-blue.png');
    background-size: contain;
}

.floating-badge.yellow::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -25px;
    width: 28px;
    height: 28px;
    background: url('../assets/cursor-yellow.png');
    background-size: contain;
}

.floating-badge.green::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -25px;
    width: 28px;
    height: 28px;
    background: url('../assets/cursor-green.png');
    background-size: contain;
}

.floating-badge.yellow {
    background: var(--accent-color);
    color: var(--text-dark);
    animation-delay: 2s;
}

.floating-badge.green {
    background: #3bb4a5;
    color: white;
    animation-delay: 2s;
}

.floating-badge:nth-child(1) {
    top: 20%;
    left: 15%;
}

.floating-badge:nth-child(2) {
    top: 15%;
    right: 10%;
}

.floating-badge:nth-child(3) {
    top: 76%;
    right: 56%;
}

@keyframes floatBadge {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(2deg); 
    }
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    border-radius: 42px;
    padding: 12px 32px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #35A89A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 189, 173, 0.3);
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    border-radius: 43px;
    padding: 10px 32px;
    background: transparent;
    color: var(--primary-color);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 189, 173, 0.3);
}

/* Section backgrounds */
.tools-bg {
    background: linear-gradient(202deg, #ECFEEB 5.58%, #B0EDDB 37.86%, #B6EEDE 71.84%, #D4F4ED 94.42%);
}

/* .why-bg {
    background: linear-gradient(228deg, #EAFEEA 13.85%, #AFEDDB 48.26%, #D6F5EE 86.15%);
} */

.security-bg {
    background: var(--light-bg);
}

.cta-bg {
    background: var(--light-bg);
}

.footer-bg {
    background: var(--footer-bg);
}

/* Feature cards */

.feature-row{
    justify-content: space-between;
}

.feature-card {
    position: relative;
    border-radius: 39px;
    background: linear-gradient(197deg, #ECFEEB 5.58%, #B0EDDB 37.86%, #B6EEDE 71.84%, #D4F4ED 94.42%);
    border: 1px solid #F9F9F9;
    overflow: hidden;
    /* margin-bottom: 2rem; */
    background-size: cover;
    z-index: 0; /* Optional: define base stacking */
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 39px; /* Add this! */
    background: url('../assets/circle-pattern.svg') no-repeat center center;
    background-size: cover;
    /* opacity: 0.2; */
    pointer-events: none;
    z-index: 2; /* Make sure it sits above the background but below content */
}

.feature-card.seeker-img::after {
    content: "";
    position: absolute;
    bottom: 16px;
    right: 0;
    width: 84%;
    height: 74%;
    background: url('../assets/job-seeker-img.png') no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: 3;
}

.feature-card.recruiter-img::after {
    content: "";
    position: absolute;
    bottom: 16px;
    right: 0;
    width: 84%;
    height: 74%;
    background: url('../assets/job-recruiter-img.png') no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: 3;
}

.feature-image {
    height: 700px;
    background-size: cover;
    background-position: center;
    border-radius: 13px;
    margin: 12px;
    position: relative;
    z-index: 0;
}

/* Tool icons */
.tool-icon {
    width: 72px;
    height: 72px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(59, 189, 173, 0.42);
}

/* Feature list */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 15px 0;
    /* border-bottom: 1px solid #F0F0F0; */
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

.feature-list li a{
    display: flex;
    color: inherit;
    text-decoration: none;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-number {
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 2rem;
    font-size: 1rem;
}
.ai-icon{
    width: 35px;
}

@media (max-width: 1200px) and (min-width: 991px) {
    .feature-image{
        height: 550px!important;
    }
    .section-heading {
        font-size: 32px;
    }
    .feature-row .col-lg-5{
        width: 50%!important;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .feature-card {
        max-width: 81%;
    }
}

@media (max-width: 768px) {
    .section-title {
        gap: 2px;
        display: flex;
        flex-direction: column;
    }
    .section-heading {
        font-size: 26px;
        margin-top: 5px;
    }
    .tool-icon {
        width: 65px;
        height: 65px;
    }
    .ai-icon {
        width: 25px;
    }
    .feature-list li{
        padding: 8px 0;
    }
    .feature-number{
        margin-right: 1.5rem;
    }
}

@media (max-width: 769px) and (min-width: 450px) {
    .feature-card {
        max-width: 80%;
    }
    
}

/* Why cards */
.why-bg {
    position: relative;
    background: linear-gradient(228deg, #EAFEEA 13.85%, #AFEDDB 48.26%, #D6F5EE 86.15%);
    overflow: hidden;
}

.why-bg::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 210px;
    background: url('../assets/wave.png') no-repeat center;
    background-size: cover;
    opacity: 1; /* Change this to 1 for testing */
    transform: translateY(0); /* Make sure it's visible */
    transition: all 1s ease;
    pointer-events: none;
    z-index: 333;
}


.why-kudoswall-container{
    display: flex;
    flex-direction: column;
    gap: 112px;
    position: relative;
    z-index: 444;
}

.why-kudoswall {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    gap: 2rem; /* spacing between cards */
    max-width: 100%; /* allow full row width */
    margin-top: 2rem;
}

.why-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    height: 100%;
    /* max-width: 470px; */
    transition: all 0.3s ease;
}


.why-card-image {
    height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-color: #ecfefc;  */
}

.why-card-text {
    padding: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--text-gray);
    /* text-align: center; */
    line-height: 1.6;
}
.why-kudoswall .col-lg-5{
    padding: 0;
    margin: 0;
}

@media (max-width: 1024px) and (min-width: 768px) {
    .tool-pill{
        padding: 0.7rem 1.4rem!important;
    }
    .why-kudoswall{
        gap: 1rem;
    }
    .col-md-6 {
        padding: 0!important;
        margin: 0!important;
        width: 48%!important;
    }
    .why-card-image {
        height: 190px;
    }
    .why-card-text{
        font-size: 16px;
        padding: 16px
    }
}

@media (max-width: 768px) {
    .why-kudoswall {
        margin-left: inherit!important;
    }
    .why-kudoswall .col-sm-10{
        padding: 0;
        margin-top: 0;
    }
    .section-subtitle{
        margin-top: 0;
        margin-bottom: 0;
    }
    .why-card-text {
        font-size: 16px;
        line-height: 1.3;
    }
    .section-description{
        line-height: 1.5;
    }
}
        
/* Security section */
.security-section {
    padding: 4rem 0;
    background-color: #fff;
}


.section-subtitle.accent {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.security-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.security-icon-wrap .line {
    height: 1px;
    width: 25%;
    background-color: var(--primary-color);
}

.shield-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon img {
    width: 100%;
    height: auto;
}
          
.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
}
          

/* Coming next cards */

.wave-lines {
    position: absolute;
    top: 48%;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
    z-index: 10;
  }
  
  .wave-lines svg {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .coming-next-section .container{
    z-index: 11;
    position: relative;
}
  

.coming-next-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: radial-gradient(39.94% 48.49% at 52.81% 44.68%, rgba(175, 236, 205, 0.50) 0%, rgba(40, 204, 122, 0.09) 66.83%, rgba(207, 243, 226, 0.03) 100%);
  }
  
  /* Blurred background using ::before pseudo-element */
  .coming-next-section::before {
    content: "";
    position: absolute;
    top: 28%;
    left: 13%;
    border-radius: 4916.2px;
    opacity: 0.29;
    background: linear-gradient(90deg, #FD0 0%, #46F883 100%);
    filter: blur(50px);
    width: 333.351px;
    height: 333.351px;
    transform: rotate(-13.837deg);
    flex-shrink: 0;
    z-index: -1;
  }
  .coming-next-section::after {
    content: "";
    position: absolute;
    top: 28%;
    right: 13%;
    border-radius: 3326.7px;
    opacity: 0.4;
    background: linear-gradient(90deg, #ADFF44 0%, #00C197 100%);
    filter: blur(50px);
    width: 332.67px;
    height: 332.67px;
    transform: rotate(132.389deg);
    flex-shrink: 0;
    z-index: -1;
  }

  
.coming-cards {
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-next-card {
    width: 230px;
    height: 280px;
    border-radius: 24px;
    padding: 1.5rem;
    background: white;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.coming-next-card:hover {
  transform: scale(1.03);
}

.coming-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

.coming-next-card p {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}

@media (max-width: 768px) {
    .coming-next-section::before {
        display: none;
    }
    .coming-next-section::after {
        display: none;
    }
    .wave-lines {
        display: none;
    }
}
          
/* Color backgrounds */
.card-blue {
    background: conic-gradient(from 350deg at 50% 50%, rgba(255, 255, 255, 1) 0%, rgba(186, 212, 254, 1) 100%);;
}
.card-green {
    background: conic-gradient(from 248deg at 50% 50%,rgba(255,255,255,1) 0%,rgba(231,245,195,1) 100%);
}
.card-orange {
    background: conic-gradient(from 110deg at 50% 50%,rgba(255,255,255,1) 0%,rgba(253,208,181,1) 100%);
}
.card-mint {
    background: conic-gradient(from 290deg at 50% 50%,rgba(255,255,255,1) 0%,rgba(193,240,217,1) 100%);
}

/* Angled effects */
.rotate-left {
    transform: rotate(-8deg);
}
.rotate-small {
    transform: rotate(5deg);
}
.rotate-right {
    transform: rotate(11deg);
}
.rotate-small-right {
    transform: rotate(5deg);
}
/* .rotate-left {
  transform: rotate(-5deg);
}
.rotate-small {
  transform: rotate(-2deg);
}
.rotate-right {
  transform: rotate(4deg);
}
.rotate-small-right {
  transform: rotate(2deg);
} */
 
/* Accent color */
.accent {
    color: var(--primary-color);
}


/* Footer */

.footer-bg .row{
    justify-content: space-between;
}

.footer-bg .row .col-lg-3{
    width: fit-content;
}

.footer-brand img{
    height: 45px;
}

.footer-links a {
    color: #E9E9E9;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.social-links a {
    color: #E9E9E9;
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-bg .footer-bottom{
        flex-direction: column-reverse;
        gap: 10px;
    }
    .footer-bg .footer-bottom .footer-links a{
        text-decoration: underline;
    }
    .footer-brand{
        width: 100%;
    }
}   

/* Responsive adjustments */
@media (max-width: 768px) {
    /* .hero-title {
        font-size: 2.5rem;
    } */
    
    .hero-content {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .floating-badge {
        display: none;
        /* position: relative;
        display: inline-block;
        margin: 0.5rem;
        animation: none; */
    }

    .floating-badge:nth-child(1), 
    .floating-badge:nth-child(2) {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
    }

    .why-card-image {
        height: 200px;
    }

    .feature-image {
        height: 512px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Animation for sections on scroll */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animations */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Fade-in animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom spacing */
.section-padding {
    padding: 112px 0;

    z-index: 222;
    position: sticky;
}

.job-tools-container{
    display: flex;
    gap: 112px;
    flex-direction: column;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* Demo interface styling */
.demo-interface {
    background: url('../assets/templates-image.png') no-repeat center center;
    /* background-size: 100% 188.63%; */
    height: 422px;
    border-radius: 13px;
    background-size: cover;
}

@media (max-width: 1024px) {
    .demo-interface {
        background-size: contain;
    }
}
@media (max-width: 768px) {
    .demo-interface {
        background-size: contain;
        transform: scale3d(1.3, 1.3, 1.3);
    }
}
        
.explore-tools-bg {
    background: linear-gradient(237deg, #EAFEEAEA 13.85%, #AFEDEF 48.26%, #D6F5EE 86.15%);
}


.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tool-item {
    background: #F6F9FD;
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


/* Left-side image */
.tool-image {
    background: url('../assets/tool-illustration.png') no-repeat center center;
    background-size: contain;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    position: relative;
  }

/* Right-side pills */
.tool-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.tool-pill {
    background: white;
    border-radius: 15px;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color, #333);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

/* Chevron arrow */
.tool-pill span {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Divider lines */
.divider-line {
    width: 100px;
    height: 2px;
    background: var(--primary-color);
    margin: 2rem auto;
}

/* Vector decorations */
.vector-decoration {
    position: absolute;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1728 100"><path d="M0,50 Q432,0 864,50 T1728,50" stroke="%233BBDAD" stroke-width="3" fill="none"/></svg>') no-repeat center;
    background-size: cover;
}

@media (max-width: 768px) {
    .cta-bg .section-heading {
        padding-inline: 66px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .cta-bg .section-subtitle{
        font-size: 16px;
        line-height: 150%;
        margin-bottom: 20px;
        padding-inline: 40px;
    }
}


/* -------------------- */




        /* FAQ Section */
        .faq-item {
            border-bottom: 1px solid #e5e7eb;
        }

        .faq-button {
            width: 100%;
            background: none;
            border: none;
            padding: 2rem 1rem;
            text-align: left;
            transition: background-color 0.3s ease;
        }

        .faq-button:hover {
            background: #f9fafb;
        }

        .faq-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            min-width: 3rem;
            margin-right: 2rem;
        }

        .faq-question {
            font-size: 1.5rem;
            font-weight: 700;
            color: black;
        }

        .faq-toggle {
            min-width: 3rem;
            min-height: 3rem;
            border-radius: 50%;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: auto;
        }

        .faq-answer {
            padding-bottom: 2rem;
            padding-left: 6rem;
            color: #6b7280;
            font-size: 1.125rem;
            line-height: 1.7;
        }


        

/* Benefits Section */
.benefits-section {
    /* background: var(--bg-gradient); */
    background: linear-gradient(228deg, #EAFEEA 13.85%, #AFEDDB 48.26%, #D6F5EE 86.15%);
    padding: 7rem 0;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    letter-spacing: -0.89px;
    line-height: 1.23;
}

.benefit-card {
    background: white;
    border-radius: 31px;
    padding: 3rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 68px;
    height: 68px;
    background: #494949;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.benefit-icon img {
    width: 29px;
    height: 29px;
}

.benefit-title {
    color: #2E2E30;
    font-family: Poppins;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 36px */
    letter-spacing: -0.6px;
}

.benefit-description {
    color: #9C9DA4;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.8px; /* 132.222% */
}

.benefit-image {

    height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* position: absolute; */
    /* background-size: cover !important;
    background-position: center !important; */
    background-size: cover !important;
}


        /* Hero Section */
        .jobseeker-hero {
            min-height: 100vh;
            position: relative;
            /* overflow: hidden; */
            /* background: white; */
            display: flex;
            align-items: center;
        }

        .hero-bg-gradient-1 {
            position: absolute;
            top: 0;
            right: 0;
            width: 940px;
            height: 940px;
            background: linear-gradient(45deg, #ffdd00, #46f883);
            border-radius: 50%;
            filter: blur(95px);
            opacity: 0.29;
            animation: float 6s ease-in-out infinite;
        }

        .hero-bg-gradient-2 {
            position: absolute;
            top: 100px;
            left: -400px;
            width: 768px;
            height: 768px;
            background: linear-gradient(45deg, #adff44, #00c197);
            border-radius: 50%;
            filter: blur(95px);
            opacity: 0.33;
        }

    /* .resume-showcase img {
        height: 60vh;
    } */
    .resume-showcase img {
        width: 100%;
        height: auto;
    }

    .jobseeker-hero .row{
        height: 66vh;
    }
    .jobseeker-hero .row .col-lg-6:nth-child(2){
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }


/* Floating Badge */

.floating-badge.blue-02::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -25px;
    width: 28px;
    height: 28px;
    background: url('../assets/cursor-blue.png');
    background-size: contain;
}

.floating-badge.yellow-02::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -25px;
    width: 28px;
    height: 28px;
    background: url('../assets/cursor-yellow.png');
    background-size: contain;
}

.floating-badge.yellow-02 {
    background: var(--accent-color);
    color: var(--text-dark);
    width: fit-content;
    animation-delay: 2s;
    top: 20%;
    right: 20%;
}

.floating-badge.blue-02 {
    background: var(--secondary-color);
    color: white;
    width: fit-content;
    animation-delay: 2s;
    top: 60%;
    left: 15%;
}

/* 
.floating-badge:nth-child(1) {
    top: 20%;
    left: 15%;
}

.floating-badge:nth-child(2) {
    top: 15%;
    right: 10%;
} */



@media (max-width: 992px) {
    .jobseeker-hero{
        overflow: hidden;
    }
    .hero-bg-gradient-2{
        display: none;
    }
    .jobseeker-hero-col {
        text-align: center;
    }
    .resume-showcase{
        text-align: center;
    }

    .resume-showcase img {
        margin: auto;
        /* height: auto; */
        height: 422px;
        width: auto;
        max-height: fit-content;
        max-width: 90vw;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }
    .faq-number{
        font-size: 1.5rem;
        margin-right: 0;
    }
    .faq-question{
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    .faq-answer{
        font-size: 1rem;
        padding-left: 4rem;
    }
    .faq-toggle {
        min-width: 2.5rem;
        min-height: 2.5rem;
    }
    .benefit-card{
        padding: 2rem;
    }
    .benefit-title{
        font-size: 18px;
    }
    .benefit-description{
        font-size: 14px;
    }
}

/* -------------------------- */


        /* Who It's For Section */
        .who-for-section {
            background: linear-gradient(207.376deg, rgb(234, 254, 234) 2.87%, rgb(176, 237, 219) 48.12%, rgb(213, 244, 237) 97.13%);
        }

        .section-title {
            font-size: 2.612rem;
            font-weight: 600;
            margin-bottom: 2.5rem;
            font-family: 'Inter', sans-serif;
            color: #333;
        }

        .who-for-card {
            background: #2f857b;
            border-radius: 25px;
            padding: 2rem;
            color: white;
            height: 296px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .who-for-card h3 {
            font-size: 1.375rem;
            font-weight: 500;
            margin-bottom: 0;
            font-family: 'Inter', sans-serif;
        }

        .who-for-card p {
            font-size: 0.875rem;
            line-height: 1.38;
            margin-bottom: 0;
            font-family: 'Inter', sans-serif;
        }

        .who-for-card.large-card {
            background: #3bbdad;
        }
