/* Ecibe Website - Modern Professional Design */
:root {
    --accent-color: #83b842;
    --accent-hover: #6fa034;
    --navbar-bg: #0b2a49;
    --navbar-hover: #1a4066;
    --primary-text: #1a202c;
    --secondary-text: #4a5568;
    --light-text: #718096;
    --white: #ffffff;
    --light-bg: #f7fafc;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* Modern Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--primary-text);
    font-size: 16px;
    font-weight: 400;
    background-color: var(--white);
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }

/* Add this to your CSS temporarily to test */
.blog-card .btn {
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
}

.text-justified {
    text-align: justify;
    text-align-last: left; /* Prevents last line from stretching */
    text-justify: inter-word;
    word-spacing: 0.05em;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}

/* Optional: For better readability on justified text */
.text-justified-nice {
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    word-spacing: normal;
    line-height: 1.7;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
}

.hero-text-justified {
    text-align: justify !important;
    text-align-last: left !important;
    text-justify: inter-word;
    word-spacing: 0.01em;
    line-height: 1.8;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    max-width: 100%;
}

/* Advanced Navbar */
.navbar {
    background: linear-gradient(135deg, var(--navbar-bg), var(--navbar-hover)) !important;
    padding: 1.25rem 0;
    box-shadow: 0 4px 20px rgba(11, 42, 73, 0.15);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1000;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.navbar .container {
    position: relative;
    z-index: 2;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.1) rotate(5deg);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::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: var(--transition);
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.navbar-nav .nav-link.active {
    background: var(--accent-color);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(131, 184, 66, 0.4);
}

/* Language Switcher Enhancement */
.language-switcher .dropdown-toggle {
    background: linear-gradient(45deg, var(--accent-color), var(--accent-hover));
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.language-switcher .dropdown-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.language-switcher .dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem;
    margin-top: 0.5rem;
    z-index: 1050;
}

.language-switcher .dropdown-item {
    padding: 0.75rem 1rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-bottom: 0.25rem;
}

.language-switcher .dropdown-item:hover {
    background: var(--light-bg);
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Modern Button System */
.btn {
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.02em;
}

.btn::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: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(131, 184, 66, 0.3);
}

.btn-accent:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(131, 184, 66, 0.4);
}

.btn-outline-accent {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn-outline-accent:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(131, 184, 66, 0.3);
}

/* Dynamic Hero Section */
.hero {
    background: linear-gradient(135deg, 
        var(--navbar-bg) 0%, 
        #1a4066 25%, 
        #2a5a7a 50%, 
        var(--accent-color) 100%);
    color: var(--white);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(131, 184, 66, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 64, 102, 0.2) 0%, transparent 50%);
    animation: heroGradient 20s ease-in-out infinite;
}

@keyframes heroGradient {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(78,205,196,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    color: var(--white) !important;
}

.hero .lead {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Page Hero (for other pages) */
.page-hero {
    background: linear-gradient(135deg, 
        var(--navbar-bg) 0%, 
        #1a4066 50%, 
        var(--accent-color) 100%);
    color: var(--white) !important;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(78,205,196,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(2rem, 3vw, 2.75rem) !important;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    opacity: 0.9;
}

/* Modern Card System with Glassmorphism */
.card {
    border: none;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover), #4ecdc4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(131, 184, 66, 0.02) 0%, 
        rgba(78, 205, 196, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover::after {
    opacity: 1;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(131, 184, 66, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.card-img-top {
    height: 260px;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.content-card .card-img-top {
    position: relative;
}

.content-card .card-img-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(131, 184, 66, 0.2) 0%, 
        transparent 50%, 
        rgba(78, 205, 196, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.content-card:hover .card-img-top::before {
    opacity: 1;
}

.content-card:hover .card-img-top {
    transform: scale(1.12) rotate(2deg);
    filter: brightness(1.15) saturate(1.3) contrast(1.1);
}

.content-card .card-body {
    padding: 2.5rem 2rem 2rem;
    position: relative;
    z-index: 3;
    background: transparent;
}

.card-title {
    font-weight: 800;
    color: var(--navbar-bg);
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.content-card .card-title {
    background: linear-gradient(135deg, 
        var(--navbar-bg) 0%, 
        #2a5a7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.content-card:hover .card-title {
    background: linear-gradient(135deg, 
        var(--accent-color) 0%, 
        #4ecdc4 50%,
        var(--accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

.card-text {
    color: var(--secondary-text);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.content-card .card-text {
    position: relative;
}

.content-card:hover .card-text {
    color: var(--primary-text);
}

/* Creative floating elements for content cards */
.content-card {
    position: relative;
}

.content-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(131, 184, 66, 0.1), 
        rgba(78, 205, 196, 0.1));
    border-radius: 50%;
    opacity: 0;
    transform: scale(0) rotate(0deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(131, 184, 66, 0.2);
}

.content-card:hover::after {
    opacity: 1;
    transform: scale(1) rotate(360deg);
}

/* Creative Content Cards for specific sections */
.content-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(30px);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(131, 184, 66, 0.1) 0%, 
        rgba(78, 205, 196, 0.1) 25%,
        rgba(131, 184, 66, 0.05) 50%,
        rgba(78, 205, 196, 0.1) 75%,
        rgba(131, 184, 66, 0.1) 100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.content-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        var(--accent-color), 
        #4ecdc4, 
        var(--accent-hover),
        #45b7b8);
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card:hover::before {
    opacity: 1;
}

.content-card:hover::after {
    opacity: 1;
}

.content-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
    transform: translateY(-15px) scale(1.03) rotateX(5deg);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 15px 40px rgba(131, 184, 66, 0.2),
        0 5px 20px rgba(78, 205, 196, 0.15);
}

/* Creative Content Meta Styling */
.content-meta {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 1.8rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, 
        rgba(131, 184, 66, 0.12) 0%, 
        rgba(78, 205, 196, 0.08) 100%);
    border-radius: 18px;
    border: 1px solid rgba(131, 184, 66, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.content-meta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(131, 184, 66, 0.1), 
        transparent);
    transition: left 0.8s ease;
}

.content-card:hover .content-meta::before {
    left: 100%;
}

.content-meta i {
    color: var(--accent-color);
    margin-right: 0.6rem;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--accent-color), #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Creative Button in Content Cards */
.content-card .btn {
    border-radius: 20px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    text-transform: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, 
        rgba(131, 184, 66, 0.1) 0%, 
        rgba(78, 205, 196, 0.1) 100%);
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--accent-color), #4ecdc4) 1;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(131, 184, 66, 0.3), 
        rgba(78, 205, 196, 0.3));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.content-card .btn:hover::before {
    left: 0;
}

.content-card .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(131, 184, 66, 0.3),
        0 8px 20px rgba(78, 205, 196, 0.2);
    background: linear-gradient(135deg, 
        rgba(131, 184, 66, 0.2) 0%, 
        rgba(78, 205, 196, 0.2) 100%);
}

/* Modern Section Styling */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-alt {
    background: var(--light-bg);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--navbar-bg);
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-text);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, var(--navbar-bg), #1a3d5c);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    opacity: 0.3;
}

footer .container {
    position: relative;
    z-index: 2;
}

footer h6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    text-decoration: none;
}

footer a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

/* Modern Form Styling */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(131, 184, 66, 0.1);
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* Modern Feature Cards */
.feature-card {
    text-align: center;
    padding: 3.5rem 2.5rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(131, 184, 66, 0.03) 0%, 
        rgba(78, 205, 196, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(131, 184, 66, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover), #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    font-size: 2.5rem;
    color: var(--white);
    position: relative;
    box-shadow: 
        0 8px 24px rgba(131, 184, 66, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 36px rgba(131, 184, 66, 0.4),
        0 6px 18px rgba(0, 0, 0, 0.15);
}

.feature-card h4 {
    font-weight: 800;
    color: var(--navbar-bg);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: var(--secondary-text);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
}

/* Stats Section */
.stats-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 1.1rem;
    color: var(--secondary-text);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctaPattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaPattern)"/></svg>');
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

/* Modern Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    padding: 3rem 2.5rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(131, 184, 66, 0.03) 0%, 
        rgba(78, 205, 196, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(131, 184, 66, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover), #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
}

.service-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.service-item h4 {
    color: var(--navbar-bg);
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
}

.service-item p {
    color: var(--secondary-text);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
}

/* Modern Team Cards */
.team-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(131, 184, 66, 0.02) 0%, 
        rgba(78, 205, 196, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(131, 184, 66, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.team-card:hover::before {
    opacity: 1;
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    border: 4px solid rgba(131, 184, 66, 0.2);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(131, 184, 66, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.team-card:hover .team-avatar {
    transform: scale(1.08);
    border-color: var(--accent-color);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.15),
        0 6px 20px rgba(131, 184, 66, 0.3);
}

/* Modern Partner Cards */
.partner-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(131, 184, 66, 0.02) 0%, 
        rgba(78, 205, 196, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(131, 184, 66, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    background: rgba(131, 184, 66, 0.05);
    padding: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(131, 184, 66, 0.1);
}

.partner-card:hover .partner-logo {
    transform: scale(1.1) rotate(2deg);
    background: rgba(131, 184, 66, 0.1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(131, 184, 66, 0.2);
}

/* Certification Gallery */
.certification-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.certification-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.certification-item:hover img {
    transform: scale(1.05);
}

.certification-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.certification-item:hover .certification-overlay {
    transform: translateY(0);
}

/* Modern Overlay Blog Cards */
.blog-card {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: var(--navbar-bg);
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(11, 42, 73, 0.8) 0%, 
        rgba(131, 184, 66, 0.6) 50%,
        rgba(78, 205, 196, 0.7) 100%);
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover::before {
    background: linear-gradient(135deg, 
        rgba(11, 42, 73, 0.9) 0%, 
        rgba(131, 184, 66, 0.85) 50%,
        rgba(78, 205, 196, 0.8) 100%);
}

.blog-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(131, 184, 66, 0.2);
}

.blog-card .card-img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .card-img-top {
    transform: scale(1.08) rotate(1deg);
    filter: brightness(0.7) saturate(1.2) contrast(1.05);
}

.blog-card .card-body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem 4rem;
    color: white;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card .card-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: white !important;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    transform: translateY(0);
}

.blog-card .content-meta {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.blog-card .content-meta i {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 0.4rem;
    font-size: 0.7rem;
}

.blog-card .card-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 1.5rem 0 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.blog-card:hover .card-title {
    transform: translateY(-15px);
    font-size: 1.5rem;
}

.blog-card:hover .content-meta {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
}

.blog-card:hover .card-text {
    opacity: 1;
    transform: translateY(0);
}

/* Ultra-Modern Event Cards - Based on New API Structure */
.event-card-modern {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(240, 240, 240, 0.8);
}

.event-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(131, 184, 66, 0.4);
}

/* Image Section */
.event-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

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

.event-card-modern:hover .event-cover {
    transform: scale(1.08);
}



/* Date Display */
.event-date-display {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
}

.date-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 80px;
    transition: all 0.3s ease;
}

.event-card-modern:hover .date-info {
    background: var(--accent-color);
    transform: scale(1.05);
}

.date-day {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--navbar-bg);
    margin-bottom: 2px;
}

.event-card-modern:hover .date-day {
    color: white;
}

.date-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(11, 42, 73, 0.7);
    margin-bottom: 4px;
}

.event-card-modern:hover .date-month {
    color: rgba(255, 255, 255, 0.9);
}

.date-time, .all-day-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-color);
    background: rgba(131, 184, 66, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    margin-top: 4px;
}

.event-card-modern:hover .date-time,
.event-card-modern:hover .all-day-label {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Event Body */
.event-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Event Header */
.event-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navbar-bg);
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.event-card-modern:hover .event-title {
    color: var(--accent-color);
}

/* Meta Tags */
.event-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(131, 184, 66, 0.2);
    transition: all 0.3s ease;
}

.location-tag {
    background: rgba(131, 184, 66, 0.08);
    color: rgba(11, 42, 73, 0.8);
}

.capacity-tag {
    background: rgba(52, 58, 64, 0.08);
    color: rgba(11, 42, 73, 0.8);
    border-color: rgba(52, 58, 64, 0.2);
}

.duration-tag {
    background: rgba(23, 162, 184, 0.08);
    color: rgba(11, 42, 73, 0.8);
    border-color: rgba(23, 162, 184, 0.2);
}

.meta-tag i {
    color: var(--accent-color);
    font-size: 0.75rem;
}

.capacity-tag i {
    color: rgba(52, 58, 64, 0.7);
}

.duration-tag i {
    color: rgba(23, 162, 184, 0.8);
}

/* Event Excerpt */
.event-excerpt {
    flex-grow: 1;
    margin: 0.5rem 0;
}

.event-excerpt p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(11, 42, 73, 0.7);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Action Button */
.event-action {
    margin-top: auto;
    padding-top: 0.5rem;
}

.event-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--accent-color);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
}

.event-learn-more::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;
}

.event-learn-more:hover::before {
    left: 100%;
}

.event-learn-more:hover {
    background: var(--navbar-bg);
    border-color: var(--navbar-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 42, 73, 0.25);
    text-decoration: none;
    color: white;
}

.event-learn-more i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.event-learn-more:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-card-modern {
        border-radius: 18px;
        margin-bottom: 2rem;
    }
    
    .event-image-wrapper {
        height: 220px;
    }
    

    
    .event-date-display {
        top: 0.8rem;
        right: 0.8rem;
    }
    
    .date-info {
        padding: 0.8rem 1rem;
        min-width: 70px;
    }
    
    .date-day {
        font-size: 1.4rem;
    }
    
    .date-month {
        font-size: 0.7rem;
    }
    
    .event-body {
        padding: 1.5rem;
        gap: 1.2rem;
    }
    
    .event-title {
        font-size: 1.2rem;
    }
    
    .event-meta-tags {
        gap: 0.6rem;
    }
    
    .meta-tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
    
    .event-excerpt p {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    
    .event-learn-more {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .event-card-modern:hover {
        transform: translateY(-6px);
    }
}

/* Animation for Modern Cards */
.event-card-modern.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-card-modern.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modern Research Cards */
.research-modern-card {
    transition: all 0.3s ease;
    border-radius: 16px !important;
}

.research-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.research-modern-card .research-img {
    transition: all 0.4s ease;
}

.research-modern-card:hover .research-img {
    transform: scale(1.02);
}

.bg-gradient {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

/* Research Card Enhancements */
.research-modern-card .badge {
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
}

.research-modern-card .card-body {
    position: relative;
}

.research-modern-card .btn-primary {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.research-modern-card .research-action-btn {
    border-radius: 8px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
}

.research-modern-card .research-action-btn:hover {
    background-color: var(--bs-secondary);
    color: white;
    transform: translateY(-2px);
}

.research-modern-card .btn-primary {
    min-height: 42px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .research-modern-card {
        margin-bottom: 2rem;
    }
    
    .research-modern-card .position-absolute.top-0.end-0 {
        position: static !important;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .research-modern-card .d-md-flex {
        flex-direction: column !important;
    }
    
    .research-modern-card .d-md-flex .btn-outline-secondary {
        width: 100%;
        height: auto;
        padding: 0.5rem;
    }
}

/* Utility Classes */
.text-accent { color: var(--accent-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.bg-light-custom { background-color: var(--light-bg); }
.text-gradient {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .navbar-nav {
    margin-left: auto;
    margin-right: 0;
}

[dir="rtl"] .dropdown-menu {
    right: 0;
    left: auto;
}

[dir="rtl"] .section-title::before {
    right: 50%;
    left: auto;
    transform: translateX(50%);
}

/* Advanced Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.animate-fade-in.is-visible {
    opacity: 1;
}

/* Loading Animation */
.loading {
    position: relative;
    color: transparent !important;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem;
        min-height: 70vh;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        margin-bottom: 3rem;
    }
    
    .feature-card {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 3rem 0 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
    }
}

/* Card Content Direction Override */
/* Ensure card content (from API) always stays LTR regardless of page language */
.card-body, 
.event-body, 
.research-card-body, 
.blog-card .card-body,
.card-title,
.card-text,
.content-meta,
.event-title,
.event-description,
.research-title,
.research-excerpt {
    direction: ltr !important;
    text-align: left !important;
}