/* =====================================================
   DonePDF Styles – Cleaned (Duplications Removed)
   ===================================================== */


/* =====================================================
   Hero
   ===================================================== */
.hero {
    position: relative;
    padding: 80px 0 10px 0;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.hero .search-form {
    margin-top: 35px !important;
}
.container {
    position: relative;
    z-index: 10;
}
.hero__content {
    position: relative;
    z-index: 11;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    transform: translateZ(20px);
}
.hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00008B 0%, #04AA6D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    letter-spacing: -0.5px;
}
.hero__description {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-weight: bold;
}
.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* =====================================================
   Tools Filters
   ===================================================== */
.tools-filters .filter-btn {
    padding: 10px 20px;
    background: #fafafa;
    border: 1px solid #ddd !important;
    border-radius: 6px;
    color: #0A3A40;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.25s ease-in-out;
}
.tools-filters .filter-btn:hover {
    background: #f1f1f1;
    border-color: #ccc !important;
}
.tools-filters .filter-btn.active {
    background: linear-gradient(90deg, #0A3A40, #0C7CA8, #1CA67D) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.tools-filters .filter-btn.active:hover {
    opacity: 0.9;
}

/* =====================================================
   Mobile Utilities
   ===================================================== */
.mobile-only { display:none; }
@media (max-width:768px){
    .desktop-only { display:none; }
    .mobile-only { display:inline; }
}

/* =====================================================
   Search Form
   ===================================================== */
.search-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 12;
    border: 1px solid #00008B;
    backdrop-filter: blur(10px);
}
.search-form:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.95);
}
.search-form input[type="text"] {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    border-radius: 50px;
    outline: none;
    background: transparent;
    color: #2c3e50;
}
.search-form input[type="text"]::placeholder {
    color: #7f8c8d;
}
.search-form button {
    background: linear-gradient(135deg, #00008B 0%, #04AA6D 100%);
    border: none;
    color: white;
    padding: 0 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.search-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Autocomplete */
#autocompleteBox {
    position: absolute !important;
    top: 105% !important;
    left: 0 !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid #dcdfe6 !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12) !important;
    z-index: 999999 !important;
    display: none;
    overflow-y: auto !important;
    max-height: 320px !important;
    padding: 10px 0 !important;
    backdrop-filter: blur(10px) !important;
}
#autocompleteBox .autocomplete-item {
    padding: 12px 18px !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    display: flex;
    align-items: center;
    color: #2c3e50 !important;
    transition: all 0.15s ease-in-out;
    gap: 10px;
}
#autocompleteBox .autocomplete-item::before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #00008B;
    opacity: 0.8;
}
#autocompleteBox .autocomplete-item:hover {
    background: rgba(0, 0, 139, 0.05) !important;
    padding-left: 25px !important;
}
html[dir="rtl"] #autocompleteBox .autocomplete-item {
    direction: rtl;
    text-align: right;
}
html[dir="rtl"] #autocompleteBox .autocomplete-item:hover {
    padding-left: 18px !important;
    padding-right: 25px !important;
}

/* =====================================================
   Language Switcher
   ===================================================== */
.language-switcher {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 25px 0 35px 0;
}
.lang-select {
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 10px;
    border: 2px solid #ddd;
    background: #fff;
    color: #333;
    cursor: pointer;
    font-weight: 600;
    width: 260px;
    max-width: 90%;
    text-align: center;
    appearance: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.lang-select:hover {
    border-color: #bbb;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.lang-select:focus {
    border-color: #00008B;
    box-shadow: 0 0 0 3px rgba(0,0,139,0.2);
}
html[dir="rtl"] .language-switcher {
    direction: rtl !important;
    text-align: center !important;
}
html[dir="rtl"] .lang-select {
    text-align: center !important;
}

/* =====================================================
   File Icons Background
   ===================================================== */
.file-icons-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.15;
    pointer-events: none;
}
.file-icon {
    position: absolute;
    font-size: 2rem;
    animation: float 16s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
    pointer-events: none;
}
.file-icon.pdf { color: #00008B; top: 25%; left: 12%; animation-delay: 0s; }
.file-icon.image { color: #DC143C; top: 60%; left: 5%; animation-delay: 1s; }
.file-icon.csv { color: #006400; top: 20%; right: 50%; animation-delay: 2s; }
.file-icon.excel { color: #A52A2A; bottom: 20%; left: 25%; animation-delay: 3s; }
.file-icon.word { color: #0000FF; top: 22%; right: 10%; animation-delay: 4s; }
.file-icon.powerpoint { color: #e74c3c; bottom: 30%; right: 5%; animation-delay: 5s; }
.file-icon.html { color: #e67e22; top: 70%; right: 20%; animation-delay: 6s; }
.file-icon.text { color: #9b59b6; bottom: 41%; right: 38%; animation-delay: 7s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
/* Ensure there is only one @keyframes float in the file — this is the kept one. */

/* =====================================================
   Tools Section
   ===================================================== */
.tools-section {
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    padding: 20px 20px;
    margin:0 auto;
    width:100%;
    overflow:hidden;
    position:relative;
}
/* .section-title is defined multiple times; we keep one with all properties. */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}
.section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
    position: relative;
    display: inline-block;
}
.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}
.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 1000px;
    margin: 0 auto;
}

/* =====================================================
   Hexagon Grid
   ===================================================== */
.hexagon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 90%;
    margin: 20px auto 0 auto;
    padding: 20px 0;
}
.hexagon-row {
    display: contents;
}
.hexagon-item {
    position: relative;
    width: 85%;
    height:220px;
    margin: 0;
    clip-path: none;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    text-align: left;
    padding: 10px 20px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.16);
    background: white;
    overflow: hidden;
    border:1px solid #b4bcc7;
}
.hexagon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}
.hexagon-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.hexagon-item:hover {
    transform: translateY(-8px) scale(1.02);
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.hexagon-item:hover::before {
    transform: scaleX(1);
}
.hexagon-item:hover::after {
    opacity: 1;
}
.hexagon-content {
    position: relative;
    z-index: 2;
    color: #333;
    width: 100%;
}
.hexagon-icon {
    font-size: 1.3em;
    margin-bottom: 20px;
    margin-top: 0;
    transition: all 0.4s ease;
    color: #fff;
    padding: 0px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10%;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
    display: flex;
    border:3px solid #fff;
}
.hexagon-icon img {
    width: 40px !important;
    height: 40px !important;
}
.hexagon-item:hover .hexagon-icon {
    transform: scale(0.9) rotate(5deg);
    color: white;
    box-shadow: 0 12px 25px rgba(231, 76, 60, 0.4);
}
.hexagon-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
    line-height: 1.3;
}
.hexagon-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}
.hexagon-arrow {
    font-size: 1.3rem;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.4s ease;
    color: var(--primary-color);
    position: absolute;
    bottom: -25px;
    left: 5%;
    transform: translateX(-50%) translateX(-15px);
}
.hexagon-item:hover .hexagon-arrow {
    opacity: 1;
    transform: translateX(-50%) translateX(0);
    color: var(--primary-color);
}
.popular-label {
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: #fff;
    color: blue;
    font-size: 12px;
    font-weight: normal;
    padding: 4px 8px;
    border-radius: 0 0 0 12px;
    z-index: 3;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 1200px) {
    .hexagon-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 992px) {
    .hexagon-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .hero { padding: 40px 0; }
    .hero__title { font-size: 2.2rem; }
    .hero__description { font-size: 1.1rem; }
    .file-icon { font-size: 1.5rem; }
    .search-form { margin: 0 20px; }
    .circle { display: none; }

    .hexagon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 10px;
    }
    .hexagon-item {
        height: 280px;
        padding: 30px 20px;
        width: calc(100% - 20px);
        margin: 10px;
        border-radius: 12px;
    }
    .hexagon-row { flex-wrap: wrap; justify-content: center; margin-bottom: 0; }
    .hexagon-row:nth-child(2) { margin-left: 0; }
    .hexagon-item::before { clip-path: none; border-radius: 10px; }
    .hexagon-icon { margin-top: 15px; }
    .section-title h2 { font-size: 2rem; }
}
@media (max-width: 576px) {
    .hexagon-grid { grid-template-columns: 1fr; max-width: 100%; }
    .hexagon-item { height: 250px; padding: 25px 20px; }
    .hexagon-icon { width: 40px; height: 40px; font-size: 1.8em; }
    .hexagon-title { font-size: 1.2rem; }
}
@media (max-width: 480px) {
    .hero-btn { padding: 9px 18px; font-size: 14px; }
    .hero__content { padding: 50px 15px; }
    .hero__title { font-size: 1.75rem; margin-bottom: 0.75rem; letter-spacing: -0.2px; }
    .hero__description { font-size: 0.9rem; margin-bottom: 1.5rem; padding: 0; }
    .search-form { border-radius: 20px; }
    .search-form input[type="text"] { padding: 14px 16px; font-size: 16px; border-radius: 20px 20px 0 0; }
    .search-form button { padding: 14px 20px; border-radius: 0 0 20px 20px; font-size: 1rem; }
    .hexagon-item { width: calc(100% - 20px); max-width: 100%; height: 160px; }
    .section-title h2 { font-size: 1.8rem; }
    .section-title p { font-size: 1rem; padding: 0 15px; }
}
@media (max-width: 360px) {
    .hero__title { font-size: 1.5rem; }
    .hero__description { font-size: 0.85rem; }
    .search-form input[type="text"] { padding: 12px 14px; }
    .search-form button { padding: 12px 16px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .hero__content { max-width: 90%; padding: 0 30px; }
    .hero__title { font-size: 2.5rem; }
    .hero__description { font-size: 1.1rem; }
    .search-form { max-width: 450px; }
}
@media (max-height: 500px) and (max-width: 768px) {
    .hero__content { padding-top: 20px; padding-bottom: 20px; }
    .hero__title { font-size: 1.75rem; margin-bottom: 0.75rem; }
    .hero__description { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .search-form { max-width: 400px; }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero__title { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
}
@media (prefers-reduced-motion: reduce) {
    .search-form { transition: none; }
    .search-form:focus-within { transform: none; }
    .search-form button:hover { transform: none; }
}
@media (prefers-color-scheme: dark) {
    .hero__description { color: #bdc3c7; }
    .search-form { background: rgba(45,45,45,0.9); border-color: #04AA6D; }
    .search-form input[type="text"] { color: #ecf0f1; }
    .search-form input[type="text"]::placeholder { color: #95a5a6; }
}
@media print {
    .hero__content { transform: none; text-align: left; }
    .hero__title { background: none; -webkit-text-fill-color: #00008B; color: #00008B; text-shadow: none; }
    .search-form { display: none; }
}

/* =====================================================
   Features
   ===================================================== */
.features {
    padding: 20px 20px 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}
.features::before,
.features::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}
.features::before {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}
.features::after {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    bottom: -100px;
    left: -50px;
    animation-delay: -3s;
}
.features .shape-1 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    left: 10%;
    opacity: 0.15;
    animation: morph 8s ease-in-out infinite;
}
.features .shape-2 {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #43e97b 0%, #38f9d7 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    bottom: 20%;
    right: 15%;
    opacity: 0.15;
    animation: rotate 10s linear infinite;
}
.features .shape-3 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 100%);
    transform: rotate(45deg);
    top: 60%;
    left: 5%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}
@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: scale(1) rotate(0deg); }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; transform: scale(1.1) rotate(180deg); }
}
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes featurePulse {
    0%, 100% { transform: rotate(45deg) scale(1); opacity: 0.1; }
    50% { transform: rotate(45deg) scale(1.2); opacity: 0.15; }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding:50px 0 0 0;
}
.section-header h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}
.section-header .subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
/* Note: .section-title with different styles above, we keep the most comprehensive one. */
.section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.5);
}
.section-subtitle {
    color: #707070;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
.feature-card {
    background: white;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    border: 1px solid #ddd;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.01) 0%,
        rgba(255,255,255,0) 50%,
        rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}
.feature-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 80px rgba(78,205,196,0.3), inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 0 rgba(0,0,0,0.2);
    border-color: rgba(78,205,196,0.3);
}
.feature-card:hover::before { opacity: 1; }
.feature-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b22, #4ecdc422, #45b7d122, #96ceb422, #ffeaa722);
    border-radius: 22px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: glow 3s ease-in-out infinite;
}
.feature-card:hover .feature-glow { opacity: 1; }
@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}
.feature-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 0 20px 0 60px;
    top: -2px;
    right: -2px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 20px rgba(78,205,196,0.5);
}
.feature-card:hover .feature-corner { opacity: 1; transform: scale(1); }
.feature-icon {
    font-size: 1.7rem;
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, #00008B 0%, #04AA6D 100%);
    border-radius: 50px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3), inset 0 2px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}
.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.15) rotateY(15deg) translateZ(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(102,126,234,0.6), inset 0 2px 0 rgba(255,255,255,0.3);
    background: linear-gradient(135deg, #ff6b6b 0%, #667eea 50%, #764ba2 100%);
}
.feature-card:hover .feature-icon::before { left: 100%; }
.feature-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
    text-align: center;
    position: relative;
}
.feature-desc {
    color: #707070;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
    text-align: center;
    position: relative;
}
/* Individual color variations */
.feature-card:nth-child(1):hover .feature-icon { background: linear-gradient(135deg, #ff6b6b, #ee5a52); }
.feature-card:nth-child(2):hover .feature-icon { background: linear-gradient(135deg, #4ecdc4, #00b894); }
.feature-card:nth-child(3):hover .feature-icon { background: linear-gradient(135deg, #45b7d1, #0984e3); }
.feature-card:nth-child(4):hover .feature-icon { background: linear-gradient(135deg, #96ceb4, #00b894); }
.feature-card:nth-child(5):hover .feature-icon { background: linear-gradient(135deg, #ffeaa7, #fdcb6e); }
.feature-card:nth-child(6):hover .feature-icon { background: linear-gradient(135deg, #dda0dd, #a29bfe); }
.feature-card:nth-child(7):hover .feature-icon { background: linear-gradient(135deg, #fab1a0, #e17055); }
.feature-card:nth-child(8):hover .feature-icon { background: linear-gradient(135deg, #81ecec, #00cec9); }

@media (max-width: 1200px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}
@media (max-width: 768px) {
    .features { padding: 60px 15px; }
    .section-title { font-size: 2.5rem; }
    .section-subtitle { font-size: 1.1rem; }
    .feature-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; gap: 20px; }
    .feature-card { padding: 30px 20px; }
    .feature-icon { width: 80px; height: 80px; font-size: 2.2rem; }
}
@media (max-width: 480px) {
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 1rem; }
    .feature-card { padding: 25px 15px; }
    .feature-icon { width: 70px; height: 70px; font-size: 2rem; }
}

/* =====================================================
   Product Comprehensive
   ===================================================== */
.product-comprehensive { padding: 0; color: #2c3e50; line-height: 1.6; }
.containerp { max-width: 100%; margin: 0 auto; padding: 50px 20px; }
.product-hero { color: white; padding: 80px 0; position: relative; overflow: hidden; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}
.benefit-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: #2c3e50; }
.benefit-card p { color: #7f8c8d; font-size: 0.95rem; line-height: 1.7; }

.features-tabs {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.tab-buttons {
    display: flex;
    border-bottom: 1px solid #eee;
}
.tab-btn {
    flex: 1;
    padding: 18px 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #95a5a6;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.tab-btn.active { color: #4A6BFF; }
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #4A6BFF;
}
.tab-content { display: none; padding: 30px; }
.tab-content.active { display: block; }
.feature-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.feature-list h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}
.feature-list h3 i { color: #4A6BFF; }
.feature-list ul { list-style: none; padding: 0; }
.feature-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #666;
}
.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4A6BFF;
    font-weight: bold;
}
html[dir="rtl"] .feature-list li::before {
    left: auto;
    right: 0;
}
html[dir="rtl"] .feature-list li {
    padding-right: 25px;
    padding-left: 0;
}
html[dir="ltr"] .feature-list li {
    padding-left: 25px;
    padding-right: 0;
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.step { display: flex; gap: 20px; }
.step-number {
    width: 40px;
    height: 40px;
    background: #4A6BFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.step-content h3 { font-size: 1.2rem; margin-bottom: 10px; color: #2c3e50; }
.step-content p { color: #7f8c8d; font-size: 0.95rem; line-height: 1.7; }
.usage-video {
    max-width: 800px;
    margin: 0 auto;
    background: #F9FAFC;
    border-radius: 12px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.video-placeholder { text-align: center; z-index: 2; }
.video-placeholder i { font-size: 4rem; margin-bottom: 20px; cursor: pointer; transition: all 0.3s ease; }
.video-placeholder i:hover { transform: scale(1.1); }
.video-placeholder p { font-size: 1.1rem; }

.tech-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.spec-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.spec-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}
.spec-card h3 i { color: #4A6BFF; }
.spec-card ul { list-style: none; padding: 0; }
.spec-card li { margin-bottom: 12px; color: #666; }
.spec-card strong { color: #2c3e50; }

@media (max-width: 1024px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-image { opacity: 0.2; }
}
@media (max-width: 768px) {
    .product-hero { padding: 60px 0; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-badges { justify-content: center; }
    .hero-image { display: none; }
    .tab-buttons { flex-wrap: wrap; }
    .tab-btn { flex: auto; padding: 15px; font-size: 0.9rem; }
    .usage-video { height: 350px; }
}
@media (max-width: 480px) {
    .section-header h2 { font-size: 2rem; }
    .hero-content h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .step { flex-direction: column; gap: 10px; }
    .usage-video { height: 250px; }
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq-section {
    padding: 0 0 60px 0;
    background-color: #CAD5E6;
    position: relative;
}
.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e6ff;
}
.faq-item:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-question h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
    transition: all 0.3s ease;
}
.faq-question:hover h3 { color: #4a6bff; }
.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f5f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.faq-toggle i { color: #4a6bff; font-size: 0.9rem; transition: all 0.3s ease; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    color: #666;
    line-height: 1.8;
    padding: 0 30px;
    margin: 0;
}
.faq-item.active .faq-question { background-color: #f5f7ff; }
.faq-item.active .faq-toggle { background-color: #4a6bff; transform: rotate(45deg); }
.faq-item.active .faq-toggle i { color: white; }
.faq-item.active .faq-answer { padding: 0 30px 25px 30px; }
.faq-cta {
    text-align: center;
    margin-top: 50px;
    color: #7f8c8d;
}
.faq-cta a {
    color: #4a6bff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.faq-cta a:hover { color: #2c3e50; text-decoration: underline; }
@media (max-width: 768px) {
    .faq-section { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
    .faq-question { padding: 20px; }
    .faq-question h3 { font-size: 1.1rem; }
    .faq-answer p { padding: 0 20px; }
    .faq-item.active .faq-answer { padding: 0 20px 20px 20px; }
}
@media (max-width: 480px) {
    .section-header h2 { font-size: 1.8rem; }
    .section-header .subtitle { font-size: 1rem; }
}


/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #00008B 0%, #764ba2 100%);
    padding: 60px 40px;
    margin:0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}
.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cta-btn.primary {
    background: #ff6b6b;
    color: white;
    box-shadow: 0 10px 20px rgba(255,107,107,0.3);
}
.cta-btn.primary:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255,107,107,0.4);
}
.cta-btn.secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}
.cta-btn.secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}
.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}
.shape-1 { width:120px; height:120px; top:10%; left:10%; animation-delay:0s; }
.shape-2 { width:80px; height:80px; top:60%; left:80%; animation-delay:1s; }
.shape-3 { width:150px; height:150px; top:20%; left:70%; animation-delay:2s; }
.shape-4 { width:100px; height:100px; top:70%; left:20%; animation-delay:3s; }
.shape-5 { width:60px; height:60px; top:80%; left:60%; animation-delay:4s; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}
@media (max-width: 768px) {
    .cta-section { padding: 40px 20px; }
    .cta-content h2 { font-size: 2rem; }
    .cta-content p { font-size: 1rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-btn { width: 100%; max-width: 250px; justify-content: center; }
}

/* =====================================================
   Footer
   ===================================================== */
footer {
    background-color: #F7F7F7;
    padding: 60px 0 20px;
    color: var(--secondary-text);
}
.footer-logo-container { display: flex; justify-content: center; margin-bottom: 30px; }
.footer-brand { text-align: center; max-width: 600px; }
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}
.logo-highlight { color: #00008B; margin-left: 4px; }
.footer-tagline { font-size: 1rem; margin: 0; opacity: 0.8; }
.footer-social-container { display: flex; justify-content: center; margin-bottom: 30px; }
.footer-social { display: flex; gap: 15px; }
.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #00008B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 0px solid #FF1B2D;
    text-decoration: none;
}
.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74,107,255,0.3);
}
.footer-language-container { display: flex; justify-content: center; margin-bottom: 40px; }
.footer-language { width: 100%; display: flex; justify-content: center; }
.gtranslate_wrapper { width: auto !important; }
.gtranslate_wrapper img { display: none !important; }
.gtranslate_wrapper select {
    padding: 11px 15px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 18px;
    background: #fff;
    color: #860102;
    cursor: pointer;
    font-weight: bold;
    width: 40%;
    margin: 0 auto 30px auto;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px dashed #00008B;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-link {
    color: var(--secondary-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.footer-link:hover { color: var(--primary-color); }
.copyright { font-size: 0.9rem; opacity: 0.8; }
.copyright a { color: var(--text-color); text-decoration: none; transition: color 0.3s; }
.copyright a:hover { color: var(--primary-color); }
@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-links { justify-content: center; }
    .footer-logo { font-size: 1.5rem; }
    .footer-language-container { margin-bottom: 30px; }
    .gtranslate_wrapper select { width: 80%; }
}

/* =====================================================
   Back to Top
   ===================================================== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    font-size: 22px;
    background-color: #00008B;
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    cursor: pointer;
    z-index: 9999;
    display: none;
    transition: all 0.3s ease;
}
#backToTop:hover { background-color: #005ec4; transform: scale(1.1); }

/* =====================================================
   Blog Preview
   ===================================================== */
.blog-preview { padding: 80px 0; background: #fff; }
.section__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}
.grid { display: grid; gap: 30px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
.blog-card__image { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card__content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card__title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.4;
    font-weight: 600;
}
.blog-card__meta { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.85rem; color: #7f8c8d; }
.blog-card__excerpt { color: #5d6d7e; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.blog-card__link { color: #3498db; text-decoration: none; font-weight: 600; transition: color 0.3s ease; align-self: flex-start; }
.blog-card__link:hover { color: #2980b9; }
.section__actions { text-align: center; margin-top: 40px; }
.btnb {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn--primary { background: #04AA6D; color: white; }
.btn--primary:hover { background: #2980b9; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(52,152,219,0.3); }
@media (max-width: 1024px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .blog-preview { padding: 60px 0; }
    .section__title { font-size: 2rem; }
    .grid--3 { grid-template-columns: 1fr; }
    .blog-card__content { padding: 20px; }
}

/* =====================================================
   RTL MODE
   ===================================================== */
<?php if ($current_lang == 'ar'): ?>
.rtl-copy { direction: rtl !important; text-align: center !important; }
.rtl-copy a { direction: rtl !important; text-align: center !important; display: inline-block !important; }
html[dir="rtl"] body { direction: rtl !important; text-align: right !important; }
html[dir="rtl"] .page-title,
html[dir="rtl"] .page-description { text-align: center !important; }
html[dir="rtl"] .file-info { flex-direction: row-reverse !important; }
html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea { text-align: right !important; direction: rtl !important; }
html[dir="rtl"] .upload-text,
html[dir="rtl"] .upload-hint { text-align: center !important; }
html[dir="rtl"] .section-header,
html[dir="rtl"] .content-text { direction: rtl !important; text-align: right !important; }
html[dir="rtl"] ul { padding-right: 25px !important; padding-left: 0 !important; }
html[dir="rtl"] #backToTop { right: 20px !important; left: auto !important; }
html[dir="rtl"] .copyright { direction: rtl !important; text-align: center !important; }
html[dir="rtl"] .hexagon-title,
html[dir="rtl"] .hexagon-desc { text-align: right !important; direction: rtl; }
html[dir="ltr"] .hexagon-title,
html[dir="ltr"] .hexagon-desc { text-align: left !important; direction: ltr; }
html[dir="rtl"] .use-cases-section { direction: rtl; }
html[dir="rtl"] .usecases-grid li { text-align: right; }
html[dir="rtl"] .use-cases-section .section-header,
html[dir="rtl"] .use-cases-section .section-header h2,
html[dir="rtl"] .use-cases-section .section-header p { text-align: center; }
html[dir="rtl"] .tool-block-list li { padding-left: 0; padding-right: 26px; text-align: right; }
html[dir="rtl"] .tool-block-list li::before { left: auto; right: 0; }
html[dir="rtl"] .breadcrumb-item { direction: rtl; }
html[dir="rtl"] .breadcrumb-separator { margin: 0 6px; }
html[dir="rtl"] .option-select { background-position: left 12px center; padding-right: 12px; padding-left: 32px; }
html[dir="rtl"] .search-form input { text-align: right; }
html[dir="rtl"] .lang-select { text-align: center; }
@media (max-width: 768px) {
    html[dir="rtl"] .tool-block-list li { padding-right: 24px; text-align: right; }
    html[dir="rtl"] .feature-list li { padding-right: 24px; }
}
@media (max-width: 480px) {
    html[dir="rtl"] .tool-block-list li { padding-right: 22px; }
}
<?php endif; ?>


/* =====================================================
   Use Cases Section
   ===================================================== */
.use-cases-section {
    background: #f9fafb;
    padding: 70px 20px;
}
.use-cases-container { max-width: 1100px; margin: 0 auto; }
.use-cases-section .section-header { text-align: center; margin-bottom: 45px; margin-left: auto; margin-right: auto; }
.use-cases-section .section-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.4;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.use-cases-section .section-header p {
    font-size: 15px;
    color: #6b7280;
    max-width: 720px;
    line-height: 1.7;
    text-align: center;
    margin: 0 auto;
}
.usecases-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}
.usecases-grid li {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 26px;
    box-shadow: 0 8px 26px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
}
.usecases-grid li:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.08); }
.usecases-grid li strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 8px;
}
.usecases-grid li p { font-size: 14px; line-height: 1.7; color: #374151; margin: 0; }
@media (max-width: 600px) {
    .use-cases-section { padding: 50px 16px; }
    .use-cases-section .section-header h2 { font-size: 24px; }
    .use-cases-section .section-header p { font-size: 14px; }
}

/* =====================================================
   Tool Text Blocks
   ===================================================== */
.tool-text-block {
    max-width: 1100px;
    padding: 0px 60px;
    margin: 0 auto;
}
.tool-block-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
}
.tool-block-title::after {
    content: "";
    display: block;
    height: 1px;
    background: #e5e7eb;
    margin: 14px 0 20px;
}
.tool-block-desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: justify;
}
.tool-block-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tool-block-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
    font-size: 14.5px;
    line-height: 1.7;
    color: #374151;
    text-align: justify;
}
.tool-block-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    color: #22c55e;
    font-weight: 700;
}
.tool-block-list strong { font-weight: 600; color: #111827; }
@media (max-width: 768px) {
    .tool-text-block { padding: 0px 30px; }
    .tool-block-title { font-size: 20px; padding: 0px; }
    .tool-block-desc { font-size: 14.5px; line-height: 1.6; text-align: left; }
    .tool-block-list li { font-size: 14px; line-height: 1.6; padding-left: 24px; margin-bottom: 12px; text-align: left; }
    .tool-block-list li::before { top: 1px; }
    html[dir="rtl"] .tool-block-list li { padding-right: 24px; text-align: right; }
    html[dir="rtl"] .tool-block-desc { text-align: right; }
}
@media (max-width: 480px) {
    .tool-text-block { padding: 0px 20px; }
    .tool-block-title { font-size: 19px; }
    .tool-block-desc { font-size: 14px; line-height: 1.5; }
    .tool-block-list li { font-size: 13.5px; line-height: 1.5; padding-left: 22px; }
    html[dir="rtl"] .tool-block-list li { padding-right: 22px; }
}

/* =====================================================
   Breadcrumb
   ===================================================== */
.breadcrumb-nav {
    margin: 12px 0 20px;
    font-size: 14px;
}
.breadcrumb-list {
    list-style: none;
    padding: 10px 14px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
}
.breadcrumb-item { display: flex; align-items: center; color: #666; }
.breadcrumb-item a { color: #1a73e8; text-decoration: none; font-weight: 500; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-separator { margin: 0 6px; color: #999; font-size: 13px; }
.breadcrumb-current { color: #333; font-weight: 600; }

/* =====================================================
   Ads
   ===================================================== */
.ad-container {
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    margin:24px auto;
    padding:0 12px;
    text-align:center;
    overflow:hidden;
    clear:both;
}
.ad-container iframe,
.ad-container img,
.ad-container ins,
.ad-container object,
.ad-container embed {
    display:block;
    margin:0 auto;
    border:0;
    max-width:100%;
}
.ad-container img { height:auto; }
.ad-main-banner,
.ad-native,
.ad-funnel,
.ad-footer,
.ad-sidebar,
.ad-tool-top,
.ad-tool-middle,
.ad-tool-bottom,
.ad-article-top,
.ad-article-middle,
.ad-article-bottom { width:100%; text-align:center; }
.ad-728 { width:100%; max-width:728px; margin:20px auto; }
.ad-468 { width:100%; max-width:468px; margin:20px auto; }
.ad-300 { width:100%; max-width:300px; margin:20px auto; }
.ad-320 { width:100%; max-width:320px; margin:20px auto; }
.ad-tool-top { margin:20px auto 30px; }
.ad-tool-middle { margin:35px auto; }
.ad-tool-bottom { margin:40px auto; }
.ad-article-top { margin:25px auto; }
.ad-article-middle { margin:35px auto; }
.ad-article-bottom { margin:45px auto; }
.ad-sidebar { margin-bottom:24px; }
.ad-footer { margin:40px auto; }
.desktop-ad { display:block; }
.mobile-ad { display:none; }
@media (min-width:769px) { .ad-footer-banner { display:none; } }
@media (max-width:768px) {
    .ad-container { padding:0 10px; margin:18px auto; }
    .desktop-ad { display:none; }
    .mobile-ad { display:block; }
    .ad-tool-top,
    .ad-tool-middle,
    .ad-tool-bottom,
    .ad-article-top,
    .ad-article-middle,
    .ad-article-bottom { margin:18px auto; }
    .ad-main-banner,
    .ad-native,
    .ad-funnel,
    .ad-footer,
    .ad-728,
    .ad-468,
    .ad-320,
    .ad-300 { display:flex; justify-content:center; align-items:center; overflow:hidden; }
    .ad-container * { max-width:100%; box-sizing:border-box; }
}

/* =====================================================
   Homepage Ads
   ===================================================== */
.ad-home-top { margin:20px auto 30px; text-align:center; }
.ad-home-middle { margin:35px auto; text-align:center; }
.ad-home-bottom { margin:40px auto; text-align:center; }
.ad-home-banner { max-width:728px; margin:25px auto; }
.ad-home-native { max-width:100%; margin:30px auto; }
.ad-home-top,
.ad-home-middle,
.ad-home-bottom { clear:both; width:100%; }
.ad-home-top iframe,
.ad-home-middle iframe,
.ad-home-bottom iframe,
.ad-home-top img,
.ad-home-middle img,
.ad-home-bottom img { max-width:100%; }
.ad-home-middle { text-align:center; }
.ad-home-banner { max-width:728px; width:100%; }