.commonServices {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

.services-container {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}

.serviceHead {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.serviceHead h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #159ad5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.serviceHead p {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
    color: #555;
}

.servicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    position: relative;
}

.serviceCard {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid rgb(0 0 0 / 18%);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    height: 100%;
    max-width: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.serviceCard:hover .serviceImg img {
    transform: scale(1.1);
}

.serviceImg {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.serviceImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.serviceContent {
    padding: 15px;
    text-align: center;
}

.serviceContent h6 {
    font-size: 1.5rem;
    color: #2c3e50 !important;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    line-height: 1.3;
}

@media (max-width: 580px) {
    .serviceCard {
        max-width: 100%;
    }

    .servicesGrid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .serviceImg {
        height: auto;
    }

    .serviceContent h6 {
        font-size: 1rem;
        margin-bottom: 0;
    }
}

.parent-breadcrumb {
    color: #1e88e5;
    cursor: pointer;
}

/* ======================report page============== */

/* Main Content */
.article-con {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

.article-con.grid1 {
    grid-template-columns: 1fr;
}

.articles-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.article-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #4dd0e1;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.logo-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    color: #2c5aa0;
}

.article-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

.article-date {
    color: #666;
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.article-date::before {
    content: "📅";
    margin-right: 5px;
}

.article-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 20px;
    line-height: 1.4;
}

.article-social-sec .article-date{
    margin-bottom: 0;
    font-weight: 600;
    font-size: 16px;
}

.article-social-sec{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.article-social-sec .social-links{
    gap: 10px;
    margin-top: 0;
}

.article-social-sec .social-links a{
    background: #1e88e5;
    color: #fff;
        width: 30px;
height: 30px;
}

.article-social-sec .social-links a i{
    font-size: 13px;
}

.commentary-content-box{
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.commentary-content-box :where(p, h2, h3, ul){
    margin-bottom: 15px
}

.commentary-content-box ul{
    list-style: square;
    padding-left: 2rem;
}

.commentary-content-box ul li{
    padding: 0.2rem;
}


.commentary-box{
max-width: 770px;
width: 100%;
height: auto;
overflow: hidden;
margin: 15px 0;
}

.commentary-box img{
width: 100%;
height: 100%;
object-fit: cover;
}

.customerNotice{
    margin-top: 50px;
}

.customerNotice p{
    font-size: 14px;
    font-style: italic;
}

.dailyDose-container.mt-3 .sidebar{
    margin-top: 40px;
    background: #fff !important;
}


.read-more {
    background: linear-gradient(135deg, #007bff 0%, #007bff 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
    width: 140px;
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(77, 208, 225, 0.4);
}

/* pagi Styles */
.pagi-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    padding: 20px;
}

.pagi-arrow {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pagi-arrow:hover {
    /*transform: translateY(-3px);*/
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.pagi-arrow:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pagi-arrow:disabled:hover {
    transform: none;
    box-shadow: none;
}

.pagi-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.pagi-arrow:hover::before {
    width: 60px;
    height: 60px;
}

.pagi-info {
    background: white;
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #2c5aa0;
    min-width: 120px;
    text-align: center;
}

.page-numbers {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-number {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
    color: #666;
}

.page-number:hover {
    background: #4dd0e1;
    color: white;
    transform: translateY(-2px);
}

.page-number.active {
    background: linear-gradient(135deg, #4dd0e1 0%, #26c6da 100%);
    color: white;
}

/* Hidden class for pagi */
.article-card.hidden {
    display: none;
}

/* articleSidebar */
.articleSidebar {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 20px;
    border-radius: 20px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.articleSidebar-logo {
    text-align: center;
}

.articleSidebar-logo img {
    width: 150px;

}

.articleSidebar-title {
    text-align: center;
    color: #2c5aa0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-title {
    color: #2c5aa0;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.articleSidebar .form-group {
    margin-bottom: 20px;
}

.articleSidebar .form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.articleSidebar .form-input:focus {
    outline: none;
    border-color: #4dd0e1;
    box-shadow: 0 0 0 3px rgba(77, 208, 225, 0.1);
}

.download-btn {
    width: 100%;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.disclaimer {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
}

.disclaimer a {
    color: #000000;
    font-weight: 600;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .article-con {
        grid-template-columns: 1fr;
        gap: 30px;
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .article-title {
        font-size: 14px;
    }

    .articles-section {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .articleSidebar {
        padding: 30px 20px;
        margin-top: 20px;
    }

    .article-image {
        height: auto;
    }

    .pagi-container {
        gap: 15px;
        margin: 30px 0;
    }

    .pagi-arrow,
    .page-number {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .page-numbers {
        gap: 0;
    }
}

@media (max-width: 480px) {
    .article-content {
        padding: 20px;
    }

    .articles-section {
        grid-template-columns: 1fr;
    }

    .articleSidebar {
        padding: 25px 15px;
    }

    .pagi-container {
        /*flex-direction: column;*/
        gap: 7px;
    }

    .page-numbers {
        order: -1;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-card {
    animation: fadeInUp 0.6s ease forwards;
}

.article-card:nth-child(1) {
    animation-delay: 0.1s;
}

.article-card:nth-child(2) {
    animation-delay: 0.2s;
}

.article-card:nth-child(3) {
    animation-delay: 0.3s;
}

.article-card:nth-child(4) {
    animation-delay: 0.4s;
}


/* ========================= Subscription page ================================= */

.pricing-card-sec {
    padding: 50px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    z-index: 0;
}

.pricing-card-sec .container {
    background-color: unset;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Pricing Cards */
.pricing-grid .pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 1rem 1rem;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-grid .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.pricing-grid .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.01);
}

.pricing-grid .pricing-card.premium-box {
    position: relative;
}

.pricing-grid .pricing-card.premium-box::after {
    content: 'POPULAR';
    position: absolute;
    top: 0px;
    right: -10px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(0deg);
    letter-spacing: 1px;
    border-radius: 0px 0px 0 30px;
}

.pricing-grid .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
}

.pricing-grid .price-container {
    text-align: center;
    margin-bottom: 0rem;
}

.pricing-grid .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.pricing-grid .price span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.pricing-grid .features-list {
    list-style: none;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.pricing-grid .features-list li {
    padding: 0.7rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.pricing-grid .features-list li:last-child {
    border-bottom: none;
}

.pricing-grid .features-list li:hover {
    background: #f8fafc;
    border-radius: 8px;
    padding-left: 1rem;
}

.pricing-grid .feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #159ad5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-grid .feature-icon::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.pricing-grid .feature-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Expandable content styles */
.pricing-grid .extra-features {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.pricing-grid .extra-features.expanded {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.pricing-grid .readMore {
    color: #3b82f6;
    background: unset;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 1rem;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 0;
    text-transform: lowercase;
}

.pricing-grid .readMore:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

.pricing-grid .readMore::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.pricing-grid .readMore.expanded::after {
    content: '↑';
    transform: rotate(0deg);
}

.pricing-grid .purchase-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #159ad5);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-grid .purchase-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
}

/* Special styling for middle card */
.pricing-grid .pricing-card.premium-box .purchase-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    /* box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3); */
}

.pricing-grid .pricing-card.premium-box .purchase-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .pricing-grid .pricing-card.premium-box {
        transform: none;
        order: -1;
    }

    .pricing-grid .price {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }


    .pricing-grid .page-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .pricing-grid .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-grid .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-grid .price {
        font-size: 2.5rem;
    }

    .pricing-grid .card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {

    .pricing-grid .pricing-card {
        padding: 1.5rem 1rem;
    }

    .pricing-grid .price {
        font-size: 2rem;
    }

    .pricing-grid .purchase-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}


/* ==================================Company-profile pages=================================================== */

.companySec {
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    /* backdrop-filter: blur(10px); */
    margin: 50px 0;
}

.companySec-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
}

.companySec-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }
}

.companySec-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.companySec-header p {
    opacity: 0.9;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.companySec .controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 15px;
}

.show-entries {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #64748b;
}

.show-entries select {
    padding: 8px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
    transition: all 0.3s ease;
}

.show-entries select:focus {
    outline: none;
    border-color: #4facfe;
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
}

.companySec .search-box {
    position: relative;
}

.companySec .search-box input {
    padding: 10px 40px 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    width: 250px;
    transition: all 0.3s ease;
}

.companySec .search-box input:focus {
    outline: none;
    border-color: #4facfe;
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
    width: 300px;
}

.companySec .search-box::after {
    content: '🔍';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.companySec .table-container {
    overflow-x: auto;
    max-height: 600px;
    overflow-y: auto;
    padding: 0;
}

.companySec table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.companySec th {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #334155;
    font-weight: 600;
    padding: 15px 20px;
    text-align: left;
    position: sticky;
    top: 0;
    z-index: 1;
    border-bottom: 2px solid #cbd5e1;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.companySec th:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.companySec th.sortable::after {
    content: ' ↕';
    opacity: 0.5;
    /* font-size: 0.8em; */
}

.companySec th.sort-asc::after {
    content: ' ↑';
    opacity: 1;
    color: #4facfe;
}

.companySec th.sort-desc::after {
    content: ' ↓';
    opacity: 1;
    color: #4facfe;
}

.companySec td {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.companySec tr:hover td {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transform: scale(1.002);
}

.companySec .company-link {
    color: #4facfe;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.companySec .company-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.companySec .company-link::after {
    content: '↗';
    opacity: 0;
    margin-left: 5px;
    transition: all 0.3s ease;
    font-size: 0.8em;
}

.companySec .company-link:hover::after {
    opacity: 1;
}

.companySec .sector-badge {
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    color: #0277bd;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.companySec .ticker-code {
    font-weight: 700;
    color: #334155;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}


@media (max-width: 768px) {

    .dashboard-header h1 {
        font-size: 2rem;
    }

    .companySec .controls {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .companySec .search-box input {
        width: 100%;
    }

    .search-box input:focus {
        width: 100%;
    }

    .companySec table {
        font-size: 0.8rem;
    }

    .companySec th,
    .companySec td {
        padding: 12px 10px;
    }
}

@media (max-width: 480px) {
    .companySec-header h2 {
        font-size: 1.5rem;
    }

    .companySec th,
    .companySec td {
        padding: 8px 6px;
        font-size: 0.75rem;
    }

    .companySec .company-link {
        font-size: 0.8rem;
    }

    .companySec .ticker-code {
        font-size: 0.8rem;
    }

    .companySec .sector-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #64748b;
    font-style: italic;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease;
}


/* Product Report */

/* Author: Ranjeet | Date: 2025-10-02*/
#productReport.article-con {
    display: grid !important;
    grid-template-columns: 47fr 0fr !important; /* or adjust to what you actually want */
    gap: 3px !important;
    padding: 40px 0 !important;
}

.subscribe_section {
    background-color: #f5f5f5;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.subscribe_list {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.sub_1 {
    flex: 2;
}

.sub_1 h4 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
    font-weight: 700;
}

.sub_1 p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.sub_2 {
    flex: 1;
    text-align: right;
}

.sub_2 h6 {
    font-size: 16px;
    color: #888;
    margin-bottom: 6px;
    font-weight: 600;
}

.sub_2 h4 {
    font-size: 40px;
    font-weight: 900;
    margin: 0 0 15px 0;
    color: #000;
}

.sub_2 h4 span {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    margin-left: 5px;
}

.btn-sub {
    background-color: #ffb600;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    color: #222;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-sub:hover {
    background-color: #e0a200;
    color: #000;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .subscribe_list {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .sub_2 {
        text-align: center;
    }
}