

.pos_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.pos_main-wrapper {
    display: flex;
    gap: 80px;
    margin-top: 32px;
}

/* Main Content Area */
.pos_main-content {
    flex: 1;
    min-width: 0;
}

/* Sidebar Styles */
.pos_sidebar {
    width: 350px;
    flex-shrink: 0;
}

.pos_sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.pos_contact-form h3 {
    color: #111827;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pos_google-partner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pos_google-logo {
    width: 24px;
    height: 24px;
}

.pos_partner-badge {
    background: #34d399;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.pos_form-group {
    margin-bottom: 16px;
}

.pos_form-group label {
    display: block;
    margin-bottom: 6px;
    color: #374151;
    font-weight: 500;
}

.pos_form-group input,
.pos_form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.pos_form-group input:focus,
.pos_form-group textarea:focus {
    outline: none;
    border-color: #EC2125;
    box-shadow: 0 0 0 3px rgba(241, 99, 99, 0.1);
}

.pos_form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.pos_submit-btn {
    background: #dc2626;
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.pos_submit-btn:hover {
    background: #b91c1c;
}

.pos_sidebar-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
}

.pos_sidebar-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Page Header */
.pos_page-header {
    margin-bottom: 32px;
}

.pos_breadcrumbs {
    margin-bottom: 16px;
}

.pos_breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.pos_breadcrumbs a {
    color: #EC2125;
    text-decoration: none;
    transition: color 0.2s;
}

.pos_breadcrumbs a:hover {
    color: #990c0eff;
}

.pos_breadcrumb-separator {
    width: 16px;
    height: 16px;
    margin: 0 8px;
    color: #9ca3af;
}

.pos_page-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.pos_page-description {
    color: #6b7280;
}

/* Category Filter */
.pos_category-filter {
    margin-bottom: 32px;
}

.pos_category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pos_category-badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.pos_category-badge.pos_active {
    background: #EC2125;
    color: white;
}

.pos_category-badge:not(.pos_active) {
    background: #e5e7eb;
    color: #374151;
}

.pos_category-badge:not(.pos_active):hover {
    background: #d1d5db;
    transform: scale(1.05);
}

/* Blog Grid */
.pos_blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.pos_blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.pos_blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pos_blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pos_blog-card-content {
    padding: 24px;
}

.pos_blog-category {
    display: inline-block;
    background: #e0e7ff;
    color: #EC2125;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 12px;
    transition: background-color 0.2s;
}

.pos_blog-category:hover {
    background: #e24f52ff;
}

.pos_blog-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.3;
}

.pos_blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.pos_blog-title a:hover {
    color: #EC2125;
}

.pos_blog-description {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.pos_blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.pos_blog-meta div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pos_blog-meta svg {
    width: 16px;
    height: 16px;
}

.pos_featured-badge {
    display: inline-flex;
    align-items: center;
    background: #fef3c7;
    color: #92400e;
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
    gap: 4px;
}

.pos_featured-badge svg {
    width: 12px;
    height: 12px;
}

.pos_read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #EC2125;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.pos_read-more:hover {
    color: #b31f22ff;
}

.pos_read-more svg {
    width: 16px;
    height: 16px;
}

/* No Posts */
.pos_no-posts {
    text-align: center;
    padding: 48px 0;
}

.pos_no-posts svg {
    width: 96px;
    height: 96px;
    color: #d1d5db;
    margin: 0 auto 16px;
}

.pos_no-posts h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.pos_no-posts p {
    color: #6b7280;
    margin-bottom: 16px;
}

/* Pagination */
.pos_pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.pos_pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pos_pagination a,
.pos_pagination span {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
}

.pos_pagination a {
    color: #374151;
    background: white;
    border: 1px solid #d1d5db;
}

.pos_pagination a:hover {
    background: #f9fafb;
}

.pos_pagination .pos_current-page {
    color: white;
    background: #EC2125;
    border: 1px solid #EC2125;
}

.pos_pagination .pos_ellipsis {
    color: #9ca3af;
    background: none;
    border: none;
}

.pos_pagination-info {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-top: 16px;
}

/* Back to Top Button */
.pos_back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #EC2125;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.pos_back-to-top:hover {
    background: #982b2dff;
    transform: translateY(-2px);
}

.pos_back-to-top.pos_visible {
    opacity: 1;
    visibility: visible;
}

.pos_back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pos_main-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .pos_sidebar {
        width: 100%;
        order: -1;
    }

    .pos_blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pos_category-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .pos_category-badge {
        text-align: center;
    }

    .pos_pagination-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.pos_images-flex {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.pos_images-flex .pos_sidebar-image {
    flex: 1;
    margin-bottom: 0;
}

    


.blogp_container {
    max-width: 1400px;
    margin: 10px;
    padding: 0 20px;
}

.blogp_main-wrapper {
    display: flex;
    gap: 0px;
    margin-top: 20px;
}

/* Main Content Area */
.blogp_main-content {
    flex: 1;
    min-width: 0;
}

/* Sidebar Styles */
.blogp_sidebar {
    margin-top: 60px;
    width: 350px;
    flex-shrink: 0;
}

.blogp_sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    margin-top: 20px;
}

.blogp_contact-form h3 {
    color: #111827;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blogp_google-partner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.blogp_google-logo {
    width: 24px;
    height: 24px;
}

.blogp_partner-badge {
    background: #34d399;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.blogp_form-group {
    margin-bottom: 16px;
}

.blogp_form-group label {
    display: block;
    margin-bottom: 6px;
    color: #374151;
    font-weight: 500;
}

.blogp_form-group input,
.blogp_form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.blogp_form-group input:focus,
.blogp_form-group textarea:focus {
    outline: none;
    border-color: #EC2125;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.blogp_form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.blogp_submit-btn {
    background: #dc2626;
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.blogp_submit-btn:hover {
    background: #b91c1c;
}

.blogp_sidebar-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
}

.blogp_sidebar-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blogp_images-flex {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.blogp_images-flex .blogp_sidebar-image {
    flex: 1;
    margin-bottom: 0;
}

/* Blog Post Styles */
.blogp_blog-post {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 32px;
}

.blogp_blog-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blogp_blog-header {
    position: relative;
    padding: 32px;
    padding-bottom: 24px;

}

.blogp_category-badge {
    display: inline-block;
    background: #e0e7ff;
    color: #EC2125;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 16px;
    transition: background-color 0.2s;
}

.blogp_category-badge:hover {
    background: #eb4949ff;
}

.blogp_blog-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blogp_blog-description {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.blogp_blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    color: #9ca3af;
}

.blogp_blog-meta div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blogp_blog-meta svg {
    width: 16px;
    height: 16px;
}

.blogp_featured-badge {
    display: inline-flex;
    align-items: center;
    background: #fef3c7;
    color: #92400e;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    gap: 6px;
}

.blogp_featured-badge svg {
    width: 14px;
    height: 14px;
}

.blogp_blog-content {
    padding: 0 32px 32px;
}

.blogp_blog-footer {
    background: #f9fafb;
    padding: 24px 32px;
    border-top: 1px solid #e5e7eb;
}

.blogp_share-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.blogp_last-updated {
    font-size: 14px;
    color: #6b7280;
}

.blogp_share-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.blogp_share-label {
    font-size: 14px;
    color: #6b7280;
}

.blogp_share-link {
    color: #EC2125;
    transition: color 0.2s;
}

.blogp_share-link:hover {
    color: #c82628ff;
}

.blogp_share-link svg {
    width: 20px;
    height: 20px;
}

/* Related Posts */
.blogp_related-posts {
    margin-top: 48px;
}

.blogp_related-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.blogp_related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.blogp_related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.blogp_related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blogp_related-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.blogp_related-content {
    padding: 20px;
}

.blogp_related-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blogp_related-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blogp_related-card-title a:hover {
    color: #EC2125;
}

.blogp_related-description {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.blogp_related-date {
    font-size: 12px;
    color: #9ca3af;
}

/* Navigation Links */
.blogp_navigation {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.blogp_nav-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    background: white;
    text-decoration: none;
    transition: all 0.2s;
}

.blogp_nav-link:hover {
    background: #f9fafb;
    border-color: #EC2125;
    color: #EC2125;
}

.blogp_nav-link svg {
    width: 16px;
    height: 16px;
}

.blogp_nav-link.blogp_primary {
    background: #EC2125;
    color: white;
    border-color: #EC2125;
}

.blogp_nav-link.blogp_primary:hover {
    background: #EC2125;
    border-color: #EC2125;
    color: white;
}

/* Back to Top Button */
.blogp_back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #EC2125;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.blogp_back-to-top:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.blogp_back-to-top.blogp_visible {
    opacity: 1;
    visibility: visible;
}

.blogp_back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Blog Content Styles */
.blogp_blog-content {
    line-height: 1.8;
}
.blogp_blog-content h1, .blogp_blog-content h2, .blogp_blog-content h3, 
.blogp_blog-content h4, .blogp_blog-content h5, .blogp_blog-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.blogp_blog-content h1 { font-size: 2rem; }
.blogp_blog-content h2 { font-size: 1.75rem; }
.blogp_blog-content h3 { font-size: 1.5rem; }
.blogp_blog-content h4 { font-size: 1.25rem; }
.blogp_blog-content p {
    margin-bottom: 1.5rem;
}
.blogp_blog-content ul, .blogp_blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}
.blogp_blog-content li {
    margin-bottom: 0.5rem;
}
.blogp_blog-content blockquote {
    border-left: 4px solid #e5e7eb;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6b7280;
}
.blogp_blog-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
}
.blogp_blog-content code {
    background-color: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
}
.blogp_blog-content pre {
    background-color: #1f2937;
    color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}
.blogp_blog-content pre code {
    background-color: transparent;
    padding: 0;
    color: inherit;
}
.blogp_blog-content a {
    color: #3b82f6;
    text-decoration: underline;
}
.blogp_blog-content a:hover {
    color: #1d4ed8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blogp_main-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .blogp_sidebar {
        width: 100%;
        order: 2;
    }

    .blogp_blog-header,
    .blogp_blog-content,
    .blogp_blog-footer {
        padding: 20px;
    }

    .blogp_blog-title {
        font-size: 24px;
    }

    .blogp_blog-description {
        font-size: 16px;
    }

    .blogp_related-grid {
        grid-template-columns: 1fr;
    }

    .blogp_navigation {
        flex-direction: column;
        align-items: stretch;
    }

    .blogp_nav-link {
        justify-content: center;
    }

    .blogp_share-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .blogp_share-buttons {
        margin-top: 0;
    }

    .blogp_images-flex {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .blogp_container {
        padding: 0 16px;
    }

    .blogp_blog-header,
    .blogp_blog-content,
    .blogp_blog-footer {
        padding: 16px;
    }

    .blogp_sidebar-card {
        padding: 16px;
    }
}


.blogp_sidebar-info {
    text-align: center;
    margin-top: 8px;
}
.employee-name {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}
.employee-position {
    font-size: 14px;
    color: #666;
    margin: 2px 0 0;
}




/* About Us Section Styles */

.about_us_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

.about_us_main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.about_us_content {
    padding-right: 20px;
}

.about_us_heading {
    color: #FF0000;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about_us_text {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.about_us_form_container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e8ecef 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about_us_form_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF0000, #cc0000, #FF0000);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.about_us_form_header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.about_us_bell_icon {
    background: linear-gradient(135deg, #FF0000, #cc0000);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.about_us_form_title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about_us_form_subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
}

.about_us_highlight {
    color: #FF0000;
    font-weight: 600;
}

.about_us_form_group {
    margin-bottom: 20px;
}

.about_us_input,
.about_us_select,
.about_us_textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about_us_input:focus,
.about_us_select:focus,
.about_us_textarea:focus {
    outline: none;
    border-color: #FF0000;
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.1);
    transform: translateY(-2px);
}

.about_us_input::placeholder,
.about_us_textarea::placeholder {
    color: #888;
    font-weight: 400;
}

.about_us_textarea {
    height: 120px;
    resize: vertical;
}

.about_us_captcha_container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.about_us_captcha_display {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 12px 20px;
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #FF0000;
    user-select: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.about_us_captcha_refresh {
    background: linear-gradient(135deg, #FF0000, #cc0000);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.about_us_captcha_refresh:hover {
    background: linear-gradient(135deg, #e60000, #b30000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.about_us_captcha_input {
    flex: 1;
    min-width: 120px;
}

.about_us_submit_btn {
    width: 100%;
    background: linear-gradient(135deg, #FF0000, #cc0000);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.about_us_submit_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: left 0.5s;
}

.about_us_submit_btn:hover::before {
    left: 100%;
}

.about_us_submit_btn:hover {
    background: linear-gradient(135deg, #e60000, #b30000);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.4);
}

.about_us_submit_btn:active {
    transform: translateY(-1px);
}

.about_us_error_message {
    color: #FF0000;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .about_us_main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about_us_content {
        padding-right: 0;
    }

    .about_us_heading {
        font-size: 36px;
        text-align: center;
    }

    .about_us_form_container {
        padding: 30px;
    }

    .about_us_form_title {
        font-size: 24px;
    }

    .about_us_form_subtitle {
        font-size: 15px;
    }

    .about_us_captcha_container {
        flex-direction: column;
        align-items: stretch;
    }

    .about_us_captcha_display {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about_us_container {
        padding: 20px 15px;
    }

    .about_us_heading {
        font-size: 28px;
    }

    .about_us_text {
        font-size: 14px;
    }

    .about_us_form_container {
        padding: 20px;
    }

    .about_us_form_title {
        font-size: 20px;
    }

    .about_us_form_subtitle {
        font-size: 14px;
    }
}
/* End of About Us Section Styles */

/* Trending Courses Section Styles */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
} */

.trend_course_section {
    padding: 60px 20px 0 20px;
    background-color: #f8f9fa;
}

.trend_course_container {
    max-width: 1400px;
    margin: 0 auto;
}

.trend_course_header {
    text-align: center;
    margin-bottom: 50px;
}

.trend_course_title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.trend_course_subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.trend_course_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.trend_course_card {
    background: white;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trend_course_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.trend_course_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.trend_course_content {
    padding: 25px;
}

.trend_course_name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.trend_course_description {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.trend_course_details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.trend_course_duration,
.trend_course_fee {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.trend_course_duration strong,
.trend_course_icon {
    color: #FF0000;
    margin-right: 8px;
    font-size: 1rem;
}

.trend_course_detail_icon {
    margin-right: 5px;
    color: #666;
}

.trend_course_buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trend_course_btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.trend_course_btn_primary {
    background-color: #FF0000;
    color: white;
}

.trend_course_btn_primary:hover {
    background-color: #e60000;
    transform: translateY(-2px);
}

.trend_course_btn_secondary {
    background-color: #2c3e50;
    color: white;
}

.trend_course_btn_secondary:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.trend_course_cta {
    text-align: center;
    margin-top: 40px;
}

.trend_course_cta_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trend_course_cta_btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.trend_course_whatsapp {
    background-color: #25D366;
    color: white;
}

.trend_course_whatsapp:hover {
    background-color: #20b858;
    transform: translateY(-2px);
}

.trend_course_demo {
    background-color: #FF0000;
    color: white;
}

.trend_course_demo:hover {
    background-color: #e60000;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .trend_course_section {
        padding: 40px 15px;
    }

    .trend_course_title {
        font-size: 2rem;
    }

    .trend_course_subtitle {
        font-size: 1rem;
    }

    .trend_course_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trend_course_content {
        padding: 20px;
    }

    .trend_course_name {
        font-size: 1.2rem;
    }

    .trend_course_details {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .trend_course_buttons {
        flex-direction: column;
    }

    .trend_course_btn {
        min-width: 100%;
    }

    .trend_course_cta_buttons {
        flex-direction: column;
        align-items: center;
    }

    .trend_course_cta_btn {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .trend_course_title {
        font-size: 1.8rem;
    }

    .trend_course_content {
        padding: 15px;
    }

    .trend_course_cta_btn {
        min-width: 200px;
        padding: 12px 20px;
        font-size: 1rem;
    }
}
/* End of Trending Courses Section Styles */