/*Home page styling starts*/
/* Testimonials Section */
.testimonials-section {
    padding: 80px 80px;
}

.section-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: Rhymes Display Trial Unlicensed;
    font-weight: 500;
    font-size: 40px;
    line-height: 36px;
    letter-spacing: 0;
    color:#000;
}

.carousel-controls {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.carousel-btn {
    background: white;
    border: 1px solid #000;
    border-radius:0px;
    padding:14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #3B82F6;
    color: white;
    border-color: #3B82F6;
}
.carousel-btn:hover svg path {
    stroke: #fff;
}
.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    box-sizing: border-box;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card {
    background: transparent;
    padding: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    min-height:450px;
    border: 1px solid #D4D4D4;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 300px;
    max-height:390px;
}

.testimonial-content {
    font-family: KMR-Waldenburg;
    letter-spacing:1px;
    flex: 1;
    background:#EFF6FF;
    min-height:400px;
    padding:0px 40px;
}
.testimonial-registrar{
    display:flex;
    padding:34px 0 44px 0;
    justify-content: flex-end;
    color:#2563EB;
    
}
.testimonial-registrar p{
    padding:12px 16px;
    border:1px solid #3B82F6;
    margin:0;
    font-size:14px;
    font-weight:375;
    background:#DBEAFE;
}
.testimonial-quote {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.4;
}

.testimonial-text {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 5px 0;
    display:inline-block;
}
.author-info span {
    font-weight:bold;
}
.author-info p {
    font-size: 16px;
    color: #000;
    margin: 0;
    display:inline-block;
}

.company-logo {
    max-width: 80px;
    max-height: 40px;
        align-self: end;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .carousel-controls {
        width:100%;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .testimonial-quote {
        font-size: 1.25rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 15px;
    }
}
/* Learning Content Section 
.learning-section {
    padding: 0 0 80px;
    background: white;
}

 .learning-container {
            max-width: 1920px;
            margin: 0 auto;
            padding:0 4rem;
        }

        .l-heading {
            text-align: center;
            font-family: Rhymes Display Trial Unlicensed;
            font-weight: 500;
            font-size: 40px;
            line-height: 36px;
            letter-spacing: 0;
            margin-bottom: 40px;
        }

        .tabs-container {
            background: white;
            overflow: hidden;
        }

        .tabs-header {
            display: flex;
            border-bottom: 1px solid #e2e8f0;
            background: #f8fafc;
            width: 50%;
            margin: 0 auto;
            border: 1px solid #BFDBFE; 
            background: #F7FBFF;
            padding:8px;
        }

        .tab-button {
            flex: 1;
            padding: 16px 24px;
            background: none;
            border: none;
            font-family:inter, sans-serif;
            font-size: 18px;
            font-weight: 500;
            color: #000;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            border-radius:unset;
            box-shadow: unset;
        }

        .tab-button:hover {
            color: #334155;
            background: #f1f5f9;
        }

        .tab-button.active {
            color: #fff;
            background: #2563EB;
        }

        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #3b82f6;
        }

        .tabs-content {
            padding: 32px;
            min-height: 500px;
        }

        .tab-panel {
            display: none;
            animation: fadeIn 0.3s ease-in;
        }

        .tab-panel.active {
            display: block;
        }

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

        .content-grid {
            display: flex;
            gap: 24px;
            align-items: flex-start;
        }

        .main-content {
            flex: 1;
        }

        .sidebar {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .featured-card {
            position:relative;
            background: white;
            overflow: hidden;
            min-height: 700px;
            background:#F8F7F6;
            transition: all 0.3s ease;
            box-shadow: 0 1px 4px rgba(0,0,0,0.08);
        }
        .featured-card:hover{
                transform: translateY(-4px);
        }
        .featured-image {
            width: 100%;
            background: linear-gradient(135deg, #4f46e5, #3b82f6);
            position: relative;
            overflow: hidden;
            max-height:348px;
        }
        .featured-image img {
            width:100%;
        }

        .featured-image::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(40px, -40px);
        }

        .featured-image::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: -20px;
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .featured-content {
            padding: 24px;
            color: #1f2937;
        }

        .card-tag {
            position: absolute;
            top: 31px;
            left: 84%;
            margin-right: -50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.9);
            color: #3b82f6;
            padding: 6px 12px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: 500;
            color:#2563EB;
        }
        ul {
            margin:0;
        }
         ul li {
            list-style: none;
        }
        .card-title {
            font-family: Rhymes Display Trial Unlicensed;
            font-weight: 400;
            font-size: 32px;
            line-height: 130%;
            letter-spacing: 0;

        }

        .card-description {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 20px;
            opacity: 0.9;
            
        }
       .featured-content> .author {
           padding-top:28px;
            border-top: 1px solid #E1E4ED;
       }
        .author {
            display: flex;
            align-items: center;
            gap: 8px;
            
        }
        
        .author-avatar {
            width: 32px;
            height: 32px;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: #374151;
        }
        
        .author-avatar img{
            border-radius: 50%;
        }
        
        .author-name {
            font-size: 14px;
            font-weight: 500;
        }

        .content-item {
            background: white;
            transition: all 0.3s ease;
            overflow: hidden;
            display: flex;
            gap: 16px;
            position: relative;
            max-height: 220px;
            background:#F8F7F6;
            box-shadow: 0 1px 4px rgba(0,0,0,0.08);
        }

        .content-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .content-item-image {
            width: 43%;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }
        
        .content-item-image.podcast {
            background: linear-gradient(135deg, #e0f2fe, #b3e5fc);
        }

        .content-item-image.video {
            background: linear-gradient(135deg, #8d6e63, #6d4c41);
        }

        .content-item-image.article {
            background: linear-gradient(135deg, #4f46e5, #3b82f6);
        }

        .content-item-image::before {
            content: '';
            position: absolute;
            top: -10px;
            right: -10px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
        }

        .content-item-body {
            padding: 16px 16px 16px 0;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .item-header {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .content-item-body p {
            margin-bottom:20px;
            line-height: 20px;
            overflow: hidden;
            
        }
        .sidebar .vn-content-type-icon {
            width:30%;
        }
        .vn-content-type-icon {
    background:#fff;
    width:20%;
    padding:11px 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    margin-bottom: 1rem;
    font-family: KMR-Waldenburg;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;

    
}
.vn-content-type-icon svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
        .content-type {
            font-weight: 400;
            font-style: Normal;
            font-size: 12px;
            line-height: 20px;
            letter-spacing: 0%;
            color:#000;
            display: flex;
            align-items: center;
            gap: 4px;
            background:#FFFFFF;
            padding: 7px 14px;
        }

        .item-tag {
            position: absolute;
            top: 25px;
            left: 33%;
            margin-right: -50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.9);
            color: #3b82f6;
            padding: 6px 12px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: 500;
            color: #2563EB;
        }

        .item-title {
            font-family: Rhymes Display Trial Unlicensed;
            font-weight: 500;
            font-size: 24px;
            line-height: 24px;
            letter-spacing: 0;
            color:#000;
            padding-bottom:16px;
            

        }

        .item-description {
            font-family: KMR-Waldenburg;
            letter-spacing:1px;
            font-size: 14px;
            color: #000;
            line-height: 1.4;
            margin-bottom: 16px;
        }

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

        .industry-card {
            background: white;
            border-radius: 12px;
            padding: 24px;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .industry-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .industry-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 12px;
        }

        .industry-description {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .industry-stats {
            display: flex;
            gap: 16px;
            font-size: 14px;
        }

        .stat {
            color: #374151;
        }

        .stat strong {
            color: #1f2937;
        }

        .innovation-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .innovation-card {
            background: linear-gradient(135deg, #06b6d4, #0891b2);
            border-radius: 16px;
            padding: 28px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .innovation-card.secondary {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        }

        .innovation-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 24px;
        }
        .stretched-link {
    position: absolute;
    inset: 0; /* covers top, right, bottom, left 
    z-index: 1;
}

        @media (max-width: 768px) {
            
        }*/
        
/* ================================
   Learning Content Section Styles
   ================================ */

.learning-section {
    width: 100%;
    padding: 80px;
    background: #fff;
}

.learning-container {
    width: 100%;
    max-width: 100%;
}

.l-heading {
            text-align: center;
            font-family: Rhymes Display Trial Unlicensed;
            font-weight: 500;
            font-size: 40px;
            line-height: 36px;
            letter-spacing: 0;
            margin-bottom: 40px;
            color: #000000;
}

/* Tabs Navigation */
.tabs-container {
    width: 100%;
}

  .tabs-header {
            display: flex;
            border-bottom: 1px solid #e2e8f0;
            background: #f8fafc;
            width: 50%;
            margin: 0 auto;
            border: 1px solid #BFDBFE; 
            background: #F7FBFF;
            padding:8px;
            margin-bottom: 50px;
        }

        .tab-button {
            flex: 1;
            padding: 16px 24px;
            background: none;
            border: none;
            font-family:inter, sans-serif;
            font-size: 18px;
            font-weight: 500;
            color: #000;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            border-radius:unset;
            box-shadow: unset;
        }

        .tab-button:hover {
            color: #334155;
            background: #f1f5f9;
        }

        .tab-button.active {
            color: #fff;
            background: #2563EB;
        }

        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #3b82f6;
        }

/* Tab Panels */
.tabs-content {
    width: 100%;
}

.tab-panel {
    display: none;
    width: 100%;
}

.tab-panel.active {
    display: block;
}

/* Content Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    width: 100%;
}

/* Featured Card (Left Side) */
.main-content {
    width: 100%;
}

.featured-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.featured-card-link:hover {
    transform: translateY(-5px);
}

.featured-card {
    background: #fff;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #F8F7F6;
    min-height: 691px;
}

.featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

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

.featured-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-header {
    margin-bottom: 15px;
}

.vn-content-type-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 73px;
    padding: 3px;
    font-size: 12px;
    color: #000000;
    background: #fff;
    font-family: KMR Waldenburg;
    font-weight: 400;
}

.vn-content-type-icon svg {
    width: 17px;
    height: 17px;
}

.card-title {
    font-family: Rhymes Display Trial Unlicensed;
            font-weight: 400;
            font-size: 32px;
            line-height: 130%;
            letter-spacing: 0;
            color:#000000;
}

.card-description {
    font-family: KMR Waldenburg;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
    color: #000;
    margin-bottom: 20px;
    flex: 1;
}

/* Sidebar Items (Right Side) */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.content-item-link:hover {
    transform: translateY(-5px);
}

.content-item {
    background: #fff;
    overflow: hidden;
    display: flex;
    gap: 15px;
    background: #F8F7F6;
}

.content-item-image {
    width: 208px;
    height: 215px;
    flex-shrink: 0;
    overflow: hidden;
}

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

.content-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 12px 16px 0;
}

.item-title {
            font-family: Rhymes Display Trial Unlicensed;
            font-weight: 500;
            font-size: 24px;
            line-height: 24px;
            letter-spacing: 0;
            color:#000;
            margin-bottom: 15px;
}

.item-description {
    font-family: KMR Waldenburg;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    color:#000;

}

/* Author Info */
.author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-family: Waldenburg;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .learning-section {
        padding: 60px 40px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .featured-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .learning-section {
        padding: 40px 20px;
    }
    
    .l-heading {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .tabs-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-button {
        padding: 12px 20px;
        font-size: 16px;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .tab-button.active {
        border-bottom: none;
        border-left-color: #2563eb;
    }
    
    .sidebar {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .card-title {
        font-size: 24px;
    }
    
    .content-item {
        flex-direction: column;
    }
    
    .content-item-image {
        width: 100%;
        height: 180px;
    }
    .featured-card {
        min-height: auto;
    }
}        

/* CTA Section */
.cta-section {
    background: #000000;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    min-height: 472px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cta-content {
    margin: 0 auto;
    padding: 0 80px;
    text-align:left;
    flex:1.2;
}

.cta-title {
    font-family: 'RhymesDisplayTrialUnlicensed';
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
    color:#fff;
}

.cta-text {
    font-family: KMR-Waldenburg;
letter-spacing:1px;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    margin-bottom:32px;

}

.cta-image {
    /*position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);*/
    flex:1;
    
}
.cta-section a {
    display:inline-block;
    background:#2563EB;
    border:none;
}
/* Responsive */
@media (max-width: 1600px) {
    .hero-title {
        padding:0px;
    }
    .tabs-header{
        width:70%;
    }
    .content-item-image img {
            min-height:220px;
        }
}
@media (max-width: 1440px) {
    .hero-content {
        width:100% !important;
    }
    .hero-title {
        padding: 0 0 40px;
        width: 60%;
        margin: 0 auto;
    }
    .hero-subtitle{
            width: 86%;
    margin: 0 auto;
    padding-bottom: 24px;
    }
}
@media (max-width: 1024px) {
    .hero-title {
        padding: 0 0 40px;
        width: 78%;
        margin: 0 auto;
    }
    .card-tag {
        left:76%;
        top:25px;
    }
    .item-tag {
        left:50%;
    }
}
@media (max-width: 820px) {
    .hero-content{
        max-width:unset;
    }
    .hero-title {
        padding: 0 0 30px;
        width: 100%;
    }
    .testimonials-section {
        padding:40px 20px;
    }
    .testimonial-card {
        padding:15px;
        gap:15px;
    }
    .company-logo {
        align-self: center;
        margin: 12px;
    }
    .testimonial-track{
        min-height:551px;
    }
    .learning-container{
        padding:0;
    }
    .tabs-header{
        width:95%;
    }
    
    .tabs-content{
        padding:10px 20px;
    }
    .tab-button{
        font-size:16px;
    }
    .featured-image {
        min-height:auto;
    }
    .cta-section{
        padding:40px 20px;
        justify-content: space-between;
    }
    .cta-content{
        padding:0;
    }
    .circle-bg {
         bottom: -33%;
    }
}
    
@media (max-width: 768px) {
            .content-grid {
                flex-direction: column;
            }
            
            .innovation-showcase {
                grid-template-columns: 1fr;
            }
            
            .tabs-header {
                flex-direction: row;
            }
            .testimonial-carousel {
                height: 910px;
            }
            .testimonial-registrar {
                justify-content: center;
            }
            .company-logo {
                padding-bottom:10px;
                align-self: center;
            }
            
            .tab-button {
                text-align: left;
                font-size:14px;
            }
            .cta-section {
                flex-direction: column;
            }
            .hero-title {
                font-size: 2.5rem;
                        width: 50%;
        padding-bottom: 30px;
            }
            
            .hero-buttons {
                flex-direction: row;
                align-items: center;
            }

            
            .testimonial-card {
                flex-direction: column;
                text-align: center;
            }
            
            .learning-grid {
                grid-template-columns: 1fr;
            }
            
            .side-article {
                flex-direction: column;
            }
            
            .cta-image {
                position: static;
                transform: none;
                margin-top: 40px;
            }
            .cta-content {
                text-align:center;
                    }
            .circle-bg {
                bottom:0px;
            }
            .learning-section {
                padding:0 20px 80px;
            }
            .card-tag {
        left:87%;
    }
}
@media (max-width: 480px) {
    
    .hero-content{
        max-width: 100%;
        padding:20px;
    }
    .hero-section{
        padding:30px 0;
    }
    .btn {
     width:73%;   
    }
    /*testimonials*/
    .carousel-controls {
        width:100%;
    }
    .testimonial-carousel {
        min-height: 1135px;
    }
    .testimonials-section {
        padding: 30px 20px;
    }
    .testimonial-track{
        min-height: 1080px;
    }
    .testimonial-author{
        padding-bottom:20px;
    }
    .testimonial-registrar{
        justify-content: center;
    }
    .company-logo{
        align-self: center;
    }
    .testimonial-avatar img{
        width:348px;
        height:auto;
        max-height: unset;
    }
    .testimonial-content{
        padding:0 10px;
    }
    .item-tag, .card-tag {
            position: absolute;
            top: 20px;
            left: 53%;
            margin-right: -50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.9);
            color: #3b82f6;
            padding: 6px 12px;
            border-radius: 3px;
            font-size: 12px;
            font-weight: 500;
            color: #2563EB;
        }
    
    /*tabs*/
    .tabs-header {
                flex-direction: column;
    }
    .learning-section{
        padding:30px 0;
    }
    .learning-container{
        padding:20px;
    }
    .tabs-header{
        width:100%;
    }
    .tab-button{
        text-align:center;
    }
    .tabs-content {
        padding:20px 0;
    }
    .featured-card{
        min-height:auto;
        border:1px solid #E5E5E5;
    }
    .content-item{
        flex-direction: column;
        max-height:unset;
        border:1px solid #E5E5E5;
    }
    .content-item-image{
        width:100%;
    }
    .content-item-body{
        padding:16px;
    }
    /*join*/
    .cta-content {
        padding:0 20px;
        text-align:center;
    }
    .cta-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
}

/* Home page styling Ends*/

/* Blog page styling*/

/* Blog Page Styles */

/* Container 
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

 Hero Section 
.hero-section {
    background: linear-gradient(135deg, #6B73FF 0%, #000DFF 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Section 
.featured-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-section h2 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

/* Featured Tabs 
.featured-tabs {
    margin-bottom: 60px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.tab-btn {
    background: #e9ecef;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
    border-radius: 0;
}

.tab-btn:first-child {
    border-radius: 6px 0 0 6px;
}

.tab-btn:last-child {
    border-radius: 0 6px 6px 0;
}

.tab-btn.active {
    background: #4A90E2;
    color: white;
}

.tab-btn:hover:not(.active) {
    background: #dee2e6;
    color: #495057;
}

/* Tab Content 
.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Video Container 
.video-container {
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 12px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16/9;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 30px;
}

.video-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.video-info p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* Featured Posts 
.featured-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.featured-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.featured-post-card .post-thumbnail {
    height: 200px;
    overflow: hidden;
}

.featured-post-card .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.featured-post-card .post-content {
    padding: 24px;
}

.featured-post-card .post-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.featured-post-card .post-date,
.featured-post-card .post-category {
    color: #6c757d;
    font-weight: 500;
}

.featured-post-card .post-category {
    color: #4A90E2;
}

.featured-post-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
}

.featured-post-card h3 a {
    text-decoration: none;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.featured-post-card h3 a:hover {
    color: #4A90E2;
}

.featured-post-card .post-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-post-card .author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.featured-post-card .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-card .author-info {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.featured-post-card .author-name {
    font-weight: 500;
    color: #1a1a1a;
}

.featured-post-card .author-info .post-date {
    color: #6c757d;
}

/* Learning Resources Section 
.learning-resources {
    padding: 80px 0;
    background: white;
}

.learning-resources h2 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

/* Blog Filters */
.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.filter-group label {
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

.filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn,
.tag-filter {
    background: #e9ecef;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
}

.filter-btn.active,
.tag-filter.active {
    background: #4A90E2;
    color: white;
}

.filter-btn:hover:not(.active),
.tag-filter:hover:not(.active) {
    background: #dee2e6;
    color: #495057;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-thumbnail {
    height: 200px;
    overflow: hidden;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.blog-date,
.blog-category {
    color: #6c757d;
    font-weight: 500;
}

.blog-category {
    color: #4A90E2;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-content h3 a {
    text-decoration: none;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #4A90E2;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-author .author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.blog-author .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author .author-info {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.blog-author .author-name {
    font-weight: 500;
    color: #1a1a1a;
}

.blog-author .author-info .post-date {
    color: #6c757d;
}

/* Load More Button */
.load-more-container {
    text-align: center;
}

.load-more-btn {
    background: #4A90E2;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #357ABD;
    transform: translateY(-2px);
}

.load-more-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

/* CTA Section */
.cta-section {
    background: #1a1a1a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: #4A90E2;
    color: white;
}

.cta-btn.primary:hover {
    background: #357ABD;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid #4A90E2;
}

.cta-btn.secondary:hover {
    background: #4A90E2;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 60px;
        width:100%;
    }
    .section-title {
        font-size:31px;
    }
    .l-heading {
        font-size:31px;
    }
    .hero-content p {
        font-size: 16px;
        width: 92%;
    }
    
    .featured-section h2,
    .learning-resources h2,
    .cta-content h2 {
        font-size: 28px;
    }
    
    .tab-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto 40px;
    }
    
    .tab-btn {
        border-radius: 6px !important;
    }
    
    .blog-filters {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }
    
    .filter-buttons {
        justify-content: flex-start;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-posts {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section,
    .featured-section,
    .learning-resources,
    .cta-section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .video-info {
        padding: 30px 20px 20px;
    }
    
    .video-info h3 {
        font-size: 20px;
    }
    
    .video-info p {
        font-size: 14px;
    }
    
    .blog-card .blog-content,
    .featured-post-card .post-content {
        padding: 20px;
    }
}

/*Blog page ends*/






