:root {
    --grad-color: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
}

.han-v8-section {
    padding: 60px 0;
    background: #fff;
    overflow-x: hidden;
}

/* 1440px Container Width as requested */
.han-v8-header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.han-v8-breadcrumb { font-size: 14px; color: #888; margin-bottom: 25px; }
.han-v8-home { color: #1e293b; font-weight: 500; }
.han-v8-sep { margin: 0 5px; color: #cbd5e1; }

/* Header Flex */
.han-v8-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 45px;
}

.han-v8-badge {
    color: #2563eb;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    
}


/* Title Font Weight 600 as requested */
.han-v8-heading {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 600; 
    line-height: 1.1;
    color: #0f172a;
    margin: 0;
}

/* Gradient Border Buttons */
.han-v8-nav-group { display: flex; gap: 15px; }

.v8-btn-wrapper {
    background: var(--grad-color);
    padding: 1.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease;
}

.v8-btn-wrapper button {
    color: black;
    background: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.v8-btn-wrapper:hover { transform: translateY(-2px); }
.v8-btn-wrapper:hover button { background: transparent; }
.v8-btn-wrapper:hover button span { color: #fff; }

/* Swiper Slider Logic */
.han-v8-slider { padding: 15px 0 0px; width: 100%; }

.swiper-slide {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.3; /* Side videos 30% opacity */
    transform: scale(0.85);
}

.swiper-slide-active {
    opacity: 1; /* Center video clear */
    transform: scale(1);
}

.han-v8-card { width: 100%; }

.han-v8-video-box {
    border-radius: 30px;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.han-v8-video-box iframe {
    position: absolute;
    width: 100%; height: 100%; top: 0; left: 0;
}

.han-v8-info {
    margin-top: 25px;
    text-align: left;
    transition: 0.4s ease;
    opacity: 0;
}

.swiper-slide-active .han-v8-info { opacity: 1; }

.han-v8-name { font-size: 24px; font-weight: 700; color: #1e293b; margin: 0; }
.han-v8-role { color: #64748b; font-size: 16px; margin: 5px 0 0; }

/* Fully Responsive Breakpoints */
@media (max-width: 1024px) {
    .han-v8-header-flex { margin-bottom: 30px; }
}

@media (max-width: 768px) {
    .han-v8-header-flex { flex-direction: column; align-items: flex-start; gap: 20px; }
    .han-v8-heading { font-size: 30px; }
    .han-v8-nav-group { width: 100%; justify-content: flex-start; }
}



/*Start Testimonials Card Section Code */
/* Container and Font */
.han-testi-section {
    padding: 60px 20px;
    /*background-color: #F8FAFC;*/
    font-family: 'Bricolage Grotesque', sans-serif;
}

.han-testi-container {
    max-width: 1440px;
    margin: 0 auto;
}

.han-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Style */
.han-testi-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 28px; /* Matching the soft rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #F1F5F9;
}

/* Quote Circle - Matching image_24970f.png */
.han-testi-quote-circle {
    width: 54px;
    height: 54px;
    background-color: #F1F5F9; /* Subtle gray/blue circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.han-testi-body p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 30px;
    min-height: 100px;
}

/* Horizontal Divider - Matching image_2496d1.png */
/*.han-testi-divider {*/
/*    height: 1px;*/
/*    background-color: #F1F5F9;*/
/*    width: 100%;*/
/*    margin-bottom: 25px;*/
/*}*/

/* Footer Section */
.han-testi-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.han-testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.han-testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.han-testi-meta h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
}

.han-testi-meta span {
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 4px;
}

/* Responsive Handling for 12" Laptop and Mobile */
@media (max-width: 1200px) {
    .han-testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .han-testi-grid {
        grid-template-columns: 1fr;
    }
    .han-testi-card {
        padding: 30px;
    }
}
/*End Testimonials Card Section Code */