/* ===== RESOURCES SECTION ===== */
.resources-section {
    /*max-width: 1200px;*/
    margin: 0 auto;
    width:100%;
    padding-left:0px;
    padding-right:0px;
    padding-bottom:0px;
}

.resources-header {
    padding: 50px 20px;
    text-align: center;
}

.resources-title {
    margin: 0 auto 30px;
    max-width: 1200px;
}

.travel-nursing-text {
    background: linear-gradient(90deg, 
        #25408E 0%, 
        #21ADE4 30%,
        #D8188D 60%,
        #D8188D 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: resources-gradient-sweep 4s ease-in-out infinite alternate;
}

.allied-health-text {
    background: linear-gradient(90deg,
        #D8188D 0%,
        #CE9336 40%,
        #FF6B35 70%,
        #FF8C42 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: resources-gradient-sweep 4s ease-in-out infinite alternate;
}

.resources-insights-text {
    background: linear-gradient(90deg, 
        #25408E 0%, 
        #21ADE4 30%,
        #D8188D 60%,
        #CE9336 80%,
        #FF6B35 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: resources-gradient-sweep 4s ease-in-out infinite alternate;
}

@keyframes resources-gradient-sweep {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Full-width banner image */
.resources-hero-image-wrapper {
    width: 100%;
    /*margin-left: calc(50% - 50vw);*/
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

.resources-hero-image {
    width: 100%;
    height: 400px;
    display: block;
    margin: 0;
    object-fit: cover;
    object-position: center;
}
.resources-hero-image-wrapper, img.resources-hero-image {
    position: relative;
}
.bannertop-text{
    position: absolute;
    right:40px;
    bottom:20px;
}
.bannertop-text span{
    color:#fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}
/* Content after image */
.resources-content-section {
    padding: 50px 20px 88px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Description Text */
.resources-description-container {
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
}

.resources-description-text {
    margin: 0 auto;
    max-width: 900px;
    color: #555;
    padding: 0 !important;
}

/* Navigation Links */
.resources-nav-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.resources-nav-link {
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    font-size: 24px;
}

.resources-nav-link:hover {
    color: #21ADE4;
    text-decoration: none;
}

.resources-nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #21ADE4 0%, #D8188D 100%);
    transition: width 0.3s ease;
}

.resources-nav-link:hover:after {
    width: 100%;
}

.resources-nav-link:visited {
    color: #25408E;
}


/* ===== GETTING STARTED FAQ SECTION ===== */
.gs-faq-section {
    padding: 40px 20px 88px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gs-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.gs-faq-title {
    margin: 0;
    background: linear-gradient(45deg,
        #25408E 0%,
        #25408E 30%,
        #21ADE4 40%,
        #CE9336 50%,
        #CE9336 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gs-faq-gradient-sweep 4s ease-in-out infinite alternate;
}

@keyframes gs-faq-gradient-sweep {
    0% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.gs-faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Headings */
.gs-faq-section-heading {
    font-size: 24px;
    font-weight: 900;
    color: #242021;
    text-align: center;
    margin: 40px 0 30px;
}

.gs-faq-section-heading:first-of-type {
    margin-top: 0;
}

.gs-faq-item {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(37, 64, 142, 0.29);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gs-faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 64, 142, 0.50);
}

.gs-faq-question {
    background: #ffffff;
    padding: 25px 60px 25px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: background 0.3s ease;
}

.gs-faq-item.active .gs-faq-question {
    background: linear-gradient(to bottom, #25408E, #21ADE4);
}

.gs-faq-item.active .gs-faq-question-text {
    color: #fff;
}

.gs-faq-question-text {
    margin: 0;
}

.gs-faq-icon {
    position: absolute;
    right: 25px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gs-faq-icon-img {
    min-width: 30px;
    height: 30px;
}

.gs-faq-arrow-down {
    display: block;
}

.gs-faq-arrow-up {
    display: none;
    position: absolute;
}

.gs-faq-item.active .gs-faq-arrow-down {
    display: none;
}

.gs-faq-item.active .gs-faq-arrow-up {
    display: block;
}

.gs-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #ffffff;
}

.gs-faq-answer-content {
    padding: 10px 10px 10px 25px;
}

.gs-faq-answer-text {
    margin: 10px 0px;
    padding: 0 !important;
    color: #555;
    max-width: none;
}

.gs-faq-item.active .gs-faq-answer {
    max-height: 1000px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    width: 100%;
    /*margin-left: calc(50% - 50vw);*/
    margin-top: 0;
    margin-bottom: 0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-image: url('https://travelnursesinc.com/wp-content/uploads/2025/09/Rectangle-25-scaled.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
}

.cta-heading {
    font-family: "Figtree";
    color: white;
    font-size: 64px;
    font-weight: 900;
    margin: 0 0 30px 0;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #25408E !important;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Figtree";
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover,
.cta-button:focus {
    color: #fff;
    background: #21ade4;
    border: 2px solid #21ade4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    -webkit-mask-image: linear-gradient(-75deg, rgba(0, 0, 0, .6) 30%, #000 50%, rgba(0, 0, 0, .6) 70%);
    -webkit-mask-size: 200%;
    -webkit-animation: cta-shine 2s infinite;
    animation: cta-shine 2s infinite;
}

@keyframes cta-shine {
    from {
        -webkit-mask-position: 150%;
    }
    to {
        -webkit-mask-position: -50%;
    }
}

.cta-mobile-break {
    display: none;
}


/*======= BLOG-NEW-DESIGN =====*/
.home-blog-sec {padding: 30px 0 120px;}
/*.home-blog-sec .home-blog-grid {padding-top: 40px;}*/
.home-blog-sec .sub-title {padding-bottom: 10px;}
.home-blog-grid .blog-right .blog-block {padding: 0;}
.home-blog-grid .blog-left figure img {width: 100%; border-radius: 10px; height: 365px; object-fit: cover; -webkit-transform: scale(1); transform: scale(1); -webkit-transition: .3s ease-in-out; transition: .3s ease-in-out;}
.home-blog-grid .blog-left figure:hover  img {-webkit-transform: scale(1.3); transform: scale(1.1);}
.home-blog-grid .blog-left h2 a {
    font-family: "Figtree", sans-serif; 
    font-size: 36px;
    font-weight: 900; 
    line-height: 120%; 
    color: #242021;
    margin: 0; 
    padding-bottom: 10px;
}
.home-blog-grid .blog-left .date {
    color: #8a8a8a; font-size: 16px; font-weight: 500;text-transform: uppercase;
}
.home-blog-grid .blog-left h3 a {color: #393939;}
.home-blog-grid .blog-left .blog-left-in figure {margin-bottom: 20px; overflow: hidden; border-radius: 10px;}
.home-blog-grid .blog-left { display: table; }
.home-blog-grid .blog-right { display: table; }
/*.home-blog-grid .blog-right .blog-right-in {display: table-cell;}*/
.home-blog-grid .blog-left .blog-left-in { display: table-cell; }
.home-blog-grid .blog-right .blog-block .blog-right-con {padding-left: 25px;}
.home-blog-grid .blog-right .blog-block li .blog-left-img {width: 160px; overflow: hidden; border-radius: 10px;}
.home-blog-grid .blog-right .blog-block li .blog-left-img img { width: 160px; height: 110px; border-radius: 10px; -webkit-transform: scale(1); transform: scale(1); -webkit-transition: .3s ease-in-out; transition: .3s ease-in-out; object-fit: cover; object-position: center;}
.home-blog-grid .blog-right .blog-block li .blog-left-img:hover  img {-webkit-transform: scale(1.3); transform: scale(1.1);}
.home-blog-grid .blog-right .blog-block .blog-right-con h3 a{ 
    margin: 0; line-height: 25px; padding-bottom:8px; 
    font-family: "Figtree", sans-serif; font-size: 36px;
font-weight: 900; line-height: 120%; color: #242021

}
.home-blog-grid .blog-right .blog-block .blog-right-con h3 a { color: #393939; font-size: 20px; }
.home-blog-grid .blog-right .blog-block .blog-right-con .date { color: #8a8a8a; font-size: 16px; font-weight: 500; text-transform: uppercase;}
.home-blog-grid .blog-right .blog-block li { padding-bottom: 25px; }
.home-blog-grid .blog-right .blog-block li:last-child { padding-bottom: 0; }
.home-blog-grid .blog-left h3 a:hover {color: #21ace3; transition: all 0.3s ease-in-out;}
.home-blog-grid .blog-right .blog-block .blog-right-con h3 a:hover {color: #21ace3; transition: all 0.3s ease-in-out;}

.default-main-bttn .button {
    display: inline-block;
    background: #25408f !important;
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Figtree";
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.default-main-bttn .button:hover, .default-main-bttn .button:focus{
    color: #fff;
    background: #21ade4 !important;
    border: 2px solid #21ade4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    -webkit-mask-image: linear-gradient(-75deg, rgba(0, 0, 0, .6) 30%, #000 50%, rgba(0, 0, 0, .6) 70%);
    -webkit-mask-size: 200%;
    -webkit-animation: cta-shine 2s infinite;
    animation: cta-shine 2s infinite;
}
.featured-destinations-description {
    max-width: 800px;
    margin: 20px auto 50px;
    color: #666;
    padding: 0;
}
.featured-destinations-word-animated {
    background: linear-gradient(45deg,
        #25408E 0%,
        #25408E 30%,
        #21ADE4 40%,
        #CE9336 50%,
        #CE9336 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: featured-destinations-gradient-sweep 4s ease-in-out infinite alternate;
}
/* Blog CSS Ends */

/*==== RESPONSIVE =====*/
/*1279 to 1152 */
@media (max-width: 1279px) {

    /*=== NEW-BLOG ===*/
    .home-blog-grid .blog-left h3 {font-size: 22px;}
    .home-blog-grid .blog-right .blog-block .blog-right-con h3 a {font-size: 18px;}

}

/*899 to 800 */
@media (max-width: 899px) {

    /*=== NEW-BLOG ===*/
    .home-blog-sec {padding-top: 10px;}
    .home-blog-grid .blog-right .blog-block li .blog-left-img {width: 130px;}
    .home-blog-grid .blog-right .blog-block .blog-right-con h3 {line-height: 20px; padding-bottom: 8px;}
    .home-blog-grid .blog-right .blog-block .blog-right-con h3 a {font-size: 16px;}
    .home-blog-grid .blog-right .blog-block .blog-right-con .date {font-size: 14px;}
    .home-blog-grid .blog-left h3 {font-size: 18px;}
    .home-blog-grid .blog-left h3 {font-size: 18px;}
}

/*767 to 736 */
@media (max-width: 767px) {
    /*=== NEW-BLOG ===*/
    .home-blog-sec {padding: 0px 0 50px;}
    .home-blog-grid .blog-left {max-width: 100%; flex: 100%; padding:0 0 50px;}
    .home-blog-grid .blog-right {max-width: 100%; flex: 100%; padding: 0;}
    .home-blog-grid .blog-right .default-main-bttn {text-align: center; padding-top: 30px;}
    .home-blog-grid .blog-left figure img {width: 100%; height: auto;}

}

/*567 to 480  */
@media (max-width : 567px) {
    /*=== NEW-BLOG ===*/
    .home-blog-grid .blog-right .blog-block li .blog-left-img {width: 130px;}
    .home-blog-grid .blog-right .blog-block .blog-right-con h3 {line-height: 19px; padding-bottom: 8px;}
    .home-blog-grid .blog-right .blog-block .blog-right-con {padding-left: 15px;}
    .home-blog-grid .blog-right .blog-block .blog-right-con h3 a {font-size: 16px;}

}

/* Tablet Responsive */
@media (max-width: 768px) {
    /* ===== RESOURCES SECTION ===== */
    .resources-header {
        padding: 60px 15px 40px;
    }
    .resources-content-section {
        padding: 40px 15px 40px;
    }
    .resources-hero-image {
        height: 300px;
    }
    .resources-description-text {
        font-size: 16px;
    }
    .resources-nav-container {
        gap: 40px;
    }
    .resources-nav-link {
        font-size: 24px;
    }
    /* ===== RESOURCES SECTION ===== */

    /* ===== GETTING STARTED FAQ SECTION ===== */
    .gs-faq-section {
        padding: 40px 15px;
    }
    .gs-faq-section-heading {
        font-size: 21px;
        margin: 35px 0 25px;
    }
    .gs-faq-question {
        padding: 20px 50px 20px 20px;
    }
    .gs-faq-answer-content {
        padding: 10px 10px 10px 25px;
    }
    .gs-faq-icon {
        right: 20px;
    }
    /* ===== GETTING STARTED FAQ SECTION ===== */

    /* ===== CTA SECTION ===== */
    .cta-section {
        min-height: 250px;
        padding: 60px 20px;
    }
    .cta-heading {
        font-size: 40px;
    }
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    /* ===== CTA SECTION ===== */
}

/* Mobile Responsive */
@media (max-width: 480px) {
    /* ===== RESOURCES SECTION ===== */
    .resources-header {
        padding: 60px 15px 30px;
    }
    .resources-content-section {
        padding: 30px 15px 40px;
    }
    .resources-title {
        font-size: 38px;
    }
    .resources-hero-image {
        height: 200px;
    }
    .resources-description-container {
        margin-bottom: 40px;
    }
    .resources-description-text {
        font-size: 15px;
    }
    .resources-nav-container {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    .resources-nav-link {
        font-size: 20px;
    }
    /* ===== RESOURCES SECTION ===== */

    /* ===== GETTING STARTED FAQ SECTION ===== */
    .gs-faq-section-heading {
        font-size: 20px;
        margin: 30px 0 20px;
    }
    .gs-faq-question {
        padding: 18px 50px 18px 18px;
    }
    .gs-faq-answer-content {
        padding: 10px 10px 10px 25px;
    }
    .gs-faq-icon {
        right: 18px;
        width: 26px;
        height: 26px;
    }
    /* ===== GETTING STARTED FAQ SECTION ===== */

    /* ===== CTA SECTION ===== */
    .cta-section {
        min-height: 200px;
        padding: 50px 15px;
    }
    .cta-heading {
        font-size: 32px;
        line-height: 1 !important;
    }
    .cta-mobile-break {
        display: block;
    }
    .cta-button {
        padding: 12px 25px;
    }

    /* ===== CTA SECTION ===== */
    .bannertop-text span{
       font-size: 14px;
    }
    .bannertop-text {
        right: 20px;
        bottom: 10px;
    }
    .bannertop-text img{
        height: 25px;
        width: 25px;
    }
}