/* =========================================
   MOBILE SLIDER
   ========================================= */

@media only screen and (max-width: 767px) {

    .slider-container {
        width: 100%;
        height: 620px;
        position: relative;
        overflow: hidden;
    }

    .slider {
        width: 100%;
        height: 100%;
    }

    .slide {
        width: 100%;
        height: 620px;
        position: relative;
        overflow: hidden;
    }

    .slide img {
        width: 100%;
        height: 620px;
        object-fit: cover;
        object-position: center;
        display: block;
    }


    /* -----------------------------------------
       DARK OVERLAY
       ----------------------------------------- */

    .slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 1;
    }


    /* -----------------------------------------
       SLIDER TEXT
       ----------------------------------------- */

    .slide .text {
        position: absolute;
        z-index: 2;

        top: 50%;
        left: 50%;

        width: 90%;

        transform: translate(-50%, -50%);

        text-align: center;

        padding: 0 15px;
    }


    /* Heading */

    .slide .text h1 {
        margin: 0 0 18px 0;

        font-size: 32px;
        line-height: 1.18;

        font-weight: 800;

        letter-spacing: 1px;
    }


    /* Paragraph */

    .slide .text p {
        margin: 0 auto;

        max-width: 430px;

        font-size: 17px;
        line-height: 1.55;

        font-weight: 400;

        letter-spacing: .3px;
    }


    /* -----------------------------------------
       PREVIOUS / NEXT
       ----------------------------------------- */

    .slider-container .prev,
    .slider-container .next {

        width: 48px;
        height: 65px;

        top: 50%;

        transform: translateY(-50%);

        z-index: 5;

        font-size: 25px;

        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-container .prev {
        left: 0;
    }

    .slider-container .next {
        right: 0;
    }


    /* -----------------------------------------
       DOTS
       ----------------------------------------- */

    .slider-container .dots {
        position: absolute;

        bottom: 18px;
        left: 50%;

        transform: translateX(-50%);

        z-index: 5;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 7px;
    }

    .slider-container .dot {
        width: 8px;
        height: 8px;

        margin: 0;

        border-radius: 50%;
    }

}


/* =========================================
   SMALL PHONES
   ========================================= */

@media only screen and (max-width: 480px) {

    .slider-container {
        height: 590px;
    }

    .slide {
        height: 590px;
    }

    .slide img {
        height: 590px;
    }


    .slide .text {
        width: 92%;
        padding: 0 10px;
    }


    .slide .text h1 {
        font-size: 29px;
        line-height: 1.18;

        margin-bottom: 16px;

        letter-spacing: .7px;
    }


    .slide .text p {
        max-width: 350px;

        font-size: 16px;
        line-height: 1.55;
    }


    .slider-container .prev,
    .slider-container .next {
        width: 42px;
        height: 62px;

        font-size: 22px;
    }


    .slider-container .dots {
        bottom: 15px;
    }

}


/* =========================================
   VERY SMALL PHONES
   ========================================= */

@media only screen and (max-width: 380px) {

    .slider-container {
        height: 550px;
    }

    .slide {
        height: 550px;
    }

    .slide img {
        height: 550px;
    }


    .slide .text h1 {
        font-size: 27px;
    }


    .slide .text p {
        font-size: 15px;
        line-height: 1.5;
    }


    .slider-container .prev,
    .slider-container .next {
        width: 38px;
        height: 58px;
        font-size: 20px;
    }

}


/* =========================================================
   SLIDER PREV / NEXT BUTTONS
   RESPONSIVE - DESKTOP / TABLET / MOBILE
   ========================================================= */

.slider-container {
    position: relative;
}


/* =========================================================
   COMMON BUTTON
   ========================================================= */

.slider-container .prev,
.slider-container .next {

    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 20;

    width: 52px;
    height: 52px;

    margin: 0;
    padding: 0;

    border: 0;
    outline: none;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 300;
    line-height: 1;

    color: #fff;

    background: rgba(0, 0, 0, 0.35);

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


/* =========================================================
   LEFT BUTTON
   ========================================================= */

.slider-container .prev {
    left: 22px;
}


/* =========================================================
   RIGHT BUTTON
   ========================================================= */

.slider-container .next {
    right: 22px;
}


/* =========================================================
   HOVER
   ========================================================= */

.slider-container .prev:hover,
.slider-container .next:hover {

    background: #f2643c;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}


/* Slight movement */

.slider-container .prev:hover {
    transform: translateY(-50%) translateX(-2px);
}

.slider-container .next:hover {
    transform: translateY(-50%) translateX(2px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media only screen and (max-width: 991px) {

    .slider-container .prev,
    .slider-container .next {

        width: 48px;
        height: 48px;

        font-size: 24px;
    }

    .slider-container .prev {
        left: 15px;
    }

    .slider-container .next {
        right: 15px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media only screen and (max-width: 767px) {

    .slider-container .prev,
    .slider-container .next {

        width: 42px;
        height: 42px;

        font-size: 21px;

        top: 50%;

        background: rgba(0, 0, 0, 0.30);
    }

    .slider-container .prev {
        left: 10px;
    }

    .slider-container .next {
        right: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media only screen and (max-width: 480px) {

    .slider-container .prev,
    .slider-container .next {

        width: 38px;
        height: 38px;

        font-size: 19px;
    }

    .slider-container .prev {
        left: 8px;
    }

    .slider-container .next {
        right: 8px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media only screen and (max-width: 360px) {

    .slider-container .prev,
    .slider-container .next {

        width: 35px;
        height: 35px;

        font-size: 17px;
    }

    .slider-container .prev {
        left: 6px;
    }

    .slider-container .next {
        right: 6px;
    }

}


   /* =========================================
       PREMIUM ABOUT SECTION
    ========================================= */

    .tsn-about-section {
        position: relative;
        overflow: hidden;
        padding: 95px 0;
        background: #ffffff;
    }

    .tsn-about-section::before {
        content: "";
        position: absolute;
        width: 430px;
        height: 430px;
        border-radius: 50%;
        background: #fdf5f2;
        top: -220px;
        left: -180px;
        pointer-events: none;
    }

    .tsn-about-section::after {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        border: 1px solid rgba(110, 31, 31, 0.08);
        bottom: -130px;
        right: -90px;
        pointer-events: none;
    }

    .tsn-about-container {
        position: relative;
        z-index: 2;
        width: 92%;
        max-width: 1240px;
        margin: 0 auto;
    }

    /* =========================================
       LEFT CONTENT
    ========================================= */

    .tsn-about-content {
        padding-right: 35px;
    }

    .tsn-about-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 17px;
        color: #f2643c;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .tsn-about-label::before {
        content: "";
        width: 35px;
        height: 2px;
        background: #f2643c;
        border-radius: 10px;
    }

    .tsn-about-title {
        margin: 0 0 22px;
        color: #321616;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 46px;
        font-weight: 700;
        line-height: 1.13;
    }

    .tsn-about-title span {
        color: #6e1f1f;
    }

    .tsn-about-description {
        margin: 0 0 25px;
        color: #666;
        font-size: 15px;
        line-height: 1.85;
    }

    /* =========================================
       HIGHLIGHTS
    ========================================= */

    .tsn-about-highlights {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin: 25px 0 30px;
    }

    .tsn-about-highlight {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 10px 14px;
        border: 1px solid #eee5e2;
        border-radius: 10px;
        background: #fff;
        color: #4e3d3d;
        font-size: 12px;
        font-weight: 600;
        box-shadow: 0 5px 18px rgba(80, 30, 30, 0.04);
    }

    .tsn-about-highlight i {
        color: #f2643c;
        font-size: 13px;
    }

    /* =========================================
       CTA
    ========================================= */

    .tsn-about-actions {
        display: flex;
        align-items: center;
        gap: 22px;
    }

    .tsn-about-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 14px 20px;
        border-radius: 11px;
        background: #f2643c;
        color: #fff !important;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none !important;
        box-shadow: 0 12px 25px rgba(242, 100, 60, 0.20);
        transition: all .3s ease;
    }

    .tsn-about-btn span {
        width: 27px;
        height: 27px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255,255,255,.20);
        transition: all .3s ease;
    }

    .tsn-about-btn:hover {
        background: #6e1f1f;
        transform: translateY(-3px);
    }

    .tsn-about-btn:hover span {
        background: #fff;
        color: #6e1f1f;
        transform: translateX(3px);
    }

    .tsn-about-link {
        color: #6e1f1f !important;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none !important;
    }

    .tsn-about-link i {
        margin-right: 6px;
        color: #f2643c;
    }

    /* =========================================
       RIGHT VISUAL
    ========================================= */

    .tsn-about-visual {
        position: relative;
        min-height: 500px;
        padding-left: 20px;
    }

    .tsn-main-image {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 455px;
        border-radius: 25px;
        background: #6e1f1f;
        box-shadow: 0 25px 55px rgba(50, 20, 20, .16);
    }

    .tsn-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* =========================================
       VIDEO BUTTON
    ========================================= */

    .tsn-video-button {
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 5;
        width: 76px;
        height: 76px;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background: #f2643c;
        color: #fff !important;
        font-size: 22px;
        text-decoration: none !important;
        box-shadow:
            0 0 0 12px rgba(255,255,255,.25),
            0 15px 35px rgba(0,0,0,.20);
        transition: all .3s ease;
    }

    .tsn-video-button i {
        margin-left: 4px;
    }

    .tsn-video-button:hover {
        transform: translate(-50%, -50%) scale(1.08);
        background: #6e1f1f;
    }

    /* =========================================
       EXPERIENCE CARD
    ========================================= */

    .tsn-experience-card {
        position: absolute;
        left: -5px;
        bottom: 18px;
        z-index: 6;
        width: 190px;
        padding: 20px;
        border-radius: 17px;
        background: #fff;
        box-shadow: 0 20px 45px rgba(50,20,20,.16);
    }

    .tsn-experience-number {
        color: #6e1f1f;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 34px;
        font-weight: 700;
        line-height: 1;
    }

    .tsn-experience-number span {
        color: #f2643c;
    }

    .tsn-experience-text {
        margin-top: 7px;
        color: #777;
        font-size: 11px;
        font-weight: 600;
        line-height: 1.5;
    }

    /* =========================================
       DECORATIVE CARD
    ========================================= */

    .tsn-mini-card {
        position: absolute;
        right: -12px;
        top: 25px;
        z-index: 4;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 15px;
        border-radius: 12px;
        background: rgba(255,255,255,.94);
        box-shadow: 0 12px 30px rgba(50,20,20,.12);
    }

    .tsn-mini-icon {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 9px;
        background: #fdf0ec;
        color: #f2643c;
    }

    .tsn-mini-card strong {
        display: block;
        color: #321616;
        font-size: 12px;
    }

    .tsn-mini-card small {
        color: #888;
        font-size: 10px;
    }

    /* =========================================
       TABLET
    ========================================= */

    @media (max-width: 991px) {

        .tsn-about-section {
            padding: 75px 0;
        }

        .tsn-about-content {
            padding-right: 0;
            margin-bottom: 55px;
        }

        .tsn-about-title {
            font-size: 40px;
        }

        .tsn-about-visual {
            padding-left: 0;
        }

        .tsn-main-image {
            height: 480px;
        }

        .tsn-experience-card {
            left: 15px;
        }

        .tsn-mini-card {
            right: 15px;
        }
    }

    /* =========================================
       MOBILE
    ========================================= */

    @media (max-width: 767px) {

        .tsn-about-section {
            padding: 55px 0;
        }

        .tsn-about-container {
            width: 90%;
        }

        .tsn-about-content {
            margin-bottom: 40px;
        }

        .tsn-about-title {
            font-size: 31px;
            line-height: 1.18;
        }

        .tsn-about-description {
            font-size: 14px;
            line-height: 1.75;
        }

        .tsn-about-highlights {
            gap: 8px;
        }

        .tsn-about-highlight {
            font-size: 11px;
            padding: 8px 11px;
        }

        .tsn-about-actions {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }

        .tsn-about-btn {
            width: 100%;
            justify-content: center;
        }

        .tsn-about-visual {
            min-height: 390px;
        }

        .tsn-main-image {
            height: 360px;
            border-radius: 20px;
        }

        .tsn-video-button {
            width: 62px;
            height: 62px;
            font-size: 18px;
        }

        .tsn-experience-card {
            left: 10px;
            bottom: 10px;
            width: 155px;
            padding: 15px;
        }

        .tsn-experience-number {
            font-size: 28px;
        }

        .tsn-mini-card {
            right: 10px;
            top: 12px;
            padding: 9px 11px;
        }

        .tsn-mini-icon {
            width: 30px;
            height: 30px;
        }
    }




  /* ============================
       COURSES SECTION
    ============================ */

    .nursing-programs-section {
        position: relative;
        overflow: hidden;
        padding: 90px 0;
        background:
            radial-gradient(circle at 8% 15%, rgba(242, 100, 60, 0.12), transparent 28%),
            radial-gradient(circle at 90% 85%, rgba(110, 31, 31, 0.10), transparent 30%),
            #faf8f7;
    }

    .nursing-programs-section::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        border: 1px solid rgba(110, 31, 31, 0.07);
        top: -180px;
        right: -150px;
    }

    .nursing-programs-section::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(242, 100, 60, 0.035);
        bottom: -120px;
        left: -100px;
    }

    .programs-container {
        position: relative;
        z-index: 2;
        width: 92%;
        max-width: 1240px;
        margin: 0 auto;
    }

    /* ============================
       IMAGE SIDE
       ============================ */

    .program-image-wrapper {
        position: relative;
        padding-right: 25px;
    }

    .program-image-box {
        position: relative;
        overflow: hidden;
        border-radius: 28px;
        background: #6e1f1f;
        min-height: 600px;
        box-shadow: 0 25px 60px rgba(70, 24, 24, 0.18);
    }

    .program-image-box img {
        width: 100%;
        height: 600px;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    .program-image-box:hover img {
        transform: scale(1.04);
    }

    .program-image-overlay {
        position: absolute;
        inset: auto 20px 20px 20px;
        padding: 22px 24px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.93);
        backdrop-filter: blur(12px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .program-image-overlay small {
        display: block;
        margin-bottom: 5px;
        color: #f2643c;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .program-image-overlay strong {
        display: block;
        color: #6e1f1f;
        font-size: 21px;
        line-height: 1.3;
    }

    /* Floating badge */

    .program-floating-badge {
        position: absolute;
        top: 35px;
        left: -18px;
        z-index: 3;
        padding: 14px 18px;
        border-radius: 14px;
        background: #6e1f1f;
        color: #fff;
        box-shadow: 0 15px 35px rgba(110, 31, 31, 0.25);
    }

    .program-floating-badge span {
        display: block;
        font-size: 11px;
        opacity: 0.75;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .program-floating-badge strong {
        display: block;
        margin-top: 3px;
        font-size: 16px;
    }

    /* ============================
       CONTENT SIDE
       ============================ */

    .program-content {
        padding-left: 25px;
    }

    .program-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        margin-bottom: 16px;
        color: #f2643c;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1.8px;
        text-transform: uppercase;
    }

    .program-eyebrow::before {
        content: "";
        width: 32px;
        height: 2px;
        background: #f2643c;
        border-radius: 5px;
    }

    .program-heading {
        margin: 0 0 18px;
        color: #341616;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 46px;
        font-weight: 700;
        line-height: 1.12;
    }

    .program-heading span {
        color: #6e1f1f;
    }

    .program-intro {
        max-width: 590px;
        margin: 0 0 30px;
        color: #686060;
        font-size: 16px;
        line-height: 1.8;
    }

    /* ============================
       COURSE ITEMS
       ============================ */

    .course-list {
        display: flex;
        flex-direction: column;
        gap: 13px;
    }

    .course-item {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 18px 20px;
        border: 1px solid #eee5e2;
        border-radius: 17px;
        background: #fff;
        transition: all 0.3s ease;
    }

    .course-item:hover {
        transform: translateX(7px);
        border-color: rgba(242, 100, 60, 0.25);
        box-shadow: 0 14px 35px rgba(65, 28, 28, 0.08);
    }

    .course-number {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: #fdf0ec;
        color: #f2643c;
        font-size: 13px;
        font-weight: 800;
    }

    .course-info {
        flex: 1;
    }

    .course-info h3 {
        margin: 0 0 5px;
        color: #351919;
        font-size: 17px;
        font-weight: 700;
    }

    .course-info p {
        margin: 0;
        color: #777;
        font-size: 13px;
        line-height: 1.55;
    }

    .course-arrow {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #6e1f1f;
        background: #f8f3f1;
        transition: all 0.3s ease;
    }

    .course-item:hover .course-arrow {
        background: #6e1f1f;
        color: #fff;
        transform: rotate(-45deg);
    }

    /* ============================
       BOTTOM CTA
       ============================ */

    .program-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-top: 30px;
    }

    .program-note {
        color: #777;
        font-size: 13px;
    }

    .program-note i {
        margin-right: 6px;
        color: #f2643c;
    }

    .program-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 14px 22px;
        border-radius: 12px;
        background: #6e1f1f;
        color: #fff !important;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none !important;
        box-shadow: 0 12px 25px rgba(110, 31, 31, 0.20);
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .program-btn span {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f2643c;
        transition: transform 0.3s ease;
    }

    .program-btn:hover {
        background: #f2643c;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(242, 100, 60, 0.25);
    }

    .program-btn:hover span {
        transform: translateX(3px);
        background: #fff;
        color: #f2643c;
    }

    /* ============================
       TABLET
       ============================ */

    @media (max-width: 991px) {

        .nursing-programs-section {
            padding: 70px 0;
        }

        .program-image-wrapper {
            padding-right: 0;
            margin-bottom: 50px;
        }

        .program-content {
            padding-left: 0;
        }

        .program-image-box,
        .program-image-box img {
            min-height: 500px;
            height: 500px;
        }

        .program-heading {
            font-size: 40px;
        }

        .program-floating-badge {
            left: 15px;
        }
    }

    /* ============================
       MOBILE
       ============================ */

    @media (max-width: 767px) {

        .nursing-programs-section {
            padding: 55px 0;
        }

        .programs-container {
            width: 90%;
        }

        .program-image-wrapper {
            margin-bottom: 40px;
        }

        .program-image-box {
            min-height: 390px;
            height: 390px;
            border-radius: 22px;
        }

        .program-image-box img {
            height: 390px;
        }

        .program-image-overlay {
            left: 12px;
            right: 12px;
            bottom: 12px;
            padding: 17px 18px;
        }

        .program-image-overlay strong {
            font-size: 17px;
        }

        .program-floating-badge {
            top: 15px;
            left: 12px;
            padding: 10px 13px;
        }

        .program-heading {
            font-size: 32px;
            line-height: 1.18;
        }

        .program-intro {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .course-item {
            gap: 12px;
            padding: 15px;
        }

        .course-number {
            flex: 0 0 42px;
            width: 42px;
            height: 42px;
            border-radius: 12px;
        }

        .course-info h3 {
            font-size: 15px;
        }

        .course-info p {
            font-size: 12px;
        }

        .course-arrow {
            display: none;
        }

        .program-bottom {
            flex-direction: column;
            align-items: flex-start;
        }

        .program-btn {
            width: 100%;
            justify-content: center;
        }
    }



/* =========================================
   TADIKELA SUBBAIAH BRAND COLORS
========================================= */

:root {

    --ts-maroon: #6E1F1F;
    --ts-maroon-dark: #6E1F1F;
    --ts-maroon-light: #9A4A35;

    --ts-gold: #A77A32;
    --ts-gold-light: #C9A45C;

    --ts-brown: #332522;

    --ts-cream: #FBF8F2;
    --ts-light: #F6F3ED;

    --ts-text: #35302F;
    --ts-muted: #756D69;

    --ts-border: #E8DED2;
}


/* =========================================
   MAIN SECTION
========================================= */

.ts-antiragging {

    position: relative;

    padding: 100px 20px;

    background:

        radial-gradient(
            circle at 5% 10%,
            rgba(167,122,50,.09),
            transparent 28%
        ),

        radial-gradient(
            circle at 95% 90%,
            rgba(139,38,53,.08),
            transparent 30%
        ),

        var(--ts-cream);

    overflow: hidden;
}


.ts-ar-container {

    max-width: 1200px;

    margin: auto;

}


/* =========================================
   HEADING
========================================= */

.ts-ar-heading {

    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;

}


.ts-ar-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 16px;

    border-radius: 50px;

    background: rgba(139,38,53,.07);

    border: 1px solid rgba(139,38,53,.15);

    color: var(--ts-maroon);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.6px;

}


.ts-ar-label-icon {

    color: var(--ts-gold);

    font-size: 15px;

}


.ts-ar-heading h2 {

    margin: 20px 0 14px;

    color: var(--ts-brown);

    font-size: clamp(38px,5vw,58px);

     line-height: 1.4em;

    font-weight: 700;

    letter-spacing: -1.5px;
    
    
    
   
    font-size: 35px;
   

}


.ts-ar-heading h2 span {

    color: var(--ts-maroon);

}


.ts-ar-heading p {

    margin: 0;

    color: var(--ts-muted);

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================
   HERO
========================================= */

.ts-ar-hero {

    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;

    padding: 60px 70px;

    overflow: hidden;

    border-radius: 30px;

    background:

        radial-gradient(
            circle at 90% 50%,
            rgba(199,157,75,.20),
            transparent 30%
        ),

        linear-gradient(
            120deg,
            #42151f,
            #6E1F1F 50%,
            #9A4A35
        );

    box-shadow:
        0 25px 70px rgba(80,20,30,.18);

}


/* Gold border */

.ts-ar-hero::before {

    content: "";

    position: absolute;

    inset: 12px;

    border: 1px solid rgba(201,164,92,.25);

    border-radius: 22px;

    pointer-events: none;

}


/* Decorative circles */

.ts-ar-circle {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(201,164,92,.20);

}


.circle-1 {

    width: 500px;

    height: 500px;

    right: -100px;

    top: -200px;

}


.circle-2 {

    width: 300px;

    height: 300px;

    right: 40px;

    bottom: -200px;

}


/* =========================================
   HERO CONTENT
========================================= */

.ts-ar-hero-content {

    position: relative;

    z-index: 3;

    max-width: 600px;

}


.ts-ar-policy {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: var(--ts-gold-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.ts-ar-policy span {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: var(--ts-gold-light);

    box-shadow:
        0 0 0 5px rgba(201,164,92,.12);

}


.ts-ar-hero-content h3 {

    margin: 0 0 20px;

    color: white;

    font-size: clamp(44px,6vw,68px);

    line-height: .98;

    font-weight: 800;

    letter-spacing: -2px;

}


.ts-ar-hero-content h3 strong {

    color: var(--ts-gold-light);

}


.ts-ar-hero-content p {

    max-width: 530px;

    margin: 0 0 30px;

    color: rgba(255,255,255,.76);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================
   BUTTONS
========================================= */

.ts-ar-buttons {

    display: flex;

    align-items: center;

    gap: 12px;

}


.ts-ar-primary-btn {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 14px 18px 14px 22px;

    border-radius: 50px;

    background: white;

    color: var(--ts-maroon);

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition: .3s ease;

}


.ts-ar-primary-btn:hover {

    color: var(--ts-maroon-dark);

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.22);

}


.ts-ar-primary-btn span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 31px;

    height: 31px;

    border-radius: 50%;

    background: var(--ts-gold);

    color: white;

    font-size: 17px;

}


.ts-ar-outline-btn {

    padding: 14px 21px;

    border: 1px solid rgba(255,255,255,.30);

    border-radius: 50px;

    color: white;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: .3s ease;

}


.ts-ar-outline-btn:hover {

    background: rgba(255,255,255,.1);

    color: white;

}


/* =========================================
   HERO VISUAL
========================================= */

.ts-ar-visual {

    position: absolute;

    right: 70px;

    top: 50%;

    width: 340px;

    height: 340px;

    transform: translateY(-50%);

}


.ts-ar-gold-ring {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(201,164,92,.28);

}


.ring-1 {

    width: 290px;

    height: 290px;

    left: 25px;

    top: 25px;

}


.ring-2 {

    width: 210px;

    height: 210px;

    left: 65px;

    top: 65px;

}


/* Shield */

.ts-ar-shield {

    position: absolute;

    left: 105px;

    top: 90px;

    width: 130px;

    height: 150px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--ts-gold);

    clip-path: polygon(
        50% 0%,
        92% 14%,
        88% 65%,
        50% 100%,
        12% 65%,
        8% 14%
    );

    filter:
        drop-shadow(
            0 20px 25px rgba(0,0,0,.25)
        );

}


.ts-ar-shield-inner {

    width: 105px;

    height: 125px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: white;

    color: var(--ts-maroon);

    clip-path: inherit;

    font-size: 55px;

    font-weight: 900;

}


/* Floating cards */

.ts-ar-floating {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 14px;

    border-radius: 12px;

    background: rgba(255,255,255,.97);

    box-shadow:
        0 15px 35px rgba(0,0,0,.20);

}


.safe-card {

    top: 15px;

    right: 0;

}


.dignity-card {

    bottom: 15px;

    left: 0;

}


.float-icon {

    width: 31px;

    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: rgba(139,38,53,.09);

    color: var(--ts-maroon);

    font-weight: 800;

}


.ts-ar-floating small {

    display: block;

    color: #938982;

    font-size: 9px;

}


.ts-ar-floating strong {

    display: block;

    color: var(--ts-brown);

    font-size: 11px;

}


/* =========================================
   INFO GRID
========================================= */

.ts-ar-info-grid {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 24px;

    margin-top: 25px;

}


.ts-ar-info-card {

    display: flex;

    gap: 20px;

    padding: 32px;

    background: white;

    border: 1px solid var(--ts-border);

    border-radius: 22px;

    box-shadow:
        0 10px 35px rgba(60,30,20,.05);

    transition: .3s ease;

}


.ts-ar-info-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 20px 45px rgba(60,30,20,.10);

}


/* Card icon */

.ts-ar-card-icon {

    flex-shrink: 0;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    font-size: 21px;

    font-weight: 800;

}


.ts-ar-card-icon.warning {

    background: rgba(139,38,53,.08);

    color: var(--ts-maroon);

}


.ts-ar-card-icon.action {

    background: rgba(167,122,50,.12);

    color: var(--ts-gold);

}


/* Card content */

.ts-ar-card-label {

    color: var(--ts-gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.ts-ar-card-content h4 {

    margin: 7px 0 9px;

    color: var(--ts-brown);

    font-size: 20px;

    font-weight: 800;

}


.ts-ar-card-content p {

    margin: 0 0 18px;

    color: var(--ts-muted);

    font-size: 13px;

    line-height: 1.7;

}


/* List */

.ts-ar-list {

    display: grid;

    gap: 8px;

}


.ts-ar-list div {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: #544B48;

    font-size: 12px;

    line-height: 1.5;

}


.ts-ar-list span {

    color: var(--ts-maroon);

    font-weight: 800;

}


/* =========================================
   CONTACT BANNER
========================================= */

.ts-ar-contact {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 25px;

    padding: 24px 28px;

    border-radius: 20px;

    background: var(--ts-maroon);

    box-shadow:
        0 15px 40px rgba(139,38,53,.15);

}


.ts-ar-contact-left {

    display: flex;

    align-items: center;

    gap: 18px;

}


.ts-ar-contact-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 15px;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.15);

    font-size: 24px;

}


.ts-ar-contact-left span {

    color: var(--ts-gold-light);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.ts-ar-contact-left h4 {

    margin: 4px 0 4px;

    color: white;

    font-size: 17px;

    font-weight: 800;

}


.ts-ar-contact-left p {

    margin: 0;

    color: rgba(255,255,255,.70);

    font-size: 12px;

}


.ts-ar-contact-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 18px;

    border-radius: 10px;

    background: white;

    color: var(--ts-maroon);

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;

    transition: .3s ease;

}


.ts-ar-contact-btn:hover {

    color: var(--ts-maroon-dark);

    transform: translateY(-2px);

}


.ts-ar-contact-btn span {

    color: var(--ts-gold);

    font-size: 17px;

}


/* =========================================
   TABLET
========================================= */

@media(max-width:1000px) {

    .ts-ar-hero {

        padding: 50px;

    }

    .ts-ar-visual {

        right: 0;

        opacity: .35;

    }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:768px) {

    .ts-antiragging {

        padding: 70px 16px;

    }


    .ts-ar-heading {

        margin-bottom: 35px;

    }


    .ts-ar-heading h2 {

        font-size: 38px;

    }


    .ts-ar-hero {

        min-height: auto;

        padding: 42px 27px;

        border-radius: 23px;

    }


    .ts-ar-hero-content {

        max-width: 100%;

    }


    .ts-ar-hero-content h3 {

        font-size: 47px;

    }


    .ts-ar-hero-content p {

        font-size: 14px;

    }


    .ts-ar-visual {

        display: none;

    }


    .ts-ar-info-grid {

        grid-template-columns: 1fr;

    }


    .ts-ar-info-card {

        padding: 25px 20px;

    }


    .ts-ar-contact {

        flex-direction: column;

        align-items: flex-start;

        padding: 25px 20px;

    }


    .ts-ar-contact-btn {

        width: 100%;

        justify-content: center;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px) {

    .ts-ar-heading h2 {

        font-size: 34px;

    }


    .ts-ar-hero-content h3 {

        font-size: 42px;

    }


    .ts-ar-buttons {

        flex-wrap: wrap;

    }


    .ts-ar-primary-btn {

        width: 100%;

        justify-content: space-between;

    }


    .ts-ar-outline-btn {

        width: 100%;

        text-align: center;

    }


    .ts-ar-info-card {

        flex-direction: column;

    }

}
