/**
 * TBG Home Landing Widget Styles
 */

.tbg-home-landing {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.tbg-home-landing__wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 600px;
    position: relative;
}

.tbg-home-landing__background-image {
    position: absolute;
    top: 16%;
    width: 85%;
    left: -15%;
}

/* Content Section (Left Side - Blue) */
.tbg-home-landing__content {
    background-color: var(--tbg-primary)!important;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}


.tbg-home-landing__text-content {
    position: relative;
    z-index: 2;
}

.tbg-home-landing__headline {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 30px 0;
}

.tbg-home-landing__content-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 500!important;
    font-size: 20px;
    line-height: 1.6;
    color: #FFFFFF;
    margin: 0;
}


/* Image Section (Right Side) */
.tbg-home-landing__image {
    position: relative;
    overflow: hidden;
}

.tbg-home-landing__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 1600px) {
}


@media (max-width: 1400px) {
    .tbg-home-landing__background-image {
        top: 30%;
    }
}

@media (max-width: 1200px) {
    .tbg-home-landing__background-image {
        top: 45%;
    }

    .tbg-home-landing__headline {
        font-size: 56px;
    }

    .tbg-home-landing__content {
        padding: 60px 40px;
    }
}

@media (max-width: 992px) {
    .tbg-home-landing__wrapper {
        grid-template-columns: 1fr;
    }

    .tbg-home-landing__content {
        min-height: 500px;
    }

    .tbg-home-landing__image {
        max-height: 400px;
    }

    .tbg-home-landing__background-image {
        top: 50%;
        left: 0;
        transform: translate(-60%, -50%);
    }
}

@media (max-width: 768px) {
    .tbg-home-landing__headline {
        font-size: 42px;
    }

    .tbg-home-landing__content-text {
        font-size: 18px;
    }

    .tbg-home-landing__content {
        padding: 40px 30px;
    }

    
    .tbg-home-landing__background-image {
        top: 50%;
        left: 0;
        transform: translate(-55%, -50%);
    }
}

@media (max-width: 480px) {
    .tbg-home-landing__headline {
        font-size: 32px;
    }

    .tbg-home-landing__content-text {
        font-size: 16px;
    }

    .tbg-home-landing__content {
        padding: 30px 20px;
        min-height: 400px;
    }

    .tbg-home-landing__image {
        min-height: 300px;
    }
}

/**
 * TBG Text with Socials and Gray Background Widget Styles
 */

.tbg-text-socials-gray {
    background-color: var(--tbg-light-beige)!important;
    border-radius: 20px;
    padding: 60px 60px;
    position: relative;
}

.tbg-text-socials-gray__wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Social Icons Section */
.tbg-text-socials-gray__social {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

.tbg-text-socials-gray__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.tbg-text-socials-gray__social-link:hover {
    transform: scale(1.1);
}

.tbg-text-socials-gray__social-icon {
    font-size: 32px;
    color: var(--tbg-primary)!important;
}

/* Content Section */
.tbg-text-socials-gray__content {
    flex: 1;
}

.tbg-text-socials-gray__subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--tbg-primary)!important;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.tbg-text-socials-gray__headline {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 1.2;
    color: var(--tbg-primary)!important;
    margin: 0 0 30px 0;
}

.tbg-text-socials-gray__content-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
    margin: 0;
}

.tbg-text-socials-gray__content-text p {
    margin: 0 0 15px 0;
}

.tbg-text-socials-gray__content-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tbg-text-socials-gray {
        padding: 50px 60px;
    }

    .tbg-text-socials-gray__headline {
        font-size: 48px;
    }

    .tbg-text-socials-gray__content-text {
        font-size: 17px;
    }
}

@media (max-width: 992px) {
    .tbg-text-socials-gray {
        padding: 40px 50px;
    }

    .tbg-text-socials-gray__headline {
        font-size: 42px;
    }

    .tbg-text-socials-gray__content-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .tbg-text-socials-gray {
        padding: 40px 30px;
    }

    .tbg-text-socials-gray__wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .tbg-text-socials-gray__social {
        flex-direction: row;
        gap: 20px;
    }

    .tbg-text-socials-gray__headline {
        font-size: 36px;
    }

    .tbg-text-socials-gray__subtitle {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .tbg-text-socials-gray {
        padding: 30px 20px;
    }

    .tbg-text-socials-gray__headline {
        font-size: 28px;
    }

    .tbg-text-socials-gray__content-text {
        font-size: 15px;
    }

    .tbg-text-socials-gray__social-icon {
        font-size: 28px;
    }
}

/**
 * TBG Three Boxes Widget Styles
 */

.tbg-three-boxes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.tbg-box-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tbg-box {
    background-color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: margin-top 0.3s ease, box-shadow 0.3s ease;
}


.tbg-box.active {
    margin-top: -5px;
}

.tbg-box:hover {
    margin-top: -5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tbg-box-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.tbg-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tbg-box-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--tbg-dark-pink);
    color: var(--tbg-accent);
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    padding: 10px 30px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 2;
}

.tbg-box-button:hover {
    background-color: #D89AC4;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 5px 15px rgba(232, 180, 217, 0.4);
}

.tbg-box-expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    background-color: #FFFFFF;
    width: 100%;
    position: absolute;
    z-index: 2;
    left: 0;
    border-radius: 20px;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-top: -10px;
}

.tbg-box-expandable-content.active {
    max-height: 2000px;
}

.tbg-box .tbg-box-expandable-content[data-content-box="1"] {
    border-top-left-radius: 0;
}

.tbg-box .tbg-box-expandable-content[data-content-box="3"] {
    border-top-right-radius: 0;
}

.tbg-box-expandable-inner {
    padding: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    position: relative;
    font-weight: 500;
}


.tbg-box-expandable-inner p:last-child {
    margin-bottom: 0;
}

.tbg-box-content {
    padding: 0;
    text-align: center;
}

.tbg-box-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: #000000;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tbg-three-boxes-container {
        gap: 20px;
    }

    .tbg-box-wrapper {
        gap: 15px;
    }

    .tbg-box-image {
        height: 450px;
    }

    .tbg-box-title {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .tbg-three-boxes-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tbg-box-wrapper {
        gap: 20px;
    }

    .tbg-box-image {
        height: 400px;
    }

    .tbg-box-expandable-content {
        position: relative;
        border-radius: 0;
        box-shadow: none;
    }

    .tbg-box-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .tbg-box-wrapper {
        gap: 15px;
    }

    .tbg-box-image {
        height: 350px;
    }

    .tbg-box-button {
        font-size: 12px;
        padding: 12px 30px;
        bottom: 20px;
    }

    .tbg-box-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tbg-box-wrapper {
        gap: 12px;
    }

    .tbg-box-image {
        height: 300px;
    }

    .tbg-box-button {
        font-size: 11px;
        padding: 10px 25px;
        bottom: 15px;
    }

    .tbg-box-title {
        font-size: 18px;
    }
}

/**
 * TBG Network Widget Styles
 */

.tbg-network-container {
    width: 100%;
    padding: 60px 0;
}

.tbg-network-header {
    text-align: center;
    margin-bottom: 60px;
}

.tbg-network-top-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--tbg-primary)!important;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.tbg-network-main-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 1.2;
    color: var(--tbg-primary)!important;
    margin: 0;
}

.tbg-network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.tbg-network-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tbg-network-member-image-wrapper {
    width: 280px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.tbg-network-member-image {
    
    transform: rotate(50deg);
}

.tbg-network-member-name {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
    margin: 0 0 15px 0;
    color: var(--tbg-black-blue);
}

.tbg-network-member-description {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: var(--tbg-black-blue);
    max-width: 280px;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tbg-network-main-title {
        font-size: 48px;
    }

    .tbg-network-grid {
        gap: 35px;
    }

    .tbg-network-member-image-wrapper {
        width: 240px;
    }

    .tbg-network-member-name {
        font-size: 20px;
    }

    .tbg-network-member-description {
        font-size: 15px;
        max-width: 240px;
    }
}

@media (max-width: 992px) {
    .tbg-network-container {
        padding: 50px 0;
    }

    .tbg-network-header {
        margin-bottom: 50px;
    }

    .tbg-network-main-title {
        font-size: 42px;
    }

    .tbg-network-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .tbg-network-member-image-wrapper {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .tbg-network-container {
        padding: 40px 0;
    }

    .tbg-network-header {
        margin-bottom: 40px;
    }

    .tbg-network-main-title {
        font-size: 36px;
    }

    .tbg-network-top-title {
        font-size: 12px;
    }

    .tbg-network-grid {
        gap: 35px;
    }

    .tbg-network-member-image-wrapper {
        width: 200px;
    }

    .tbg-network-member-name {
        font-size: 18px;
    }

    .tbg-network-member-description {
        font-size: 14px;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .tbg-network-container {
        padding: 30px 0;
    }

    .tbg-network-header {
        margin-bottom: 30px;
    }

    .tbg-network-main-title {
        font-size: 28px;
    }

    .tbg-network-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tbg-network-member-image-wrapper {
        width: 220px;
    }

    .tbg-network-member-name {
        font-size: 20px;
    }

    .tbg-network-member-description {
        font-size: 15px;
        max-width: 280px;
    }
}

/**
 * TBG Testimonials Widget Styles
 */

.tbg-testimonials {
    background-color: var(--tbg-primary)!important;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.tbg-testimonials__container {
    margin: 0 auto;
    padding: 0;
}

.tbg-testimonials__header {
    text-align: center;
    margin-bottom: 60px;
}

.tbg-testimonials__subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.tbg-testimonials__title {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
}

.tbg-testimonials__slider-wrapper {
    position: relative;
    width: 100%;
}

.tbg-testimonials__swiper {
    width: 100%;
    padding: 40px 0 80px;
}

.tbg-testimonials__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.tbg-testimonials__content {
    margin: 0 auto;
    text-align: center;
}

.tbg-testimonials__text {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0 0 40px 0;
}

.tbg-testimonials__author {
    font-family: 'Raleway', sans-serif;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    opacity: 0.9;
}

/* Navigation */
.tbg-testimonials__navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.tbg-testimonials__arrow {
    cursor: pointer;
    color: #FFFFFF;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.tbg-testimonials__arrow:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.tbg-testimonials__arrow svg {
    width: 40px;
    height: 40px;
    color: #ffc1b4;
}

.tbg-testimonials__slider-wrapper .swiper-pagination-bullet {
    background-color: #cd9c87!important;
}

.tbg-testimonials__slider-wrapper .swiper-pagination-bullet-active {
    background-color: #ffff!important;
    height: 10px!important;
    width: 10px!important;
}

/* Swiper Pagination */
.tbg-testimonials .swiper-pagination {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: auto!important;
    margin-top: 17px;
}

.tbg-testimonials .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    opacity: 0.5;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0;
}

.tbg-testimonials .swiper-pagination-bullet-active {
    opacity: 1;
    width: 12px;
    height: 12px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tbg-testimonials {
        padding: 70px 0;
    }

    .tbg-testimonials__container {
        padding: 0;
    }

    .tbg-testimonials__title {
        font-size: 48px;
    }

    .tbg-testimonials__text {
        font-size: 24px;
    }

    .tbg-testimonials__content {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .tbg-testimonials {
        padding: 60px 0;
    }

    .tbg-testimonials__header {
        margin-bottom: 50px;
    }

    .tbg-testimonials__title {
        font-size: 42px;
    }

    .tbg-testimonials__text {
        font-size: 22px;
    }

    .tbg-testimonials__slide {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .tbg-testimonials {
        padding: 50px 0;
    }

    .tbg-testimonials__container {
        padding: 0 20px;
    }

    .tbg-testimonials__header {
        margin-bottom: 40px;
    }

    .tbg-testimonials__subtitle {
        font-size: 12px;
    }

    .tbg-testimonials__title {
        font-size: 36px;
    }

    .tbg-testimonials__text {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .tbg-testimonials__content {
        padding: 0 20px;
    }

    .tbg-testimonials__author {
        font-size: 14px;
    }

    .tbg-testimonials__navigation {
        gap: 20px;
    }

    .tbg-testimonials__arrow {
        width: 36px;
        height: 36px;
    }

    .tbg-testimonials__arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .tbg-testimonials {
        padding: 40px 0;
    }

    .tbg-testimonials__header {
        margin-bottom: 30px;
    }

    .tbg-testimonials__title {
        font-size: 28px;
    }

    .tbg-testimonials__text {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .tbg-testimonials__slide {
        min-height: 200px;
    }

    .tbg-testimonials__content {
        padding: 0 10px;
    }

    .tbg-testimonials__swiper {
        padding: 30px 30px 70px 30px;
    }

    .tbg-testimonials__navigation {
        gap: 15px;
    }

    .tbg-testimonials .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .tbg-testimonials .swiper-pagination-bullet-active {
        width: 10px;
        height: 10px;
    }
}

/**
 * TBG About Widget Styles
 */

.tbg-about {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 60px 0;
    width: 100%;
}

.tbg-about__container {
    max-width: 1400px;
    margin: 0 auto;
}

.tbg-about__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

/* Left Column: Header & Text */
.tbg-about__left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tbg-about__header {
    text-align: left;
}

.tbg-about__subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--tbg-primary)!important;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.tbg-about__title {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 1.2;
    color: var(--tbg-primary)!important;
    margin: 0;
}

.tbg-about__text {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
}

.tbg-about__text p {
    margin: 0 0 15px 0;
}

.tbg-about__text p:last-child {
    margin-bottom: 0;
}

/* Right Column: Images & Social in Box */
.tbg-about__right {
    background-color: #F5F0EB;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tbg-about__images-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

/* Profile Image */
.tbg-about__profile {
    width: 100%;
}

.tbg-about__profile-image {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.tbg-about__profile-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Certificate & Social - Together */
.tbg-about__bottom-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

/* Certificate - Smaller */
.tbg-about__certificate {
    width: 100px;
    flex-shrink: 0;
}

.tbg-about__certificate-image,
.tbg-about__certificate-link {
    display: block;
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.tbg-about__certificate-image {
    border-radius: 75%;
}

.tbg-about__certificate-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tbg-about__certificate img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Social Links */
.tbg-about__social {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.tbg-about__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.tbg-about__social-link:hover {
    transform: scale(1.1);
}

.tbg-about__social-icon {
    font-size: 32px;
    color: var(--tbg-primary)!important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tbg-about {
        padding: 50px;
    }

    .tbg-about__content {
        grid-template-columns: 1fr 350px;
        gap: 50px;
    }

    .tbg-about__title {
        font-size: 48px;
    }

    .tbg-about__text {
        font-size: 17px;
    }

    .tbg-about__right {
        padding: 25px;
    }

    .tbg-about__certificate {
        width: 90px;
    }
}

@media (max-width: 992px) {
    .tbg-about {
        padding: 40px;
    }

    .tbg-about__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tbg-about__title {
        font-size: 42px;
    }

    .tbg-about__text {
        font-size: 16px;
    }

    .tbg-about__right {
        max-width: 500px;
        margin: 0 auto;
        padding: 25px;
    }

    .tbg-about__certificate {
        width: 90px;
    }
}

@media (max-width: 768px) {
    .tbg-about {
        padding: 40px 30px;
    }

    .tbg-about__subtitle {
        font-size: 12px;
    }

    .tbg-about__title {
        font-size: 36px;
    }

    .tbg-about__right {
        max-width: 100%;
        padding: 20px;
    }

    .tbg-about__bottom-section {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .tbg-about__certificate {
        width: 120px;
    }

    .tbg-about__social {
        justify-content: center;
    }

    .tbg-about__social-icon {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .tbg-about {
        padding: 30px 20px;
    }

    .tbg-about__title {
        font-size: 28px;
    }

    .tbg-about__text {
        font-size: 15px;
    }

    .tbg-about__right {
        padding: 20px 15px;
    }

    .tbg-about__certificate {
        width: 100px;
    }

    .tbg-about__social-icon {
        font-size: 26px;
    }
}

/**
 * TBG Background and Box Widget Styles
 */

.tbg-background-box {
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 100vh!important;
}

.tbg-background-box__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

/* Background Image - Full Width */
.tbg-background-box__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Content Section (Left Side - Blue Box) */
.tbg-background-box__content {
    background-color: #0000FF;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    top: 30px;
    left: 30px;
    bottom: 30px;
    width: 33%;
    max-width: 500px;
    border-radius: 20px;
    z-index: 2;
}

.tbg-background-box__icon {
    position: absolute;
    top: 30px;
    right: 30px;
}

.tbg-background-box__icon svg {
    width: 60px;
    height: 60px;
}

.tbg-background-box__text {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0;
    max-width: 100%;
    margin-top: auto;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tbg-background-box__content {
        width: 40%;
        max-width: 450px;
        padding: 50px 40px;
    }

}

@media (max-width: 992px) {
    .tbg-background-box__content {
        width: 50%;
        max-width: none;
        padding: 40px 30px;
    }

    .tbg-background-box__content {
        right: 30px;
        top: unset;
        width: auto!important;
    }

    .tbg-background-box__content .tbg-background-box__text {
        margin-top: 50px;
    }

}

@media (max-width: 768px) {
    .tbg-background-box {
        min-height: 500px;
    }


    .tbg-background-box__icon {
        top: 20px;
        right: 20px;
    }

    .tbg-background-box__icon svg {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .tbg-background-box {
        min-height: 400px;
    }

    .tbg-background-box__icon {
        top: 15px;
        right: 15px;
    }

    .tbg-background-box__icon svg {
        width: 40px;
        height: 40px;
    }
}
