/**
 * HOME V3 - UNIQUE LAYOUT STYLESHEET
 * =============================================
 * Layout: Different from V2 - Centered hero, Static grids, Magazine layout
 * Colors: Global theme colors (#f5aa72, #f5aa72)
 * =============================================
 */

/* =============================================
   BASE WRAPPER
   ============================================= */
.home-v3 {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

/* =============================================
   V3 HERO - CENTERED LAYOUT
   ============================================= */
.v3-hero {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0px;
}

.v3-hero-bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    z-index: 1;
}

.v3-hero-overlay {
    position: absolute;
    inset: 0;
    background: #631e1a7a;
    z-index: 2;
}

.v3-hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 3;
    opacity: 0.1;
}

.v3-hero-shape-1 {
    width: 400px;
    height: 400px;
    background: #f5aa72;
    top: -100px;
    right: -100px;
}

.v3-hero-shape-2 {
    width: 300px;
    height: 300px;
    background: #fff;
    bottom: -50px;
    left: -50px;
}

.v3-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.v3-hero-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.v3-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 24px;
    margin-bottom: 30px;
}

.v3-hero-badge i {
    color: #f5aa72;
    font-size: 18px;
}

.v3-hero-badge span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.v3-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.v3-hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.v3-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.v3-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5aa72;
    color: #fff;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.v3-btn-primary:hover {
    /* background: #b91c22; */
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 32, 39, 0.4);
    color: #fff;
}

.v3-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 16px 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.v3-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* =============================================
   V3 WELCOME - DARK HORIZONTAL BAR (Same as About Page)
   ============================================= */
.v3-welcome {
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.v3-welcome-bar {
    background: linear-gradient(135deg, #631e1a 0%, #631e1a 100%);
    border-radius: 20px;
    padding: 24px 50px;
    box-shadow: 0 15px 50px rgba(40, 46, 121, 0.3);
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.v3-welcome-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 32, 39, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: v3WelcomePulse 8s ease-in-out infinite;
}

.v3-welcome-bar::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(40, 46, 121, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes v3WelcomePulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.2); opacity: 0.25; }
}

.v3-welcome-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.v3-welcome-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.v3-welcome-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}

.v3-welcome-form {
    display: flex;
    gap: 15px;
    flex: 1.5;
    position: relative;
    z-index: 1;
}

.v3-welcome-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.v3-welcome-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.v3-welcome-input:focus {
    outline: none;
    border-color: #f5aa72;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(217, 32, 39, 0.2);
}

.v3-welcome-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, #f5aa72 0%, #f5aa72 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: none;
}

.v3-welcome-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(217, 32, 39, 0.4);
    background: linear-gradient(135deg, #b91c22 0%, #a01920 100%);
}

.v3-welcome-btn i {
    font-size: 14px;
}

/* =============================================
   V3 FEATURES - STATIC GRID
   ============================================= */
.v3-features {
    padding: 100px 0;
    background: #fff;
}

.v3-features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.v3-features-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #f5aa72;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.v3-features-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin: 0;
}

.v3-features-header-right {
    max-width: 400px;
}

.v3-features-header-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 20px;
}

.v3-features-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #f5aa72;
    text-decoration: none;
    transition: all 0.3s;
}

.v3-features-link:hover {
    color: #f5aa72;
}

.v3-features-link i {
    transition: transform 0.3s;
}

.v3-features-link:hover i {
    transform: translateX(5px);
}

/* Features Grid */
.v3-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.v3-feature-card {
    background: #f8fafc;
    border: 2px solid #631e1a;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.v3-feature-card:hover {
    background: #fff;
    border-color: #f5aa72;
    box-shadow: 0 20px 50px rgba(40, 46, 121, 0.1);
    transform: translateY(-5px);
}

.v3-feature-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(40, 46, 121, 0.08);
    line-height: 1;
}

.v3-feature-card:hover .v3-feature-number {
    color: rgba(217, 32, 39, 0.15);
}

.v3-feature-content {
    flex: 1;
}

.v3-feature-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.v3-feature-icon i {
    font-size: 24px;
    color: #f5aa72;
    transition: all 0.3s;
}

.v3-feature-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.v3-feature-card:hover .v3-feature-icon {
    background: #f5aa72;
    border-color: #f5aa72;
}

.v3-feature-card:hover .v3-feature-icon i {
    color: #fff;
}

.v3-feature-card:hover .v3-feature-icon img {
    filter: brightness(0) invert(1);
}

.v3-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.v3-feature-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.v3-feature-arrow {
    margin-top: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.v3-feature-arrow i {
    color: #f5aa72;
    font-size: 18px;
}

.v3-feature-card:hover .v3-feature-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   V3 NEWS - MAGAZINE LAYOUT
   ============================================= */
.v3-news {
    padding: 100px 0;
    background: #f8fafc;
}

.v3-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.v3-news-tag {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #f5aa72;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.v3-news-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

.v3-news-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #f5aa72;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.v3-news-btn:hover {
    background: #f5aa72;
    color: #fff;
}

/* Magazine Layout */
.v3-news-magazine {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

/* Featured Card */
.v3-news-featured {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.v3-featured-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.v3-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.v3-news-featured:hover .v3-featured-img img {
    transform: scale(1.05);
}

.v3-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}

.v3-featured-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f5aa72;
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    text-align: center;
}

.v3-featured-date .day {
    display: block;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

 body span.v3-counter , body .v3-stat-number .v3-stat-suffix {
    font-size: 18px !important;
}

.v3-featured-date .month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
}

.v3-featured-content {
    padding: 30px;
}

.v3-featured-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.v3-featured-meta span {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.v3-featured-meta i {
    color: #f5aa72;
    font-size: 12px;
}

.v3-featured-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 15px;
}

.v3-featured-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s;
}

.v3-featured-title a:hover {
    color: #f5aa72;
}

.v3-featured-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 20px;
}

.v3-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #f5aa72;
    text-decoration: none;
    transition: all 0.3s;
}

.v3-featured-link:hover {
    color: #f5aa72;
}

.v3-featured-link i {
    transition: transform 0.3s;
}

.v3-featured-link:hover i {
    transform: translateX(5px);
}

/* Side Cards */
.v3-news-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.v3-side-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.v3-side-card:hover {
    box-shadow: 0 15px 40px rgba(40, 46, 121, 0.1);
    transform: translateY(-3px);
}

.v3-side-img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.v3-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v3-side-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v3-side-date {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.v3-side-date i {
    color: #f5aa72;
}

.v3-side-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 8px;
}

.v3-side-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s;
}

.v3-side-title a:hover {
    color: #f5aa72;
}

.v3-side-location {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.v3-side-location i {
    color: #f5aa72;
    font-size: 11px;
}

/* =============================================
   V3 STATS - HORIZONTAL BAR
   ============================================= */
.v3-stats {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.v3-stats-bg {
    position: absolute;
    inset: 0;
    background: #631e1a;
    /* background: linear-gradient(178deg, #f5aa72 0%, #000000 50%, #631e1a 100%); */
}

.v3-stats-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.v3-stats-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #f5aa72;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.v3-stats-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

/* Stats Bar */
.v3-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 50px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 20px;
}

.v3-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
}

.v3-stat-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(217, 32, 39, 0.15);
    border: 2px solid #f5aa72;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v3-stat-icon-circle i {
    font-size: 26px;
    color: #f5aa72;
}

.v3-stat-data {
    text-align: left;
}

.v3-stat-number {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.v3-counter {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.v3-stat-suffix {
    font-size: 28px;
    font-weight: 700;
    color: #f5aa72;
}

.v3-stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 8px 0 0;
}

.v3-stat-separator {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
}

/* =============================================
   V3 AID - HORIZONTAL CARDS
   ============================================= */
.v3-aid {
    padding: 100px 0;
    background: #fff;
}

.v3-aid-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.v3-aid-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #f5aa72;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.v3-aid-title {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 16px;
}

.v3-aid-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Aid Cards */
.v3-aid-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.v3-aid-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
}

.v3-aid-card:hover {
    box-shadow: 0 25px 60px rgba(40, 46, 121, 0.1);
}

.v3-aid-card-img {
    position: relative;
    min-height: 350px;
}

.v3-aid-card-img.v3-order-2 {
    order: 2;
}

.v3-aid-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v3-aid-card-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #f5aa72;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-aid-card-badge i {
    font-size: 26px;
    color: #fff;
}

.v3-aid-card-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v3-aid-card-num {
    font-size: 60px;
    font-weight: 800;
    color: rgba(40, 46, 121, 0.08);
    line-height: 1;
    margin-bottom: 20px;
}

.v3-aid-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 15px;
    line-height: 1.3;
}

.v3-aid-card-title span {
    color: #f5aa72;
}

.v3-aid-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 25px;
}

.v3-aid-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.v3-aid-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    padding: 8px 0;
}

.v3-aid-card-features li i {
    color: #f5aa72;
    font-size: 14px;
}

.v3-aid-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    background: #631e1a;
    padding: 10px 30px;
    width: fit-content;
    border-radius: 11px;
}

.v3-aid-card-btn:hover {
    color: #f5aa72;
}

.v3-aid-card-btn i {
    transition: transform 0.3s;
}

.v3-aid-card-btn:hover i {
    transform: translateX(5px);
}
.v3-aid-card-btn
/* Aid CTA */
.v3-aid-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:#f5aa72;
    border-radius: 16px;
    padding: 30px 40px;
    margin-top: 50px;
}

.v3-aid-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.v3-aid-cta-content i {
    font-size: 32px;
    color: #fff;
}

.v3-aid-cta-content p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.v3-aid-cta-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #f5aa72;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.v3-aid-cta-btn:hover {
    background: #f5aa72;
    color: #fff;
}

/* =============================================
   V3 TESTIMONIALS - LARGE CARD SLIDER
   ============================================= */
.v3-testimonials {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.v3-testimonials-bg {
    position: absolute;
    inset: 0;
    background: #631e1a;
}

.v3-testimonials-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.v3-testimonials-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.v3-testimonials-info {
    color: #fff;
}

.v3-testimonials-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #f5aa72;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.v3-testimonials-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.2;
}

.v3-testimonials-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 40px;
}

/* Navigation */
.v3-testimonials-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.v3-testi-prev,
.v3-testi-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-testi-prev:hover,
.v3-testi-next:hover {
    background: #f5aa72;
    border-color: #f5aa72;
}

.v3-testi-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 18px;
    color: #fff;
}

.v3-current {
    font-weight: 700;
    font-size: 24px;
}

.v3-separator {
    color: rgba(255, 255, 255, 0.4);
}

.v3-total {
    color: rgba(255, 255, 255, 0.5);
}

/* Slider */
.v3-testimonials-slider {
    overflow: hidden;
}

.v3-testi-carousel {
    margin: 0;
}

.v3-testi-slide {
    padding: 10px;
}

.v3-testi-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
}

.v3-testi-quote {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: rgba(217, 32, 39, 0.2);
}

.v3-testi-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.v3-testi-rating i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
}

.v3-testi-rating i.active {
    color: #f5aa72;
}

.v3-testi-text {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px;
    font-style: italic;
}

.v3-testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v3-testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f5aa72 0%, #f5aa72 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #f5aa72;
}

.v3-testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v3-testi-avatar span {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.v3-testi-author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.v3-testi-author-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* =============================================
   V3 ACCREDITATIONS - STATIC GRID
   ============================================= */
.v3-accreditations {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 50%, #f8fafc 100%);
}

.v3-accred-header {
    text-align: center;
    margin-bottom: 60px;
}

.v3-accred-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background:#f5aa72;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.v3-accred-badge i {
    font-size: 16px;
}

.v3-accred-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 16px;
}

.v3-accred-subtitle {
    font-size: 17px;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Logo Single Line */
.v3-accred-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.v3-accred-item {
    position: relative;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    min-width: 140px;
    flex: 0 0 auto;
    transition: all 0.4s;
    overflow: hidden;
}

.v3-accred-item:hover {
    border-color: #f5aa72;
    box-shadow: 0 15px 40px rgba(40, 46, 121, 0.12);
}

.v3-accred-logo img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s;
}

.v3-accred-item:hover .v3-accred-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer */
.v3-accred-footer {
    text-align: center;
    margin-top: 50px;
}

.v3-accred-footer p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.v3-accred-footer strong {
    color: #f5aa72;
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
   ============================================= */
@media (max-width: 1199px) {
    .v3-hero-title {
        font-size: 48px;
    }

    .v3-testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .v3-testimonials-info {
        text-align: center;
    }

    .v3-testimonials-nav {
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .v3-hero-title {
        font-size: 40px;
    }

    .v3-welcome-bar {
        flex-direction: column;
        gap: 25px;
        padding: 30px;
    }

    .v3-welcome-text {
        text-align: center;
    }

    .v3-welcome-form {
        flex-direction: column;
        width: 100%;
    }

    .v3-welcome-btn {
        justify-content: center;
    }

    .v3-features-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .v3-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v3-news-magazine {
        grid-template-columns: 1fr;
    }

    .v3-news-side {
        flex-direction: row;
    }

    .v3-side-card {
        flex: 1;
    }

    .v3-stats-bar {
        flex-direction: column;
        gap: 30px;
    }

    .v3-stat-separator {
        width: 80%;
        height: 1px;
    }

    .v3-aid-card {
        grid-template-columns: 1fr;
    }

    .v3-aid-card-img {
        min-height: 250px;
        order: 0 !important;
    }

    .v3-accred-grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .v3-hero {
        padding: 100px 0 60px;
    }

    .v3-hero-title {
        font-size: 32px;
    }

    .v3-hero-buttons {
        flex-direction: column;
    }

    .v3-btn-primary,
    .v3-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .v3-welcome {
        margin-top: -30px;
    }

    .v3-welcome-bar {
        padding: 25px 20px;
    }

    .v3-welcome-text h2 {
        font-size: 20px;
    }

    .v3-welcome-text p {
        font-size: 14px;
    }

    .v3-features-grid {
        grid-template-columns: 1fr;
    }

    .v3-news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .v3-news-side {
        flex-direction: column;
    }

    .v3-side-card {
        flex-direction: column;
    }

    .v3-side-img {
        width: 100%;
        height: 180px;
    }

    .v3-aid-card-content {
        padding: 30px;
    }

    .v3-aid-cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .v3-aid-cta-content {
        flex-direction: column;
    }

    .v3-testi-card {
        padding: 30px;
    }

    .v3-testi-text {
        font-size: 16px;
    }

    .v3-accred-grid {
        flex-wrap: wrap;
        gap: 15px;
    }

    .v3-accred-item {
        min-width: 120px;
        height: 80px;
        padding: 15px 20px;
    }
}

@media (max-width: 479px) {
    .v3-hero-title {
        font-size: 28px;
    }

    .v3-features-title,
    .v3-news-title,
    .v3-stats-title,
    .v3-aid-title,
    .v3-testimonials-title,
    .v3-accred-title {
        font-size: 28px;
    }

    .v3-counter {
        font-size: 36px;
    }
   

    .v3-accred-grid {
        gap: 10px;
    }

    .v3-accred-item {
        min-width: 100px;
        height: 70px;
        padding: 10px 15px;
    }
}
