/**
 * About Page Styles
 * Primary: #19868b | Secondary: #e1273d | Dark: #0d6b6f
 */

/* ===========================================
   Hero Section
   =========================================== */
.about-hero-section {
    min-height: 450px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero-gradient {
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 50%, #095456 100%);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.about-hero-section .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.about-hero-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.about-hero-section .breadcrumb-item a:hover {
    color: #ffffff;
}

.about-hero-section .breadcrumb-item.active {
    color: #ffffff;
}

.about-hero-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.about-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===========================================
   Section Labels & Titles
   =========================================== */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.section-label.justify-content-center {
    justify-content: center;
}

.label-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #19868b 0%, #0d6b6f 100%);
    border-radius: 2px;
}

.label-text {
    font-size: 14px;
    font-weight: 600;
    color: #19868b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 25px;
    position: relative;
}

/* ===========================================
   About Section - Modern Design
   =========================================== */
.about-section-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    overflow: hidden;
}

/* Background Shapes */
.about-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.about-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.about-bg-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(25, 134, 139, 0.08) 0%, transparent 70%);
}

.about-bg-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(25, 134, 139, 0.06) 0%, transparent 70%);
}

.about-bg-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(225, 39, 61, 0.04) 0%, transparent 70%);
}

.about-modern-wrapper {
    position: relative;
    z-index: 1;
}

/* Modern Image Section */
.about-image-modern {
    position: relative;
    padding: 30px;
}

.about-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.about-image-inner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(25, 134, 139, 0.2);
}

.about-image-inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-modern:hover .about-image-inner img {
    transform: scale(1.05);
}

.about-image-border {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid #19868b;
    border-radius: 24px;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.about-image-modern:hover .about-image-border {
    top: -20px;
    left: -20px;
    opacity: 0.5;
}

/* Floating Elements */
.about-float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.about-float-element i {
    font-size: 24px;
    color: #19868b;
}

.about-float-1 {
    top: 10%;
    right: 0;
    animation-delay: 0s;
}

.about-float-2 {
    bottom: 20%;
    left: 0;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Experience Badge */
.about-experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    color: #ffffff;
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(25, 134, 139, 0.4);
    z-index: 10;
    transform: translate(10%, 10%);
}

.experience-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Modern Content Section */
.about-content-modern {
    padding: 20px 0 20px 40px;
}

/* Section Badge */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(25, 134, 139, 0.1) 0%, rgba(13, 107, 111, 0.15) 100%);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.about-badge .badge-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    border-radius: 50%;
}

.about-badge .badge-icon i {
    font-size: 12px;
    color: #ffffff;
}

.about-badge .badge-text {
    font-size: 14px;
    font-weight: 700;
    color: #19868b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Modern Title */
.about-title-modern {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.title-highlight {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, rgba(25, 134, 139, 0.2) 0%, rgba(25, 134, 139, 0.1) 100%);
    border-radius: 4px;
    z-index: -1;
}

/* Tagline */
.about-tagline {
    font-size: 18px;
    font-weight: 500;
    color: #19868b;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Modern Text */
.about-text-modern {
    position: relative;
    margin-bottom: 30px;
}

.about-text-content {
    font-size: 16px;
    line-height: 1.9;
    color: #5a5a5a;
    position: relative;
}

/* Key Points */
.about-key-points {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.key-point {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(25, 134, 139, 0.1);
    transition: all 0.3s ease;
}

.key-point:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(25, 134, 139, 0.15);
    border-color: rgba(25, 134, 139, 0.3);
}

.key-point-icon {
    color: #19868b;
    font-size: 18px;
}

.key-point span {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

/* Action Buttons */
.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #e1273d 0%, #c41e32 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(225, 39, 61, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-about-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-about-primary:hover::before {
    left: 100%;
}

.btn-about-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(225, 39, 61, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.btn-about-primary .btn-icon {
    font-size: 18px;
}

.btn-about-primary .btn-arrow {
    font-size: 14px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.btn-about-primary:hover .btn-arrow {
    transform: translateY(3px);
}

.btn-about-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: transparent;
    color: #19868b;
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
    border: 2px solid #19868b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about-secondary:hover {
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(25, 134, 139, 0.3);
    text-decoration: none;
}

.btn-about-secondary i {
    transition: transform 0.3s ease;
}

.btn-about-secondary:hover i {
    transform: translateX(5px);
}

/* Responsive Styles for Modern About Section */
@media (max-width: 1199px) {
    .about-section-modern {
        padding: 80px 0;
    }
    
    .about-title-modern {
        font-size: 36px;
    }
    
    .about-experience-badge {
        padding: 20px 28px;
    }
    
    .experience-number {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .about-section-modern {
        padding: 70px 0;
    }
    
    .about-content-modern {
        padding: 40px 0 0 0;
    }
    
    .about-image-modern {
        padding: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-title-modern {
        font-size: 32px;
    }
    
    .about-experience-badge {
        transform: translate(5%, 5%);
    }
}

@media (max-width: 767px) {
    .about-section-modern {
        padding: 60px 0;
    }
    
    .about-image-modern {
        padding: 15px;
    }
    
    .about-image-border {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }
    
    .about-float-element {
        width: 50px;
        height: 50px;
    }
    
    .about-float-element i {
        font-size: 20px;
    }
    
    .about-experience-badge {
        padding: 18px 24px;
        transform: translate(0, 0);
        right: 10px;
        bottom: 10px;
    }
    
    .experience-number {
        font-size: 32px;
    }
    
    .experience-text {
        font-size: 11px;
    }
    
    .about-title-modern {
        font-size: 28px;
    }
    
    .about-tagline {
        font-size: 16px;
    }
    
    .about-key-points {
        flex-direction: column;
    }
    
    .key-point {
        width: 100%;
    }
    
    .about-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .title-highlight {
        height: 8px;
    }
}

@media (max-width: 575px) {
    .about-float-1 {
        top: 5%;
        right: -5px;
    }
    
    .about-float-2 {
        bottom: 25%;
        left: -5px;
    }
    
    .about-badge {
        padding: 8px 16px;
    }
    
    .about-badge .badge-text {
        font-size: 12px;
    }
}

/* RTL Support for Modern About Section */
[dir="rtl"] .about-content-modern {
    padding: 20px 40px 20px 0;
}

[dir="rtl"] .about-image-border {
    left: 15px;
    right: -15px;
}

[dir="rtl"] .about-image-modern:hover .about-image-border {
    left: 20px;
    right: -20px;
}

[dir="rtl"] .about-float-1 {
    right: auto;
    left: 0;
}

[dir="rtl"] .about-float-2 {
    left: auto;
    right: 0;
}

[dir="rtl"] .about-experience-badge {
    right: auto;
    left: 0;
    transform: translate(-10%, 10%);
}

[dir="rtl"] .btn-about-secondary:hover i {
    transform: translateX(-5px);
}

@media (max-width: 991px) {
    [dir="rtl"] .about-content-modern {
        padding: 40px 0 0 0;
    }
}

@media (max-width: 767px) {
    [dir="rtl"] .about-experience-badge {
        transform: translate(0, 0);
        left: 10px;
        right: auto;
    }
}

/* Legacy About Section (keep for backwards compatibility) */
.about-section {
    background: #ffffff;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(25, 134, 139, 0.15);
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.02);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    border-radius: 20px;
    z-index: -1;
}

.about-content {
    padding: 0 20px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a5a;
}

/* ===========================================
   Features Section - Modern Design
   =========================================== */
.features-section-modern {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
}

/* Background Elements */
.features-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.features-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 30%, #f1f5f9 70%, #ffffff 100%);
}

.features-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(25, 134, 139, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(25, 134, 139, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(225, 39, 61, 0.02) 0%, transparent 40%);
}

.features-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.features-glow-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(25, 134, 139, 0.15) 0%, transparent 70%);
}

.features-glow-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(25, 134, 139, 0.1) 0%, transparent 70%);
}

/* Section Header */
.features-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(25, 134, 139, 0.1) 0%, rgba(25, 134, 139, 0.05) 100%);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(25, 134, 139, 0.15);
}

.features-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.features-badge .badge-text {
    font-size: 13px;
    font-weight: 700;
    color: #19868b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-title {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.features-title .title-decoration {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 12px;
    color: #19868b;
    opacity: 0.3;
}

.features-title .title-decoration svg {
    width: 100%;
    height: 100%;
}

.features-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Grid */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

/* Feature Card */
.feature-card-modern {
    position: relative;
    border-radius: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:hover {
    transform: translateY(-12px);
}

/* Card Glow Effect */
.feature-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 134, 139, 0.2) 0%, rgba(13, 107, 111, 0.1) 100%);
    border-radius: 24px;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.feature-card-modern:hover .feature-card-glow {
    opacity: 1;
}

/* Card Inner */
.feature-card-inner {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 35px;
    height: 100%;
    border: 1px solid rgba(25, 134, 139, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card-modern:hover .feature-card-inner {
    border-color: rgba(25, 134, 139, 0.2);
    box-shadow: 0 25px 60px rgba(25, 134, 139, 0.15);
}

/* Number Badge */
.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(25, 134, 139, 0.06);
    line-height: 1;
    transition: all 0.4s ease;
}

.feature-card-modern:hover .feature-number {
    color: rgba(25, 134, 139, 0.12);
    transform: scale(1.1);
}

/* Icon Container */
.feature-icon-modern {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
}

.feature-icon-modern .icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(25, 134, 139, 0.1) 0%, rgba(13, 107, 111, 0.15) 100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-icon-modern .icon-bg-inner {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:hover .icon-bg-inner {
    transform: translateY(0);
}

.feature-icon-modern .icon-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.feature-icon-modern .icon-content img {
    width: 50px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    transition: all 0.5s ease;
}

.feature-card-modern:hover .icon-content img {
    filter: brightness(0) invert(1);
    transform: scale(1.15) rotate(5deg);
}

.feature-icon-modern .icon-content i {
    font-size: 36px;
    color: #19868b;
    transition: all 0.5s ease;
}

.feature-card-modern:hover .icon-content i {
    color: #ffffff;
    transform: scale(1.15) rotate(5deg);
}

/* Content */
.feature-content-modern {
    position: relative;
    z-index: 2;
}

.feature-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.feature-card-modern:hover .feature-title-modern {
    color: #19868b;
}

.feature-desc-modern {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 0;
}

/* Hover Arrow */
.feature-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(25, 134, 139, 0.1) 0%, rgba(25, 134, 139, 0.05) 100%);
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-arrow i {
    font-size: 16px;
    color: #19868b;
    transition: transform 0.3s ease;
}

.feature-card-modern:hover .feature-arrow {
    opacity: 1;
    transform: translateX(0);
}

.feature-card-modern:hover .feature-arrow:hover {
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
}

.feature-card-modern:hover .feature-arrow:hover i {
    color: #ffffff;
    transform: translateX(3px);
}

/* Bottom Accent Line */
.feature-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #19868b 0%, #0d6b6f 50%, #19868b 100%);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 24px 24px;
}

.feature-card-modern:hover .feature-accent-line {
    transform: scaleX(1);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Bottom Decoration */
.features-bottom-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.decoration-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(25, 134, 139, 0.3) 50%, transparent 100%);
}

.decoration-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(25, 134, 139, 0.1) 0%, rgba(25, 134, 139, 0.05) 100%);
    border-radius: 50%;
    border: 2px solid rgba(25, 134, 139, 0.2);
}

.decoration-icon i {
    font-size: 18px;
    color: #19868b;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .features-section-modern {
        padding: 80px 0 100px;
    }
    
    .features-title {
        font-size: 38px;
    }
    
    .features-grid-modern {
        gap: 25px;
    }
    
    .feature-card-inner {
        padding: 35px 30px;
    }
}

@media (max-width: 991px) {
    .features-section-modern {
        padding: 70px 0 90px;
    }
    
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 100%;
    }
    
    .features-title {
        font-size: 34px;
    }
    
    .features-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .features-section-modern {
        padding: 60px 0 80px;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-title {
        font-size: 28px;
    }
    
    .features-subtitle {
        font-size: 16px;
    }
    
    .features-header {
        margin-bottom: 40px;
    }
    
    .feature-card-inner {
        padding: 30px 25px;
    }
    
    .feature-icon-modern {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon-modern .icon-content img {
        width: 42px;
        max-height: 42px;
    }
    
    .feature-icon-modern .icon-content i {
        font-size: 30px;
    }
    
    .feature-title-modern {
        font-size: 20px;
    }
    
    .feature-number {
        font-size: 40px;
    }
    
    .feature-arrow {
        display: none;
    }
    
    .features-bottom-decoration {
        margin-top: 40px;
    }
    
    .decoration-line {
        width: 60px;
    }
    
    .decoration-icon {
        width: 40px;
        height: 40px;
    }
    
    .decoration-icon i {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .features-badge {
        padding: 8px 18px;
    }
    
    .features-badge .badge-text {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .features-title .title-decoration {
        width: 80px;
    }
}

/* RTL Support */
[dir="rtl"] .feature-number {
    right: auto;
    left: 20px;
}

[dir="rtl"] .feature-arrow {
    right: auto;
    left: 30px;
    transform: translateX(20px);
}

[dir="rtl"] .feature-card-modern:hover .feature-arrow {
    transform: translateX(0);
}

[dir="rtl"] .feature-arrow i {
    transform: rotate(180deg);
}

[dir="rtl"] .feature-card-modern:hover .feature-arrow:hover i {
    transform: rotate(180deg) translateX(3px);
}

[dir="rtl"] .feature-accent-line {
    transform-origin: right;
}

/* Legacy Features Section (keep for backwards compatibility) */
.about-features-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.about-features-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(25, 134, 139, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-features-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(25, 134, 139, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(25, 134, 139, 0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(25, 134, 139, 0.12);
    border-color: rgba(25, 134, 139, 0.2);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(25, 134, 139, 0.1) 0%, rgba(13, 107, 111, 0.15) 100%);
    border-radius: 20px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    box-shadow: 0 10px 30px rgba(25, 134, 139, 0.3);
}

.feature-icon {
    width: 50px;
    height: auto;
    max-height: 45px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

.feature-icon-wrapper i {
    font-size: 32px;
    color: #19868b;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper i {
    color: #ffffff;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #19868b;
}

.feature-description {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 0;
}

.feature-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #19868b 0%, #0d6b6f 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-accent {
    transform: scaleX(1);
}

/* ===========================================
   Mission, Vision, Values Section - Clean Modern V2
   =========================================== */
.mvv-section-v2 {
    padding: 100px 0;
    background: #f8fafc;
}

/* Section Header */
.mvv-section-header {
    margin-bottom: 60px;
}

.mvv-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #19868b;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.mvv-heading {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.mvv-heading-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #19868b 0%, #0d6b6f 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* MVV Items Wrapper */
.mvv-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* MVV Item */
.mvv-item {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.mvv-item:hover {
    box-shadow: 0 20px 60px rgba(25, 134, 139, 0.12);
    transform: translateY(-5px);
}

.mvv-item-row {
    display: flex;
    align-items: stretch;
}

.mvv-item-reverse .mvv-item-row {
    flex-direction: row-reverse;
}

/* MVV Item Image */
.mvv-item-image {
    flex: 0 0 40%;
    max-width: 40%;
    position: relative;
}

.mvv-image-container {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.mvv-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.mvv-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(25, 134, 139, 0.4);
    z-index: 2;
}

.mvv-image-badge i {
    font-size: 24px;
    color: #ffffff;
}

.mvv-image-badge.mvv-badge-vision {
    background: linear-gradient(135deg, #0d6b6f 0%, #095456 100%);
}

.mvv-image-badge.mvv-badge-values {
    background: linear-gradient(135deg, #e1273d 0%, #c41e32 100%);
    box-shadow: 0 10px 30px rgba(225, 39, 61, 0.4);
}

.mvv-item-reverse .mvv-image-badge {
    right: auto;
    left: 20px;
}

/* MVV Item Content */
.mvv-item-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mvv-item-content.mvv-full-width {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mvv-item-content.mvv-full-width .mvv-item-icon {
    margin: 0 auto 25px;
}

.mvv-item-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(25, 134, 139, 0.1) 0%, rgba(25, 134, 139, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.mvv-item:hover .mvv-item-icon {
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    transform: scale(1.05);
}

.mvv-item-icon i {
    font-size: 28px;
    color: #19868b;
    transition: color 0.3s ease;
}

.mvv-item:hover .mvv-item-icon i {
    color: #ffffff;
}

/* Vision Icon */
.mvv-icon-vision {
    background: linear-gradient(135deg, rgba(13, 107, 111, 0.1) 0%, rgba(13, 107, 111, 0.05) 100%);
}

.mvv-icon-vision i {
    color: #0d6b6f;
}

.mvv-item:hover .mvv-icon-vision {
    background: linear-gradient(135deg, #0d6b6f 0%, #095456 100%);
}

.mvv-item:hover .mvv-icon-vision i {
    color: #ffffff;
}

/* Values Icon */
.mvv-icon-values {
    background: linear-gradient(135deg, rgba(225, 39, 61, 0.1) 0%, rgba(225, 39, 61, 0.05) 100%);
}

.mvv-icon-values i {
    color: #e1273d;
}

.mvv-item:hover .mvv-icon-values {
    background: linear-gradient(135deg, #e1273d 0%, #c41e32 100%);
}

.mvv-item:hover .mvv-icon-values i {
    color: #ffffff;
}

/* MVV Item Title */
.mvv-item-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    position: relative;
}

/* MVV Item Text */
.mvv-item-text {
    font-size: 16px;
    line-height: 1.9;
    color: #64748b;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .mvv-section-v2 {
        padding: 80px 0;
    }
    
    .mvv-heading {
        font-size: 36px;
    }
    
    .mvv-item-content {
        padding: 40px;
    }
    
    .mvv-item-title {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .mvv-section-v2 {
        padding: 70px 0;
    }
    
    .mvv-heading {
        font-size: 32px;
    }
    
    .mvv-section-header {
        margin-bottom: 50px;
    }
    
    .mvv-item-row,
    .mvv-item-reverse .mvv-item-row {
        flex-direction: column;
    }
    
    .mvv-item-image {
        flex: none;
        max-width: 100%;
    }
    
    .mvv-image-container {
        min-height: 250px;
    }
    
    .mvv-item-content {
        padding: 35px;
        text-align: center;
    }
    
    .mvv-item-icon {
        margin: 0 auto 20px;
    }
    
    .mvv-image-badge,
    .mvv-item-reverse .mvv-image-badge {
        right: 20px;
        left: auto;
    }
}

@media (max-width: 767px) {
    .mvv-section-v2 {
        padding: 60px 0;
    }
    
    .mvv-heading {
        font-size: 28px;
    }
    
    .mvv-items-wrapper {
        gap: 30px;
    }
    
    .mvv-item-content {
        padding: 30px 25px;
    }
    
    .mvv-item-icon {
        width: 60px;
        height: 60px;
    }
    
    .mvv-item-icon i {
        font-size: 24px;
    }
    
    .mvv-item-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .mvv-item-text {
        font-size: 15px;
    }
    
    .mvv-image-container {
        min-height: 200px;
    }
    
    .mvv-image-badge {
        width: 50px;
        height: 50px;
    }
    
    .mvv-image-badge i {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .mvv-label {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .mvv-heading {
        font-size: 24px;
    }
    
    .mvv-heading-line {
        width: 60px;
        height: 3px;
    }
    
    .mvv-item {
        border-radius: 16px;
    }
    
    .mvv-item-content {
        padding: 25px 20px;
    }
}

/* RTL Support */
[dir="rtl"] .mvv-item-reverse .mvv-item-row {
    flex-direction: row;
}

[dir="rtl"] .mvv-image-badge {
    right: auto;
    left: 20px;
}

[dir="rtl"] .mvv-item-reverse .mvv-image-badge {
    left: auto;
    right: 20px;
}

@media (max-width: 991px) {
    [dir="rtl"] .mvv-item-reverse .mvv-item-row {
        flex-direction: column;
    }
    
    [dir="rtl"] .mvv-image-badge,
    [dir="rtl"] .mvv-item-reverse .mvv-image-badge {
        left: 20px;
        right: auto;
    }
}

/* Legacy MVV Section (keep for backwards compatibility) */
.mvv-section {
    background: #f8fafc;
}

.mvv-tabs-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
}

.mvv-nav {
    background: #f1f5f9;
    padding: 8px;
    border-radius: 50px;
    display: inline-flex;
    gap: 8px;
    margin: 0 auto;
}

.mvv-tabs-wrapper .nav-pills {
    display: flex;
    justify-content: center;
}

.mvv-nav .nav-item {
    margin: 0;
}

.mvv-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    color: #64748b;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.mvv-nav .nav-link i {
    font-size: 18px;
}

.mvv-nav .nav-link:hover {
    color: #19868b;
    background: rgba(25, 134, 139, 0.1);
}

.mvv-nav .nav-link.active {
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(25, 134, 139, 0.3);
}

.mvv-tab-content {
    padding-top: 40px;
}

.mvv-content {
    padding: 20px;
}

.mvv-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(25, 134, 139, 0.25);
}

.mvv-icon-wrapper i {
    font-size: 32px;
    color: #ffffff;
}

.mvv-icon-wrapper.vision-icon {
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    box-shadow: 0 10px 30px rgba(25, 134, 139, 0.25);
}

.mvv-icon-wrapper.values-icon {
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    box-shadow: 0 10px 30px rgba(25, 134, 139, 0.25);
}

.mvv-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.mvv-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a5a;
}

.mvv-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.mvv-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.mvv-image-wrapper:hover .mvv-image {
    transform: scale(1.03);
}

/* ===========================================
   Custom Blocks Section - Enhanced Design
   =========================================== */
.custom-blocks-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

/* Section Header */
.blocks-section-header {
    margin-bottom: 60px;
}

.blocks-section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #19868b;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.blocks-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.blocks-section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #19868b 0%, #0d6b6f 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* Blocks Container */
.blocks-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Custom Block */
.custom-block {
    position: relative;
}

.custom-block-wrapper {
    display: flex;
    align-items: stretch;
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.custom-block:hover .custom-block-wrapper {
    box-shadow: 0 20px 60px rgba(25, 134, 139, 0.12);
    transform: translateY(-5px);
}

.custom-block-reverse .custom-block-wrapper {
    flex-direction: row-reverse;
}

/* Block Image */
.custom-block-image {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
}

.block-img-frame {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.block-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.custom-block:hover .block-img-frame img {
    transform: scale(1.05);
}

.block-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(25, 134, 139, 0.15) 100%);
    pointer-events: none;
}

.block-img-number {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    border-radius: 14px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(25, 134, 139, 0.35);
    transition: all 0.3s ease;
}

.custom-block:hover .block-img-number {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(25, 134, 139, 0.45);
}

.custom-block-reverse .block-img-number {
    left: auto;
    right: 25px;
}

/* Block Content */
.custom-block-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 50px;
}

.custom-block-content.custom-block-full {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.custom-block-content.custom-block-full .block-content-line {
    margin: 0 auto;
}

.block-content-box {
    width: 100%;
}

.block-step-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #19868b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 6px 14px;
    background: rgba(25, 134, 139, 0.1);
    border-radius: 20px;
}

.block-content-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.custom-block:hover .block-content-title {
    color: #19868b;
}

.block-content-desc {
    font-size: 16px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 25px;
}

.block-content-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #19868b 0%, #0d6b6f 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.custom-block:hover .block-content-line {
    width: 100px;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .custom-blocks-section {
        padding: 80px 0;
    }
    
    .blocks-section-title {
        font-size: 36px;
    }
    
    .custom-block-content {
        padding: 40px;
    }
    
    .block-content-title {
        font-size: 26px;
    }
    
    .block-img-frame {
        min-height: 320px;
    }
}

@media (max-width: 991px) {
    .custom-blocks-section {
        padding: 70px 0;
    }
    
    .blocks-section-header {
        margin-bottom: 50px;
    }
    
    .blocks-section-title {
        font-size: 32px;
    }
    
    .blocks-container {
        gap: 40px;
    }
    
    .custom-block-wrapper,
    .custom-block-reverse .custom-block-wrapper {
        flex-direction: column;
    }
    
    .custom-block-image {
        flex: none;
        max-width: 100%;
    }
    
    .block-img-frame {
        min-height: 280px;
    }
    
    .custom-block-reverse .block-img-number {
        left: 25px;
        right: auto;
    }
    
    .custom-block-content {
        padding: 35px;
    }
    
    .block-content-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .custom-blocks-section {
        padding: 60px 0;
    }
    
    .blocks-section-title {
        font-size: 28px;
    }
    
    .blocks-container {
        gap: 30px;
    }
    
    .custom-block-content {
        padding: 30px 25px;
    }
    
    .block-img-frame {
        min-height: 220px;
    }
    
    .block-img-number {
        width: 48px;
        height: 48px;
        font-size: 18px;
        top: 20px;
        left: 20px;
        border-radius: 12px;
    }
    
    .block-content-title {
        font-size: 22px;
    }
    
    .block-content-desc {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .blocks-section-label {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .blocks-section-title {
        font-size: 24px;
    }
    
    .custom-block-wrapper {
        border-radius: 16px;
    }
    
    .custom-block-content {
        padding: 25px 20px;
    }
    
    .block-step-label {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .block-content-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .block-content-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .block-img-number {
        width: 42px;
        height: 42px;
        font-size: 16px;
        top: 15px;
        left: 15px;
    }
}

/* RTL Support */
[dir="rtl"] .custom-block-wrapper {
    flex-direction: row-reverse;
}

[dir="rtl"] .custom-block-reverse .custom-block-wrapper {
    flex-direction: row;
}

[dir="rtl"] .block-img-number {
    left: auto;
    right: 25px;
}

[dir="rtl"] .custom-block-reverse .block-img-number {
    right: auto;
    left: 25px;
}

@media (max-width: 991px) {
    [dir="rtl"] .custom-block-wrapper,
    [dir="rtl"] .custom-block-reverse .custom-block-wrapper {
        flex-direction: column;
    }
    
    [dir="rtl"] .block-img-number,
    [dir="rtl"] .custom-block-reverse .block-img-number {
        right: 25px;
        left: auto;
    }
}

@media (max-width: 767px) {
    [dir="rtl"] .block-img-number,
    [dir="rtl"] .custom-block-reverse .block-img-number {
        right: 20px;
    }
}

@media (max-width: 575px) {
    [dir="rtl"] .block-img-number,
    [dir="rtl"] .custom-block-reverse .block-img-number {
        right: 15px;
    }
}

/* ===========================================
   CTA Section
   =========================================== */
.about-cta-section {
    background: #ffffff;
}

.about-cta-wrapper {
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    border-radius: 24px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
}

.about-cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-cta-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: #ffffff;
    color: #19868b;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    background: #ffffff;
    color: #0d6b6f;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-cta i {
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

/* ===========================================
   Responsive Styles
   =========================================== */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 36px;
    }
    
    .about-hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .mvv-tabs-wrapper {
        padding: 30px 20px;
    }
    
    .mvv-nav .nav-link {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .mvv-nav .nav-link span {
        display: none;
    }
    
    .mvv-nav .nav-link i {
        margin: 0;
    }
    
    .about-cta-wrapper {
        padding: 40px 30px;
        text-align: center;
    }
    
    .text-lg-right {
        text-align: center !important;
    }
}

@media (max-width: 767px) {
    .about-hero-section {
        min-height: 350px;
    }
    
    .about-hero-content {
        padding: 60px 0;
    }
    
    .about-hero-title {
        font-size: 28px;
    }
    
    .about-hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .about-image-accent {
        display: none;
    }
    
    .about-content {
        padding: 30px 0 0;
    }
    
    .mvv-title {
        font-size: 24px;
    }
    
    .mvv-icon-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .mvv-icon-wrapper i {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .btn-cta {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ===========================================
   RTL Support
   =========================================== */
[dir="rtl"] .label-line {
    background: linear-gradient(-90deg, #19868b 0%, #0d6b6f 100%);
}

[dir="rtl"] .about-image-accent {
    right: auto;
    left: -20px;
}

[dir="rtl"] .btn-cta:hover i {
    transform: translateX(-5px);
}

[dir="rtl"] .text-lg-right {
    text-align: left !important;
}

@media (max-width: 991px) {
    [dir="rtl"] .text-lg-right {
        text-align: center !important;
    }
}

/* ===========================================
   Team Slider Section
   =========================================== */
.about-team-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-team-card {
    display: block;
    text-decoration: none;
}

.about-team-card:hover {
    text-decoration: none;
}

.about-team-card-inner {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(25, 134, 139, 0.08);
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-team-card:hover .about-team-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(25, 134, 139, 0.15);
    border-color: rgba(25, 134, 139, 0.2);
}

.about-team-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: visible;
    position: relative;
    border: 3px solid #19868b;
    box-shadow: 0 5px 20px rgba(25, 134, 139, 0.2);
    transition: all 0.3s ease;
}

.about-team-card:hover .about-team-icon {
    border-color: #0d6b6f;
    box-shadow: 0 8px 30px rgba(25, 134, 139, 0.3);
    transform: scale(1.05);
}

.about-team-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.about-team-card:hover .about-team-icon img {
    transform: scale(1.1);
}

.about-team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 50%;
}

.about-team-placeholder i {
    font-size: 36px;
    color: #94a3b8;
}

.about-team-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e1273d 0%, #c41f34 100%);
    color: #ffffff;
    border-radius: 50%;
    font-size: 11px;
    box-shadow: 0 3px 10px rgba(225, 39, 61, 0.4);
    border: 3px solid #ffffff;
    z-index: 20;
}

.about-team-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.about-team-card:hover .about-team-name {
    color: #19868b;
}

.about-team-job {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 5px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-team-rank {
    font-size: 12px;
    color: #19868b;
    font-weight: 600;
    line-height: 1.3;
    margin-top: auto;
    margin-bottom: 0;
}

.btn-view-team {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(25, 134, 139, 0.3);
}

.btn-view-team:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(25, 134, 139, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* Team Slider Arrows */
.about-team-slider .slick-arrow {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.about-team-slider .slick-arrow:hover {
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    box-shadow: 0 6px 20px rgba(25, 134, 139, 0.3);
}

.about-team-slider .slick-arrow:before {
    color: #19868b;
    font-size: 16px;
    transition: color 0.3s ease;
}

.about-team-slider .slick-arrow:hover:before {
    color: #ffffff;
}

.about-team-slider .slick-prev {
    left: -20px;
}

.about-team-slider .slick-next {
    right: -20px;
}

.about-team-slider .slick-dots {
    bottom: -35px;
}

.about-team-slider .slick-dots li button:before {
    font-size: 10px;
    color: #cbd5e1;
    opacity: 1;
}

.about-team-slider .slick-dots li.slick-active button:before {
    color: #19868b;
}

@media (max-width: 1199px) {
    .about-team-slider .slick-prev {
        left: 5px;
    }
    
    .about-team-slider .slick-next {
        right: 5px;
    }
}

@media (max-width: 767px) {
    .about-team-slider .slick-arrow {
        width: 38px;
        height: 38px;
    }
    
    .about-team-slider .slick-arrow:before {
        font-size: 14px;
    }
    
    .about-team-icon {
        width: 90px;
        height: 90px;
    }
    
    .about-team-name {
        font-size: 14px;
    }
    
    .about-team-job {
        font-size: 12px;
    }
    
    .about-team-card-inner {
        height: 240px;
        padding: 20px 15px;
    }
}

/* ===========================================
   Company Profile Download Button
   =========================================== */
.company-profile-download {
    margin-top: 30px;
}

.btn-company-profile {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #e1273d 0%, #c41e32 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(225, 39, 61, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-company-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-company-profile:hover::before {
    left: 100%;
}

.btn-company-profile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(225, 39, 61, 0.4);
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #c41e32 0%, #a91828 100%);
}

.btn-company-profile i:first-child {
    font-size: 20px;
}

.btn-company-profile i:last-child {
    font-size: 14px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.btn-company-profile:hover i:last-child {
    transform: translateY(3px);
}

/* RTL Support */
[dir="rtl"] .btn-company-profile {
    flex-direction: row-reverse;
}

@media (max-width: 767px) {
    .btn-company-profile {
        padding: 14px 24px;
        font-size: 14px;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .btn-company-profile i:first-child {
        font-size: 18px;
    }
}

/* ===========================================
   Certificates Section
   =========================================== */
.certificates-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.certificates-header {
    margin-bottom: 60px;
}

.certificates-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #19868b;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.certificates-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.certificates-title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #19868b 0%, #0d6b6f 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.certificates-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Slider Wrapper */
.certificates-slider-wrapper {
    position: relative;
    padding: 0 50px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Certificate Slide */
.certificate-slide {
    padding: 20px;
}

/* Certificate Card */
.certificate-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    max-width: 400px;
    margin: 0 auto;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(25, 134, 139, 0.15);
}

/* Certificate Image */
.certificate-image {
    position: relative;
    width: 100%;
    height: 400px;
    max-height: 400px;
    overflow: hidden;
    background: #f8fafc;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.certificate-card:hover .certificate-image img {
    transform: scale(1.08);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 134, 139, 0.85) 0%, rgba(13, 107, 111, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.certificate-card:hover .certificate-overlay {
    opacity: 1;
}

.certificate-zoom {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.4s ease;
}

.certificate-card:hover .certificate-zoom {
    transform: scale(1);
    opacity: 1;
}

.certificate-zoom i {
    font-size: 22px;
    color: #19868b;
}

/* Certificate No Image Placeholder */
.certificate-no-image {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-placeholder i {
    font-size: 36px;
    color: #ffffff;
}

/* Certificate Info */
.certificate-info {
    padding: 20px;
    text-align: center;
}

.certificate-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.certificate-card:hover .certificate-name {
    color: #19868b;
}

.certificate-bio {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Slider Navigation */
.certificates-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.cert-nav-btn {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cert-nav-btn:hover {
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    transform: scale(1.1);
}

.cert-nav-btn i {
    font-size: 18px;
    color: #19868b;
    transition: color 0.3s ease;
}

.cert-nav-btn:hover i {
    color: #ffffff;
}

/* Slider Dots */
.certificates-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.certificates-dots .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.certificates-dots .slick-dots li {
    margin: 0;
}

.certificates-dots .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    font-size: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.certificates-dots .slick-dots li button:hover {
    background: rgba(25, 134, 139, 0.5);
}

.certificates-dots .slick-dots li.slick-active button {
    background: linear-gradient(135deg, #19868b 0%, #0d6b6f 100%);
    transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .certificates-section {
        padding: 80px 0;
    }
    
    .certificates-title {
        font-size: 36px;
    }
    
    .certificates-slider-wrapper {
        padding: 0 40px;
    }
    
    .certificate-image {
        height: 350px;
        max-height: 350px;
    }
    
    .certificate-card {
        max-width: 350px;
    }
}

@media (max-width: 991px) {
    .certificates-section {
        padding: 70px 0;
    }
    
    .certificates-header {
        margin-bottom: 50px;
    }
    
    .certificates-title {
        font-size: 32px;
    }
    
    .cert-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .cert-nav-btn i {
        font-size: 16px;
    }
    
    .certificate-image {
        height: 320px;
        max-height: 320px;
    }
    
    .certificate-card {
        max-width: 320px;
    }
}

@media (max-width: 767px) {
    .certificates-section {
        padding: 60px 0;
    }
    
    .certificates-title {
        font-size: 28px;
    }
    
    .certificates-subtitle {
        font-size: 14px;
    }
    
    .certificates-slider-wrapper {
        padding: 0 30px;
    }
    
    .cert-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .certificate-info {
        padding: 15px;
    }
    
    .certificate-name {
        font-size: 15px;
    }
    
    .certificate-bio {
        font-size: 12px;
    }
    
    .certificate-image {
        height: 300px;
        max-height: 300px;
    }
    
    .certificate-card {
        max-width: 300px;
    }
}

@media (max-width: 575px) {
    .certificates-label {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .certificates-title {
        font-size: 24px;
    }
    
    .certificates-slider-wrapper {
        padding: 0 20px;
    }
    
    .cert-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .cert-nav-btn i {
        font-size: 14px;
    }
    
    .certificate-zoom {
        width: 50px;
        height: 50px;
    }
    
    .certificate-zoom i {
        font-size: 18px;
    }
    
    .certificate-image {
        height: 280px;
        max-height: 280px;
    }
    
    .certificate-card {
        max-width: 280px;
    }
    
    .certificate-slide {
        padding: 10px;
    }
}

/* RTL Support */
[dir="rtl"] .cert-nav-btn i {
    transform: rotate(180deg);
}

[dir="rtl"] .certificates-slider .slick-track {
    direction: rtl;
}
