/* ===================================
   RESET & BASE STYLES
   =================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

body {
    font-family: Arial, sans-serif;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    background-color: #ffffff;
    color: #333;
    padding: 1rem 0;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1110px !important;
    margin: 0 auto;
    padding: 0 1rem;
}
.whysection{margin: 15px auto 0;}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-search {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-items, .lang-select {
    list-style-type: none;
    display: flex;
    gap: 1rem;
}

.nav-items a, .lang-select > span {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.lang-select {
    position: relative;
    margin-left: 1rem;
}

.lang-select > span {
    display: flex;
    align-items: center;
}

.lang-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #003366;
    padding: 0.5rem 0;
    min-width: 120px;
    z-index: 1000;
}

.lang-options a {
    display: block;
    padding: 0.5rem 1rem;
    color: white;
    text-decoration: none;
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.mobile-menu-icon span {
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
}

.mobile-menu-close {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 24px;
}

.search-icon {
    color: #333;
    cursor: pointer;
}

.search-container {
    display: none;
    background-color: #003366a1;
    padding: 1rem 0;
}

/* ===================================
   SEARCH HEADER & FORM
   =================================== */
.search-header {
    background: #bffffd;
    padding: 2rem 0;
}

.search-header-titles {
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.search-header-titles h1 {
       line-height: 1.2;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 30px;
    color: #191b23; font-weight: 800;
}

.search-header-titles h2 {
    font-size: 1.2rem;
    color: #000;     font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0;
}

.search-content {
    padding: 0;
    text-align: center;
    max-width: 70%;
    margin: 0 auto;
}

.search-form {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.input-wrapper {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #999;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    padding: 15px 60px 15px 45px;
    font-size: 18px;
    width: 100%;
    background: #fff !important;
    border-radius: 5px;
    box-shadow: 0 7px 14px #a2a6d166;
    height: 60px;
    line-height: 24px;
    border: none;
    outline: none;
}

.search-input:focus {
    box-shadow: 0 7px 14px #a2a6d199;
    background: #fff !important;
}

.search-input:-webkit-autofill,
.search-input:-webkit-autofill:hover,
.search-input:-webkit-autofill:focus,
.search-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    box-shadow: 0 0 0 30px white inset !important;
    background-color: #fff !important;
}

.paste-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fe2c55;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    border-radius: 4px; 
}

.paste-btn:hover {
    background: #ea284e;
    color: #fff;
}

.paste-btn:active {
    background: #e0e0e0;
}

.paste-btn i {
    font-size: 18px;
}

.download-btn {
    background-color: #fe2c55;
    color: white;
    border: none;
    padding: 17px 30px;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s;
    white-space: nowrap; font-weight: 600;
}

.download-btn i {
    margin-right: 0.5rem;
}

/* ===================================
   TIKTOK LOADER
   =================================== */
.tiktok-loader-container {
    max-width: 400px;
    margin: 2rem auto;
    text-align: center;
    padding: 40px;
}

.tiktok-loader {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
}

.tiktok-bar {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid transparent;
    animation: rightToLeft 0.85s ease-in-out infinite;
}

.tiktok-bar-red {
    border-top-color: #FE2C55;
    border-right-color: #FE2C55;
    animation-delay: 0s;
}

.tiktok-bar-blue {
    border-bottom-color: #25F4EE;
    border-left-color: #25F4EE;
    animation-delay: 0.425s;
}

@keyframes rightToLeft {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tiktok-loading-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.tiktok-est-time {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

/* ===================================
   MAIN CONTENT SECTIONS
   =================================== */
.main-heading {
    text-align: center;
    font-size: 1.75rem;
    margin: 1rem 0;
    font-weight: 700;
}

.main-description {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-item {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: background-color 0.3s ease;
}

.grid-item:hover {
    background-color: #f0f0f0;
}

.icon-placeholder {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

.item-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.item-description {
    font-size: 1rem;
    color: #666;
}

/* ===================================
   DOWNLOAD SECTION
   =================================== */
.download-section {
    padding: 2rem 0;
}

.section-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 0;
    color: #2c3e50;
    font-weight: 700;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-start;
}

.step-card {
    flex: 0 1 calc(33.333% - 1.33rem);
    max-width: calc(33.333% - 1.33rem);
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-image {
    width: 100%;
    height: 200px;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-content {
    padding: 1.5rem 0;
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.step-description {
    font-size: 1rem;
    color: #7f8c8d;
}

/* ===================================
   BLOG SECTIONS
   =================================== */
.blog-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem 0;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.blog-card-description {
    font-size: 1rem;
    color: #666;
}

.blog-post {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.blog-post-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-post-content {
    padding: 1rem 0;
}

.blog-post-title {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.blog-post-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
}

.blog-post-date {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 1rem;
}

/* ===================================
   RECENT POSTS
   =================================== */
.recent-posts {
    padding: 2rem 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.post-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.post-description {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 0;
}

/* ===================================
   RELATED POSTS
   =================================== */
.related-posts {
    margin-top: 3rem;
}

.related-posts-title {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-post-card {
    background-color: #ffffff;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.related-post-card:hover {
    transform: translateY(-5px);
}

.related-post-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.related-post-content {
    padding: 1rem 0;
}

.related-post-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.related-post-description {
    font-size: 0.9rem;
    color: #4a5568;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 2rem 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.faq-description {
    font-size: 1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 0.20rem;
    overflow: hidden;
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: #34495e;
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    margin:0 0;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question .material-icons {
    font-size: 1.2rem;
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-question.active .material-icons {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 0.9rem;
    color: #555;
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    margin: 0;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 0.75rem 1rem;
}

/* ===================================
   BREADCRUMB
   =================================== */
.page {
    margin: 15px auto !important;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 5px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
    color: #6B7280;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin: 0 0.5rem;
    color: #9CA3AF;
}

.breadcrumb-item a {
    color: #3B82F6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #2563EB;
}

.breadcrumb-item.active {
    color: #374151;
    font-weight: 600;
}

/* ===================================
   ERROR MESSAGES
   =================================== */
.error-message {
    background-color: #FEE2E2;
    border-left: 4px solid #EF4444;
    padding: 16px;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.error-message p {
    color: #991B1B;
    margin: 0 0 10px 0;
    font-size: 14px;
}

.error-message p:first-child {
    font-weight: bold;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn:hover {
    background-color: #2980b9;
    transform: translateY(-5px);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-icon {
    font-size: 24px;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background-color: #f8f9fa;
    padding: 3rem 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    max-width: 100%;
    margin: 0 auto;
    height: auto;
}

.footer-nav {
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link-item {
    margin: 0.5rem 1rem;
}

.footer-link {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #007bff;
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #6c757d;
}

/* ===================================
   RESPONSIVE MEDIA QUERIES
   =================================== */
@media (max-width: 992px) {
    .step-card {
        flex: 0 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    /* Header & Navigation */
    .nav-container {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: auto;
        height: 100%;
        background-color: white;
        color: #003366;
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-container.active {
        display: flex;
    }

    .mobile-menu-icon {
        display: flex;
    }

    .mobile-menu-close {
        display: block;
    }

    .nav-items, .lang-select {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-items li,
    .lang-select > span,
    .lang-options a {
        margin: 0.5rem 0;
    }

    .nav-items a,
    .lang-select > span,
    .lang-options a {
        color: #003366;
    }

    .lang-select {
        margin-left: 0;
    }

    .lang-options {
        position: static;
        background-color: transparent;
        padding: 0;
        display: none;
    }

    .search-icon {
        display: none;
    }

    .search-container {
        display: block;
        position: static;
        background-color: transparent;
        padding: 0;
        width: 100%;
        margin-top: 40px;
        margin-bottom: 0;
    }

    /* Search Header */
    .search-header-titles h1 {
        font-size: 2rem;
    }

    .search-header-titles h2 {
        font-size: 1rem;
    }

    .search-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .search-form {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
    }

    .input-wrapper {
        width: 100%;
    }

    /* Grid Layouts */
    .grid-layout {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    /* Steps */
    .steps-container {
        flex-direction: column;
        align-items: stretch;
    }

    .step-card {
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    /* Blog Post */
    .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-image {
        height: 300px;
    }

    .related-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    /* Typography */
    .main-heading {
        font-size: 2rem;
    }

    .main-description {
        font-size: 1rem;
    }

    .item-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-description {
        font-size: 0.9rem;
    }

    .faq-question {
        font-size: 0.9rem;
    }

    .faq-answer {
        font-size: 0.85rem;
    }

    /* Footer */
    .site-footer {
        padding: 2rem 0;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-link-item {
        margin: 0.5rem 0;
    }
}

@media (max-width: 640px) {
    .breadcrumb {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .search-header h1 {
        font-size: 2rem;
    }

    .search-header h2 {
        font-size: 1rem;
    }

    .search-form {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-post-title {
        font-size: 1.8rem;
    }

    .blog-post-image {
        height: 200px;
    }

    .blog-post-content {
        padding: 1rem 0;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}


/* ===================================
   TIKTOK VIDEO CARD (video_info_template.php)
   =================================== */
.tiktok-card {
    max-width: 400px;
    margin: 2rem auto;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.thumbnail-section {
    background-color: #000;
}

.user-info {
    padding: 10px 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 18px;
}

.user-profile svg {
    width: 24px;
    height: 24px;
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.username {
    font-weight: 500;
}

.video-preview-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.video-preview-link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.play-icon {
    position: absolute;
    font-size: 40px;
    pointer-events: none;
    opacity: 0.6;
    color: #fff;
    z-index: 2;
}

.video-thumbnail {
    width: 100%;
    min-height: 180px;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 0;
}

.download-section {
    padding: 14px;
}

.download-item {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ff3b5c;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    margin-bottom: 10px;
}

.download-btn-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #ff3b5c;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.download-btn-main:hover {
    background: rgba(255, 59, 92, 0.1);
}

.download-btn-main.downloading {
    opacity: 0.6;
    pointer-events: none;
    background: rgba(76, 175, 80, 0.1) !important;
}

.badge-hd {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
}

.open-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255, 59, 92, 0.3);
    color: #ff3b5c;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.open-link-btn:hover {
    background: rgba(255, 59, 92, 0.1);
}

.download-another-section {
    padding: 14px;
    padding-top: 0;
}

.btn-another {
    width: 100%;
    padding: 12px;
    background-color: #ff0050;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-another:hover {
    background-color: #e8084e;
}

/* ===================================
   HEADER STYLES FROM includes/header.php
   =================================== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.text-center {
    text-align: center !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.process-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.process-arrow-img {
    position: absolute;
    left: 75%;
    top: 7%;
    width: 50%;
    opacity: 0.1;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.icon-effect {
    position: relative;
    transition: all 0.3s ease;
}

.avatar-sm {
    height: 3rem;
    width: 3rem;
}

.icon-effect::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: rgba(23, 10, 179, 0.2);
    border-radius: 50%;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.process-card:hover .icon-effect::before {
    width: 28px;
    height: 28px;
    background-color: rgba(10, 179, 156, 0.3);
}

.avatar-title {
    align-items: center;
    background-color: #405189;
    color: #fff;
    display: flex;
    font-weight: 500;
    height: 100%;
    justify-content: center;
    width: 100%;
    transition: all 0.3s ease;
}

.process-card:hover .avatar-title {
    background-color: rgba(10, 179, 156, 1);
}

.rounded-circle {
    border-radius: 50% !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.text-success {
    color: #485ea0 !important;
}

.process-card h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.text-muted {
    color: #6c757d !important;
}

.fa-icon {
    font-size: 32px;
    transition: all 0.3s ease;
}

.process-card:hover .fa-icon {
    transform: rotate(15deg);
}

h2 {
    font-size: 36px;
    color: #333;
    line-height: 46px;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: normal;
    font-weight: 500;
    margin: 20px 0;
}

p, ul li {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 32px;
    margin: 10px 0;
}

/* ===================================
   RESPONSIVE UPDATES
   =================================== */
@media (min-width: 992px) {
    .row {
        flex-wrap: nowrap;
    }
    
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .d-lg-block {
        display: block !important;
    }
    
    .process-arrow-img {
        display: block;
    }
    
    h2 {
        font-size: 36px;
        color: #333;
        line-height: 46px;
    }
}

@media (max-width: 991.98px) {
    .process-arrow-img {
        display: none;
    }
    
    .process-card {
        margin: 0;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .tiktok-card {
        margin: 1rem;
        max-width: 100%;
    }
    
    .video-thumbnail {
        max-height: 400px;
    }
    
    h2 {
        font-size: 24px;
        color: #333;
        line-height: 32px;
    }
    
    p, ul li {
        font-size: 16px;
        line-height: 28px;
    }
}


/* ===================================
   FOOTER ADDITIONAL STYLES
   =================================== */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-nav .footer-links {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-left: 20px;
}

.footer-link {
    text-decoration: none;
    color: #333;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.footer.copyright {
    flex: 0 0 calc(80% - 10px);
}

.footer-languages {
    flex: 0 0 calc(20% - 10px);
}

.language-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropbtn {
    background-color: #f8f9fa;
    color: #333;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropbtn:hover,
.dropbtn:focus {
    background-color: #e9ecef;
}

.dropbtn .arrow {
    border: solid #333;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-135deg);
    transition: transform 0.3s;
}

.dropbtn.active .arrow {
    transform: rotate(45deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    bottom: 100%;
    margin-bottom: 5px;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
}

.show {
    display: block;
}

/* Update scroll-top-btn z-index */
.scroll-top-btn {
    z-index: 1000;
}

/* ===================================
   FOOTER RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .footer-nav .footer-links {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .footer-link-item {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .footer.copyright,
    .footer-languages {
        flex: 0 0 100%;
        text-align: center;
    }

    .language-dropdown {
        width: 200px;
        margin: 0 auto;
    }
}


/* ===================================
   CUSTOM SECTION TYPOGRAPHY
   =================================== */
.custom-section h2, h2 {
    font-size: 36px;
    color: #333;
    line-height: 46px;
}

.custom-section h1, .custom-section h2, .custom-section h3, .custom-section h4, .custom-section h5, .custom-section h6 {
    letter-spacing: normal;
    font-weight: 500;
    margin: 20px 0;
}

.custom-section p, .custom-section ul li {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 32px;
    margin: 10px 0;
}

@media only screen and (min-width: 992px) {
    .custom-section h2 {
        font-size: 36px;
        color: #333;
        line-height: 46px;
    }
}

@media only screen and (max-width: 768px) {
    .custom-section h2, h2 {
        font-size: 24px;
        color: #333;
        line-height: 32px;
    }
    
    .custom-section p, .custom-section ul li {
        font-size: 16px;
        line-height: 28px;
    }
    
    .search-content {
        padding: 0 !important;
    }
}

/* ===================================
   HEADER SEARCH BAR
   =================================== */
.content-header {
    background: #2e3f89;
    padding: 3rem 0 2.5rem;
    text-align: center;
    color: white;
}

.content-header-titles h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: white;
}

.content-header-titles h2 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.header-search-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.header-search-form {
    width: 100%;
}

.header-search-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #ddd;
    padding: 0.5rem 0.75rem;
}

.header-search-input-wrapper:focus-within {
    border-color: #2e3f89;
}

.header-search-icon {
    color: #2e3f89;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.header-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0.5rem;
    color: #333;
    background: transparent;
}

.header-search-input::placeholder {
    color: #999;
}

.header-search-btn {
    background: #2e3f89;
    color: white;
    border: none;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.header-search-btn:hover {
    background: #2e3f89;
}

.header-search-btn:active {
    background: #2e3f89;
}

/* Responsive styles for search bar */
@media (max-width: 768px) {
    .content-header {
        padding: 2rem 0 1.5rem;
    }
    
    .content-header-titles h1 {
        font-size: 1.75rem;
    }
    
    .content-header-titles h2 {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .header-search-input-wrapper {
        padding: 0.4rem 0.6rem;
    }
    
    .header-search-input {
        font-size: 0.9rem;
        padding: 0.4rem;
    }
    
    .header-search-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .content-header-titles h1 {
        font-size: 1.5rem;
    }
    
    .header-search-btn span {
        display: none;
    }
    
    .header-search-btn::after {
        content: "→";
        font-size: 1.2rem;
    }
}
