:root {
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Poppins', sans-serif !important;
}

html {
    scroll-behavior: smooth;
}

@media (min-width: 110px) and (max-width: 768px) {
    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }
}

@media (min-width: 769px) and (max-width: 21000000px) {
    .desktop {
        display: block !important;
    }

    .mobile {
        display: none !important;
    }
}

.tgl-foundation-top-strip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #ffffff;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.tgl-foundation-top-strip-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    padding: 0 20px;
    border: none;
}

.tgl-foundation-top-strip-btn {
    background: #2ea44f;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.tgl-foundation-top-strip-btn:hover {
    background: #24913f;
}

@media (max-width: 768px) {
    .tgl-foundation-top-strip {
        height: 50px;
    }

    body {
        padding-top: 50px;
    }

    .tgl-foundation-top-strip-btn {
        font-size: 13px;
        padding: 8px 16px;
    }
}

.tgl-foundation-section {
    background: #fcfffe;
    padding: 0px 0px;
}

.tgl-foundation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding-bottom: 30px;
    font-family: 'Poppins', sans-serif !important;
}

.tgl-foundation-left {
    max-width: 520px;
}

.tgl-foundation-logo {
    width: 70px;
    margin-left: 40px;
}

.tgl-foundation-title {
    font-size: 48px;
    line-height: 1.2;
    color: #1c3b3b;
    font-weight: 400;
    margin-bottom: 20px;
    margin-left: 40px;
}

.tgl-foundation-title span {
    font-weight: 700;
}

.tgl-foundation-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #5f6f73;
    margin-bottom: 15px;
    margin-left: 40px;
}

.tgl-foundation-btn {
    background: #2ea44f;
    color: #fff;
    border: none;
    padding: 10px 30px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    margin-left: 40px;
}

.tgl-foundation-btn:hover {
    background: #24913f;
}

.tgl-foundation-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tgl-foundation-hex-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .tgl-foundation-container {
        flex-direction: column;
        text-align: left;
        padding-left: 20px;
    }

    .tgl-foundation-title {
        font-size: 36px;
    }

    .tgl-foundation-right {
        margin-top: 40px;
    }

    .tgl-foundation-hex-img {
        max-width: 90%;
    }
}

@media (max-width: 600px) {
    .tgl-foundation-section {
        padding: 30px 0px;
    }

    .tgl-foundation-container {
        gap: 0px;
    }

    .tgl-foundation-title {
        font-size: 28px;
        text-align: center;
    }

    .tgl-foundation-desc {
        font-size: 14px;
    }

    .tgl-foundation-btn {
        display: inline-block;
        width: auto;
        /* remove full width */
        padding: 10px 24px;
    }

    /* Center the button */
    .tgl-foundation-btn-wrapper {
        text-align: center;
    }

    .tgl-foundation-logo {
        width: 54px;
        margin-left: 40px;
    }

    .tgl-foundation-hex-img {
        max-width: 100%;
    }

    .tgl-foundation-logo,
    .tgl-foundation-title,
    .tgl-foundation-desc,
    .tgl-foundation-btn {
        margin-left: 0px;
    }

    .tgl-foundation-btn-wrapper {
        text-align: center;
    }
}

/* ================================================================*/

.tgl-foundation-about-section {
    background: #fcfffe;
    padding: 80px 40px;
    font-family: 'Poppins', sans-serif !important;
}

.tgl-foundation-about-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1215px;
    margin: 0 auto;
}

.tgl-foundation-about-left {
    flex: 0 0 40%;
    position: sticky;
    top: 100px;
}

.tgl-foundation-about-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 400;
    color: #4a4f52;
}

.tgl-foundation-about-title span {
    font-weight: 600;
    color: #2f3437;
}

.tgl-foundation-about-right {
    flex: 1;
    max-width: 650px;
}

.tgl-foundation-about-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #4c555a;
    margin-bottom: 22px;
}

@media (max-width: 1024px) {
    .tgl-foundation-about-container {
        flex-direction: column;
        gap: 40px;
    }

    .tgl-foundation-about-left {
        position: static;
    }

    .tgl-foundation-about-title {
        font-size: 34px;
        text-align: center;
    }

    .tgl-foundation-about-right {
        max-width: 100%;
    }
}

.tgl-foundation-break-word {
    display: block;
    font-weight: 700;
}

@media (max-width: 600px) {
    .tgl-foundation-about-section {
        padding: 10px 20px;
    }

    .tgl-foundation-about-title {
        font-size: 28px;
        margin-top: 0;
    }

    .tgl-foundation-about-right p {
        font-size: 14px;
    }

    .tgl-foundation-break-word {
        display: inline;
    }

    .tgl-foundation-about-container {
        gap: 0px;
    }

    .tgl-foundation-about-right p {
        margin-bottom: 10px;
    }
}

/*==================================================================*/

.tgl-foundation-mission-section {
    background: #fcfffe;
    padding: 40px 40px;
    font-family: 'Poppins', sans-serif !important;
}

.tgl-foundation-mission-title {
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    color: #555;
    margin-bottom: 50px;
}

.tgl-foundation-mission-title span {
    font-weight: 700;
    color: #2f3e46;
}

.tgl-foundation-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    aspect-ratio: 2 / 1;
    max-width: 1200px;
    margin: 0 auto;
}

.tgl-foundation-card {
    width: 100%;
    height: 100%;
    position: relative;
}

.tgl-foundation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tgl-foundation-content {
    position: absolute;
    inset: 0;
    padding: 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tgl-foundation-mission {
    background: #2c74a6;
    color: #fff;
}

.tgl-foundation-mission h3 {
    font-size: 35px;
    margin-bottom: 15px;
}

.tgl-foundation-mission p {
    font-size: 18px;
    line-height: 1.7;
}

.tgl-foundation-vision {
    background: #2faa4a;
    color: #fff;
}

.tgl-foundation-vision h3 {
    font-size: 35px;
    margin-bottom: 15px;
}

.tgl-foundation-vision p {
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .tgl-foundation-mission-section {
        padding: 60px 30px;
    }

    .tgl-foundation-mission-title {
        font-size: 32px;
    }

    .tgl-foundation-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .tgl-foundation-mission-section {
        padding: 30px 0px;
    }

    .tgl-foundation-mission-grid {
        grid-template-columns: 1fr;
        aspect-ratio: auto;
    }

    .tgl-foundation-mission {
        margin-bottom: 1rem;
    }

    .tgl-foundation-card {
        height: auto;
    }

    .tgl-foundation-img img {
        height: 250px;
    }

    .tgl-foundation-content {
        position: relative;
    }

    .tgl-foundation-mission h3,
    .tgl-foundation-vision h3 {
        font-size: 24px;
    }

    .tgl-foundation-mission p,
    .tgl-foundation-vision p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .tgl-foundation-mission-title {
        font-size: 26px;
    }

    .tgl-foundation-img img {
        height: 200px;
    }
}

/*=====================================================================*/


.application-slider-section {
    padding: 20px 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif !important;
}

.application-slider-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 24px;
}

.application-slider-header {
    text-align: center;
    margin-bottom: 50px;
}

.application-slider-title {
    font-size: 2.3rem;
    font-weight: 400;
    color: #222;
    line-height: 1.2;
    margin-bottom: 10px;
}

.application-slider-title span {
    font-weight: 600;
}

.application-slider-subtitle {
    margin-top: 16px;
    font-size: 16px;
    color: #666;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.application-slider-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grab;
    padding-bottom: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.application-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.application-slider-card {
    min-width: 320px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.application-slider-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.application-slider-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 24px 0px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.application-slider-overlay h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 1024px) {

    .application-slider-title {
        font-size: 36px;
    }

    .application-slider-card {
        min-width: 280px;
        height: 380px;
    }
}

@media (max-width: 768px) {

    .application-slider-title {
        font-size: 28px;
    }

    .application-slider-subtitle {
        font-size: 14px;
    }

    .application-slider-card {
        min-width: 295px;
        height: 320px;
    }

    .application-slider-section {
        padding: 30px 0;
        overflow: hidden;
    }
}

.application-slider-wrapper {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    cursor: grab;
    scroll-behavior: auto;
}

.application-slider-wrapper:active {
    cursor: grabbing;
}

.application-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.application-slider-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity .35s ease;
    color: #fff;
}

.application-slider-card:hover .application-slider-hover {
    opacity: 1;
}

.application-slider-hover h3 {
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 500;
}

.application-slider-hover p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 260px;
}

.application-slider-btn {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: transform .25s ease;
}

.application-slider-btn:hover {
    transform: scale(1.08);
}

@media (max-width: 1200px) {
    .application-slider-hover h3 {
        font-size: 14px;
    }

    .application-slider-hover p {
        font-size: 11px;
    }

    .application-slider-btn {
        width: 94px;
        height: 89px;
        font-size: 14px;
    }
}

/*==========================================================*/

.tgl-foundation-plantation-section {
    position: relative;
    background: url("https://n-teleglobalwebsitemedia.s3.ap-south-1.amazonaws.com/New-React-website-images/tg-f-bg.webp") no-repeat center bottom;
    background-size: cover;
    padding: 40px 20px 340px;
    text-align: center;
    overflow: hidden;
    font-family: 'Poppins', sans-serif !important;
}

.tgl-foundation-plantation-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.tgl-foundation-badge {
    display: inline-block;
    background: #b8e48a;
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.tgl-foundation-title {
    font-size: 40px;
    font-weight: 400;
    color: #274A65;
    margin-bottom: 20px;
    margin-top: 0px;
}

.tgl-foundation-title span {
    font-weight: 600;
}

.tgl-foundation-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #2f3e2f;
    margin-bottom: 15px;
}

.tgl-foundation-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 9rem;
}

.tgl-foundation-stat {
    text-align: center;
}

.tgl-foundation-stat h3 {
    font-size: 31px;
    color: #1f5fa7;
    margin-bottom: 5px;
    margin-top: 10px;
}

.tgl-foundation-stat p {
    font-size: 14px;
    color: #333;
}

.tgl-foundation-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .tgl-foundation-title {
        font-size: 34px;
    }

    .tgl-foundation-desc {
        font-size: 15px;
    }

    .tgl-foundation-plantation-section {
        padding: 80px 20px 160px;
    }
}

@media (max-width: 768px) {

    .tgl-foundation-desc {
        font-size: 14px;
    }

    .tgl-foundation-stats {
        gap: 20px;
        margin-bottom: 23rem;
    }

    .tgl-foundation-divider {
        display: none;
    }

    .tgl-foundation-plantation-section {
        padding: 40px 20px 120px;
    }
}

/*=============================================================*/

.tgl-foundation-planned-sec {
    background: #fcfffe;
    padding: 20px 20px 40px 20px;
    font-family: 'Poppins', sans-serif !important;
}

.tgl-foundation-planned-wrap {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tgl-foundation-planned-heading {
    font-size: 36px;
    font-weight: 600;
    color: #3c4144;
    margin-bottom: 12px;
}

.tgl-foundation-planned-desc {
    font-size: 16px;
    color: #37404A;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.tgl-foundation-planned-grid {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.tgl-foundation-planned-row {
    display: flex;
    gap: 26px;
}

.tgl-foundation-planned-row-top {
    justify-content: space-between;
}

.tgl-foundation-planned-row-top .tgl-foundation-planned-card {
    width: 33.33%;
}

.tgl-foundation-planned-row-top .tgl-foundation-planned-card h3 {
    color: #1875BC;
    font-size: 18px;
}

.tgl-foundation-planned-row-bottom {
    justify-content: center;
    margin-top: 26px;
}

.tgl-foundation-planned-row-bottom .tgl-foundation-planned-card {
    width: 33.33%;
}

.tgl-foundation-planned-row-bottom .tgl-foundation-planned-card h3 {
    color: #1875BC;
    font-size: 18px;
}

.tgl-foundation-planned-card {
    background: #F4F3F3;
    padding: 25px;
    text-align: left;
    min-height: 180px;
}

.tgl-foundation-planned-card ul li {
    margin-bottom: 10px;
    color: #4f585d;
}

@media (max-width: 1024px) {
    .tgl-foundation-planned-row {
        justify-content: center;
    }

    .tgl-foundation-planned-card {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .tgl-foundation-planned-card {
        width: 100%;
    }

    .tgl-foundation-planned-row {
        justify-content: center;
        flex-direction: column;
    }

    .tgl-foundation-planned-row-top .tgl-foundation-planned-card {
        width: 87%;
    }

    .tgl-foundation-planned-row-bottom .tgl-foundation-planned-card {
        width: 87%;
    }
}

/*===================================================================*/

.tgl-foundation-support-sec {
    background: #f4f4f4;
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif !important;
}

.tgl-foundation-support-wrap {
    max-width: 1150px;
    margin: 0 auto;
}

.tgl-foundation-support-heading {
    font-size: 40px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
    margin-top: 0px;
}

.tgl-foundation-support-text {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.tgl-foundation-support-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #1875BC;
    margin-top: 30px;
    margin-bottom: 10px;
}

.tgl-foundation-support-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.tgl-foundation-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tgl-foundation-support-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #eaeaea;
    padding: 10px 18px;
    border-radius: 4px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tgl-foundation-support-item:hover {
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}

.tgl-foundation-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;

    background: #2fa84f;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
}

.tgl-foundation-support-item p {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .tgl-foundation-support-heading {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .tgl-foundation-support-grid {
        grid-template-columns: 1fr;
    }

    .tgl-foundation-support-heading {
        font-size: 24px;
    }

    .tgl-foundation-support-text,
    .tgl-foundation-support-desc {
        font-size: 14px;
    }

    .tgl-foundation-support-sec {
        padding: 20px 20px;
    }
}

/*=================================================*/

.tgl-foundation-partner-sec {
    background: #fcfffe;
    padding: 35px 20px;
    font-family: 'Poppins', sans-serif !important;
}

.tgl-foundation-partner-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.tgl-foundation-partner-img-box {
    position: relative;
    width: 45%;
}

.tgl-foundation-partner-img-box img {
    width: 83%;
    height: auto;
    display: block;
    border-radius: 18px;
    position: relative;
    z-index: 2;
}

.tgl-foundation-partner-content {
    width: 55%;
}

.tgl-foundation-partner-heading {
    font-size: 32px;
    font-weight: 600;
    color: #3c4144;
    margin-bottom: 20px;
}

.tgl-foundation-partner-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.tgl-foundation-partner-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #1e6bb8;
    margin: 20px 0 10px;
}

.tgl-foundation-partner-list {
    padding-left: 18px;
    margin-bottom: 25px;
}

.tgl-foundation-partner-list li {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}

.tgl-foundation-partner-btn {
    padding: 10px 20px;
    border: 1px solid #999;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tgl-foundation-partner-btn:hover {
    background: #2faa4a;
    color: #fff;
    border-color: #2faa4a;
}

@media (max-width: 1024px) {
    .tgl-foundation-partner-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .tgl-foundation-partner-img-box,
    .tgl-foundation-partner-content {
        width: 100%;
    }

    .tgl-foundation-partner-heading {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .tgl-foundation-partner-heading {
        font-size: 24px;
        margin-top: 0px;
    }

    .tgl-foundation-partner-wrap {
        gap: 20px;
    }

    .tgl-foundation-partner-text {
        font-size: 14px;
    }

    .tgl-foundation-partner-list li {
        font-size: 13px;
    }

    .tgl-foundation-partner-img-box img {
        width: 100%;
        margin-bottom: 20px;
    }
}

/*========================================================*/

.tgl-foundation-footer {
    background: #f4f4f4;
    font-family: 'Poppins', sans-serif !important;
}

.tgl-foundation-footer-wrap {
    max-width: 1150px;
    margin: 0 auto;
    padding: 50px 20px;

    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.tgl-foundation-footer-col {
    flex: 1;
}

.tgl-foundation-footer-logo {
    width: 60px;
    margin-bottom: 15px;
}

.tgl-foundation-footer-about p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    max-width: 290px;
}

.tgl-foundation-footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.tgl-foundation-footer-col ul {
    list-style: none;
    padding: 0;
}

.tgl-foundation-footer-col li {
    margin-bottom: 10px;
}

.tgl-foundation-footer-col a {
    text-decoration: none;
    font-size: 14px;
    color: #444;
}

.tgl-foundation-footer-col a:hover {
    color: #1e6bb8;
}

.tgl-foundation-footer-contact {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.tgl-foundation-footer-contact span {
    font-size: 16px;
}

.tgl-foundation-footer-contact span img {
    width: 15px;
}

.tgl-foundation-footer-contact p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.tgl-foundation-footer-col.tgl-foundation-footer-about {
    min-width: 40%;
}

.tgl-foundation-footer-bottom {
    background: #2c74a6;
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .tgl-foundation-footer-wrap {
        flex-wrap: wrap;
        gap: 40px;
    }

    .tgl-foundation-footer-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 600px) {
    .tgl-foundation-footer-wrap {
        flex-direction: column;
        text-align: left;
        gap: 0px;
        padding: 30px 20px;
    }

    .tgl-foundation-footer-col {
        width: 100%;
    }

    .tgl-foundation-footer-about p {
        max-width: 100%;
    }
}

/*===================================================================*/

.tgl-foundation-gallery-sec {
    background: #f4f4f4;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif !important;
}

.tgl-foundation-gallery-wrap {
    max-width: 1160px;
    margin: 0 auto;
}

.tgl-foundation-gallery-title {
    font-size: 36px;
    font-weight: 600;
    color: #3c4144;
    margin-bottom: 10px;
    margin-top: 0;
}

.tgl-foundation-gallery-subtitle {
    color: #666;
    margin-bottom: 40px;
}

.tgl-foundation-gallery-slider {
    overflow: hidden;
}

.tgl-foundation-gallery-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
}

.tgl-foundation-gallery-item {
    min-width: 260px;
    height: 320px;
    flex-shrink: 0;
}

.tgl-foundation-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tgl-foundation-gallery-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.tgl-foundation-gallery-dots {
    display: flex;
    gap: 8px;
}

.tgl-foundation-gallery-dots span {
    width: 30px;
    height: 3px;
    background: #ccc;
    display: block;
}

.tgl-foundation-gallery-dots .active {
    background: #2c74a6;
}

.tgl-foundation-gallery-arrows button {
    border: 1px solid #999;
    background: transparent;
    padding: 10px 14px;
    cursor: pointer;
    margin-left: 10px;
}

@media (max-width: 768px) {

    .tgl-foundation-gallery-title {
        text-align: center;
        font-size: 28px;
    }

    .tgl-foundation-gallery-subtitle {
        text-align: center;
        font-size: 14px;
    }

    .tgl-foundation-gallery-item {
        min-width: 85%;
        height: 380px;
    }

    .tgl-foundation-gallery-controls {
        flex-direction: column;
        gap: 20px;
    }
}

.tgl-foundation-gallery-arrows button {
    border: 1px solid #999;
    background: transparent;
    padding: 10px 14px;
    cursor: pointer;
    transition: 0.3s;
}

.tgl-foundation-gallery-arrows button:not(:disabled) {
    color: #000;
}

.tgl-foundation-gallery-arrows button[style*="0.3"] {
    border-color: #b5b5b5;
    color: #b5b5b5;
}

.tgl-foundation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.tgl-foundation-modal-box {
    width: 420px;
    background: linear-gradient(135deg, #ffffff, #fdffff);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.tgl-foundation-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}

.tgl-foundation-modal input {
    width: 93%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #e7e7e7;
    outline: none;
    background: #fff;
}

.tgl-phone-row {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #e7e7e7;
}

.tgl-phone-row span {
    margin-right: 10px;
}

.tgl-phone-row input {
    border: none;
    outline: none;
    flex: 1;
}

.tgl-foundation-modal button {
    width: 100%;
    padding: 14px;
    background: #2ea44f;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#formMsg {
    margin-top: 10px;
    font-size: 14px;
}

@media (max-width: 600px) {
    .tgl-foundation-modal-box {
        width: 80%;
    }
}

.tgl-cc-dropdown {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    margin-right: 10px;
    cursor: pointer;
}