/* Tantu Hero Slider Premium Styling */

:root {
    --tantu-slate: #002e5c;
    --tantu-gold: #c5a059;
    --tantu-navy: #0b223f;
    --tantu-blue: #2563eb;
}

.tantu-hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f3f4f6;
}

.tantu-swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.tantu-swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Image covering right portion */
.tantu-slide-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center;
    z-index: 1;
    transform: scale(1);
    transition: transform 0.5s ease-in-out;
}

.swiper-slide-active .tantu-slide-bg {
    transform: scale(1.06);
    transition: transform 8s cubic-bezier(0.15, 0.25, 0.3, 1);
}

/* Left Panel Curved Overlay */
.tantu-slide-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 52%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-left: 8%;
    padding-right: 8%;
}

.tantu-panel-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: drop-shadow(8px 0px 25px rgba(11, 34, 63, 0.08));
}

/* Dots Pattern inside panel */
.tantu-slide-panel::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 50px;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(var(--tantu-blue) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
}

.tantu-panel-content-inner {
    position: relative;
    z-index: 3;
    max-width: 580px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Welcome Badge styling */
.tantu-slide-badge {
    display: inline-flex;
    align-items: center;
    color: var(--tantu-blue);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tantu-slide-badge::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 2px;
    background-color: var(--tantu-blue);
    margin-right: 8px;
}

.tantu-slide-badge::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: var(--tantu-blue);
    margin-left: 8px;
}

/* Staggered Animations for Text Elements */
.tantu-slide-badge,
.tantu-slide-title,
.tantu-slide-desc,
.tantu-slide-buttons,
.tantu-stats-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.swiper-initialized .swiper-slide:not(.swiper-slide-active) .tantu-slide-badge,
.swiper-initialized .swiper-slide:not(.swiper-slide-active) .tantu-slide-title,
.swiper-initialized .swiper-slide:not(.swiper-slide-active) .tantu-slide-desc,
.swiper-initialized .swiper-slide:not(.swiper-slide-active) .tantu-slide-buttons,
.swiper-initialized .swiper-slide:not(.swiper-slide-active) .tantu-stats-card {
    opacity: 0;
    transform: translateY(30px);
    transition: none;
}

.swiper-slide-active .tantu-slide-badge { transition-delay: 0.2s; }
.swiper-slide-active .tantu-slide-title { transition-delay: 0.4s; }
.swiper-slide-active .tantu-slide-desc { transition-delay: 0.5s; }
.swiper-slide-active .tantu-slide-buttons { transition-delay: 0.7s; }
.swiper-slide-active .tantu-stats-card { transition-delay: 0.9s; }

/* Title Typography & Highlights */
.tantu-slide-title {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--tantu-navy) !important;
    line-height: 1.15;
}

.tantu-slide-title span.highlight {
    color: var(--tantu-blue) !important;
}

.tantu-slide-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #4b5563 !important;
    line-height: 1.6;
}

/* Premium Buttons Styling */
.tantu-btn-primary,
.tantu-btn-secondary {
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    text-transform: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 13px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tantu-btn-primary {
    background-color: var(--tantu-blue);
    border: 1px solid var(--tantu-blue);
    color: #ffffff;
}

.tantu-btn-primary:hover {
    background-color: var(--tantu-navy);
    border-color: var(--tantu-navy);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 34, 63, 0.15);
}

.tantu-btn-secondary {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    color: var(--tantu-navy);
}

.tantu-btn-secondary:hover {
    background-color: #f9fafb;
    border-color: var(--tantu-blue);
    color: var(--tantu-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}

/* Floating Stats Card */
.tantu-stats-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(11, 34, 63, 0.05);
    padding: 18px 24px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
    gap: 20px;
    margin-top: 15px;
    width: fit-content;
}

.tantu-stat-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tantu-stat-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--tantu-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.tantu-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--tantu-navy);
    line-height: 1.1;
}

.tantu-stat-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}

.tantu-stat-divider {
    width: 1px;
    height: 32px;
    background-color: #e5e7eb;
}

/* Navigation Buttons override */
.tantu-swiper-button.swiper-button-next,
.tantu-swiper-button.swiper-button-prev {
    background-color: #ffffff !important;
    border: none !important;
    color: var(--tantu-navy) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    z-index: 10;
    transition: all 0.3s ease;
}

.tantu-swiper-button.swiper-button-next:hover,
.tantu-swiper-button.swiper-button-prev:hover {
    background-color: var(--tantu-blue) !important;
    color: #ffffff !important;
    transform: scale(1.08);
}

.tantu-swiper-button.swiper-button-prev { left: 24px !important; }
.tantu-swiper-button.swiper-button-next { right: 24px !important; }

/* Custom Pagination Bullets styling */
.tantu-swiper-pagination.swiper-pagination-bullets {
    bottom: 120px !important;
    right: 48px !important;
    left: auto !important;
    width: auto !important;
    z-index: 10;
}

.tantu-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 6px;
    border-radius: 3px;
    background-color: #d1d5db;
    opacity: 1;
    border: none !important;
    margin: 0 4px !important;
    transition: all 0.3s ease;
}

.tantu-swiper-pagination .swiper-pagination-bullet-active {
    width: 24px;
    background-color: var(--tantu-blue) !important;
}

/* Bottom Features Bar */
.tantu-features-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: 100%;
    padding: 0 48px;
    pointer-events: auto;
}

.tantu-features-grid {
    background-color: var(--tantu-navy);
    border-radius: 24px 24px 0 0;
    padding: 24px 40px;
    box-shadow: 0 -10px 30px rgba(11, 34, 63, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tantu-feature-col {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.tantu-feature-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tantu-feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.tantu-feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.4;
}

.tantu-feature-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    align-self: center;
    margin-left: auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .tantu-slide-panel {
        width: 58%;
        padding-left: 6%;
    }
    .tantu-slide-title {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .tantu-swiper-button.swiper-button-next,
    .tantu-swiper-button.swiper-button-prev {
        display: none !important; /* Hide arrows on tablets */
    }
    
    .tantu-slide-panel {
        width: 65%;
        clip-path: ellipse(90% 100% at 10% 50%);
    }

    .tantu-swiper-pagination.swiper-pagination-bullets {
        bottom: 150px !important;
        right: 24px !important;
    }
    
    .tantu-features-bar {
        padding: 0 20px;
    }
    .tantu-features-grid {
        padding: 20px 24px;
    }
    .tantu-feature-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .tantu-hero-slider-wrapper {
        height: auto !important;
        min-height: auto !important;
    }

    .tantu-swiper-container {
        height: auto !important;
    }

    .tantu-swiper-slide {
        height: auto !important;
        flex-direction: column;
        align-items: stretch;
    }

    .tantu-slide-bg {
        position: relative;
        width: 100%;
        height: 280px;
        top: 0;
        right: 0;
    }

    .tantu-slide-panel {
        position: relative;
        width: 100% !important;
        height: auto;
        min-height: auto;
        clip-path: none !important;
        padding: 30px 20px 40px 20px !important;
        background: #ffffff;
    }

    .tantu-slide-panel::before {
        display: none; /* Hide dots pattern on mobile */
    }

    .tantu-slide-title {
        font-size: 28px !important;
        line-height: 1.25;
    }

    .tantu-swiper-pagination.swiper-pagination-bullets {
        top: 250px !important;
        bottom: auto !important;
        right: 15px !important;
    }

    .tantu-stats-card {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        margin-top: 10px;
    }
    
    .tantu-stat-col {
        width: 100%;
    }
    
    .tantu-stat-divider {
        display: none !important;
    }

    .tantu-features-bar {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        padding: 0;
        margin-top: 0 !important;
    }

    .tantu-features-grid {
        border-radius: 0 !important;
        padding: 24px 20px;
        gap: 20px;
    }
    
    .tantu-panel-svg {
        display: none !important;
    }
}

/* ==========================================
   Tantu Objectives Section Styling
   ========================================== */
.tantu-objectives-section {
    background: radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.02), transparent 40%),
                radial-gradient(circle at 10% 90%, rgba(197, 160, 89, 0.02), transparent 40%),
                #ffffff;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Header & Title Ornament */
.tantu-obj-subtitle {
    color: var(--tantu-blue) !important;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: 0.2em !important;
    font-weight: 700 !important;
    font-size: 13px !important;
}

.tantu-obj-header-line {
    width: 32px;
    height: 3px;
    background-color: var(--tantu-blue);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.tantu-obj-title {
    color: var(--tantu-navy) !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 38px !important;
    font-weight: 800 !important;
    margin-top: 12px !important;
}

.tantu-obj-title span.highlight {
    color: var(--tantu-blue) !important;
}

.tantu-obj-desc {
    color: #5b6577 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}

.tantu-obj-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.tantu-obj-ornament .bar {
    width: 32px;
    height: 4px;
    background-color: var(--tantu-blue);
    border-radius: 2px;
}

.tantu-obj-ornament .dot {
    width: 6px;
    height: 6px;
    background-color: var(--tantu-blue);
    border-radius: 50%;
}

.tantu-obj-ornament .dot.small {
    width: 4px;
    height: 4px;
}

/* Grid & Cards Layout */
.tantu-obj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tantu-obj-card {
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 32px;
    box-shadow: 0 15px 45px rgba(11, 34, 63, 0.02);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tantu-obj-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--card-theme-bg), transparent 60%);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.tantu-obj-card-content {
    position: relative;
    z-index: 2;
}

/* Large Faint Number */
.tantu-obj-card-number {
    position: absolute;
    top: 25px;
    right: 35px;
    font-family: 'Outfit', sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    color: rgba(15, 23, 42, 0.03);
    user-select: none;
    z-index: 1;
    transition: color 0.3s ease;
}

.tantu-obj-card:hover .tantu-obj-card-number {
    color: var(--card-theme-bg);
}

/* Icon Wrap & Crescent Accent */
.tantu-obj-card-icon-wrap {
    position: relative;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background-color: var(--card-theme-bg);
    color: var(--card-theme);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
}

.tantu-obj-card-icon-wrap::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: var(--card-theme);
    border-right-color: var(--card-theme);
    transform: rotate(-45deg);
    transition: transform 0.6s ease;
}

.tantu-obj-card:hover .tantu-obj-card-icon-wrap::after {
    transform: rotate(135deg);
}

.tantu-obj-card-icon-wrap svg {
    width: 32px;
    height: 32px;
    color: var(--card-theme);
    transition: all 0.3s ease;
}

.tantu-obj-card-title {
    font-family: 'Outfit', sans-serif !important;
    color: var(--tantu-navy) !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    transition: color 0.3s ease;
}

.tantu-obj-card:hover .tantu-obj-card-title {
    color: var(--card-theme) !important;
}

.tantu-obj-card-desc {
    font-family: 'Inter', sans-serif !important;
    color: #6b7280 !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
}

/* Pill CTA Button */
.tantu-obj-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 44px;
    padding: 0 8px 0 24px;
    border-radius: 22px;
    border: 1.5px solid var(--card-theme);
    color: var(--card-theme);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: fit-content;
    position: relative;
    z-index: 2;
}

.tantu-obj-btn-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--card-theme);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.tantu-obj-btn-arrow svg {
    width: 14px;
    height: 14px;
    color: #ffffff;
}

.tantu-obj-btn:hover {
    background-color: var(--card-theme);
    color: #ffffff;
}

.tantu-obj-btn:hover .tantu-obj-btn-arrow {
    background-color: #ffffff;
    color: var(--card-theme);
    transform: translateX(2px);
}

.tantu-obj-btn:hover .tantu-obj-btn-arrow svg {
    color: var(--card-theme);
}

/* Hover States for Card */
.tantu-obj-card:hover {
    transform: translateY(-8px);
    border-color: var(--card-theme-bg);
    box-shadow: 0 25px 60px rgba(11, 34, 63, 0.08);
}

/* Pill-Shaped Stats Features Bar Styling */
.tantu-obj-stats-bar {
    width: 100%;
    background-color: var(--tantu-slate);
    border-radius: 100px;
    padding: 24px 48px;
    box-shadow: 0 15px 40px rgba(11, 34, 63, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tantu-obj-stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.tantu-obj-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.tantu-obj-stat-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.tantu-obj-stat-icon-wrap svg {
    width: 22px;
    height: 22px;
    color: #ffffff;
}

.tantu-obj-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.tantu-obj-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}

.tantu-obj-stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .tantu-obj-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .tantu-obj-stats-bar {
        border-radius: 30px;
        padding: 30px;
    }
    .tantu-obj-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .tantu-obj-stat-divider {
        display: none;
    }
    .tantu-obj-stat-item {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .tantu-obj-grid {
        grid-template-columns: 1fr;
    }
    .tantu-obj-card {
        padding: 30px;
        min-height: 320px;
    }
    .tantu-obj-title {
        font-size: 30px !important;
    }
}

@media (max-width: 575px) {
    .tantu-obj-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .tantu-obj-stats-bar {
        padding: 24px;
    }
}


