
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;

    background-color: #2a2a2a;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

.container3 {
    width: 100%;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 100%;
}

.logo {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    letter-spacing: 0.1em;
}

.nav-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border: 2px solid #F24B1B;
    background-color: transparent;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    height: 60px;
    width: 160px;
}

.mobile-banner {
    display: none;
}


/*.btn-primary {
    background-color: #ff5722;
}*/

.btn:hover {
    background-color: #F24B1B;
    transform: translateY(-2px);
}

.btn-primary:hover {
    background-color: #F24B1B;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 200px 40px 40px;
    text-align: right;
    max-width: 1400px;
    margin-left: auto;
}

.title {
    margin-top: 50px;
    font-size: 5rem;
    font-weight: bold;
    color: #F24B1B;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 0.05em;

}

.description {
    font-size: 1.5rem;
    color: white;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 40px;
    font-weight: 300;
    text-align: justify;
}

.cta-button {
    padding: 20px 40px;
    border: 2px solid #F24B1B;
    background-color: transparent;
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #F24B1B;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .title {
        font-size: 4rem;
    }

    .description {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {

    .container3 {
       width: 100%;
       min-height: 100vh;
       padding: 0px;
     position: relative;
    }

    .logo {
        font-size: 3rem;
    }

    .nav-buttons {
        flex-direction: column;
        
    }

    .btn {
        font-size: 1rem;
        text-align: center;
        right: 30px;
    }

    .main-content {
        padding: 40px;
        text-align: center;
        align-items: center;
        padding-top: 100px;
    }

    .title {
        font-size: 2.5rem;
        text-align: center;
    }

    .description {
        font-size: 1.1rem;
        text-align: center;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
}

/* @media (max-width: 480px) {
    .logo {
        font-size: 2.5rem;
    }

    .title {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: white;
    line-height: 1.6;
}
.logo {
    height: 50px;
    opacity: 100%;
    transform: none;
    transition: none;
}

.disruptive-section {
    padding: 50px 40px;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 0px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.text-content {
    position: relative;
}

.section-title {
    font-size: 4rem;
    font-weight: bold;
    color: #F24B1B;;
    margin-bottom: 30px;
    line-height: 1.1;
}

.description {
    font-size: 1.4rem;
    text-align: right;
    color: white;
    line-height: 1.4;
    margin-bottom: 40px;
    font-weight: 300;
}

.description1 {
    font-size: 1.4rem;
    color: white;
    line-height: 1.4;
    margin-bottom: 40px;
    font-weight: 300;
    text-align: justify;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #F24B1B;
    font-size: 2rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    transform: translateX(10px);
}

.arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.read-more:hover .arrow {
    transform: translateX(5px);
}

.image-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 30px;
    margin-right: 30px;
    margin-bottom: 20px;
}
.image-section img {
    background-size: cover;
    background-repeat: no-repeat;
}

.curved-arrow {
    position: absolute;
    top: -20px;
    right: 100px;
    width: 150px;
    height: 80px;
    z-index: 2;
}

.curved-arrow svg {
    width: 100%;
    height: 100%;
    stroke: white;
    stroke-width: 3;
    fill: none;
}

.profile-image {
    width: 400px;
    height: 400px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.logo-container {
    display: flex;
    gap: 15px;
    align-items: center;
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    max-width: 1400px;
    margin: auto;
    
}

.stats-container :hover .stat-number, .stats-container :hover .stat-label{
    color: #F24B1B;
}


.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: bold;
    display: block;
    line-height: normal ;
}

.stat-number.orange {
    color: #ffffff;
}

.stat-number.white {
    color: white;
}

.stat-label {
    font-size: 1.2rem;
    color: white;
    font-weight: 400;
}

.stat-label.orange {
    color: #F24B1B;
}



/* Responsive Design */
@media (max-width: 1200px) {
    .content-wrapper {
        gap: 40px;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .description {
        font-size: 1.2rem;
        width: 60%;
    }

    .profile-image {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 968px) {
    .disruptive-section {
        padding: 60px 20px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .section-title {
        font-size: 3rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .profile-image {
        width: 300px;
        height: 300px;
    }

    .curved-arrow {
        display: none;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .disruptive-section {
        padding: 40px;
        padding-bottom: 0px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1rem;
        text-align: center;
        width: 80%;
        margin-bottom: 20px;
    }

    .profile-image {
        width: 250px;
        height: 250px;
    }

    .logo-container {
        padding: 10px 15px;
        gap: 10px;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 0.7rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* @media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: white;
    line-height: 1.6;
}

.awards-section {
    padding: 80px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.section-title {
    font-size: 4.5rem;
    font-weight: bold;
    color: #F24B1B;
    text-align: left;
    margin-bottom: 60px;
    line-height: 1.1;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.award-card {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 30px 20px 25px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 87, 34, 0.2);
}

.year-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #F24B1B;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.award-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    min-height: 180px;
}

.award-image {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    border-radius: 8px;
}

.award-placeholder {
    width: 120px;
    height: 150px;
    background: linear-gradient(135deg, #ff5722, #e64a19);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    text-align: center;
    margin: 0 auto;
}

.certificate-placeholder {
    width: 140px;
    height: 120px;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 0.9rem;
    text-align: center;
    margin: 0 auto;
}

.trophy-placeholder {
    width: 100px;
    height: 140px;
    background: linear-gradient(135deg, #c9b037, #b8860b);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    text-align: center;
    margin: 0 auto;
}

.award-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .section-title {
        font-size: 4rem;
    }

    .awards-grid {
        gap: 25px;
    }
}

@media (max-width: 1200px) {
    .awards-section {
        padding: 60px 30px;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .award-card {
        min-height: 320px;
    }
}

@media (max-width: 968px) {
    .awards-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 3rem;
        text-align: center;
        margin-bottom: 40px;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .award-card {
        min-height: 300px;
        padding: 25px 15px 20px;
    }

    .award-image-container {
        min-height: 150px;
    }

    .award-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .awards-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .awards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin: 0 auto;
    }

    .award-card {
        min-height: 280px;
    }

    .year-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* @media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .award-card {
        min-height: 260px;
        padding: 20px 15px;
    }

    .award-title {
        font-size: 0.9rem;
    }
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: white;
    line-height: 1.6;
}

.education-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 4.5rem;
    font-weight: bold;
    color: #F24B1B;
    text-align: left;
    margin-bottom: 40px;
    line-height: 1.1;
}

.tab-navigation {
    display: flex;
    gap: 0;
    margin-bottom: 60px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    font-weight: 500;
    padding: 15px 0;
    cursor: pointer;
    position: relative;
    margin-right: 40px;
    transition: color 0.3s ease;
}

.tab-btn.active {
    color: #F24B1B;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #F24B1B;
}

.tab-btn:hover {
    color: #F24B1B;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.timeline-item {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    min-height: 300px;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 87, 34, 0.2);
}

.timeline-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.timeline-item.featured .timeline-content {
    padding: 40px;
    min-height: 400px;
}

.timeline-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.year {
    font-size: 4rem;
    font-weight: bold;
    color: #F24B1B;
    margin-bottom: 20px;
    line-height: 1;
}

.year.secondary {
    color: #666;
    font-size: 3.5rem;
}

.education-title {
    font-size: 1.4rem;
    color: white;
    line-height: 1.4;
    font-weight: 400;
}
.training-sub-tital {
    font-size: 1.6rem;
    color: white;
    line-height: 1.4;
    font-weight: 600;
}

.education-title.small {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .education-section {
        padding: 60px 30px;
    }

    .section-title {
        font-size: 4rem;
    }

    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .timeline-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .year {
        font-size: 3.5rem;
    }

    .year.secondary {
        font-size: 3rem;
    }
}

@media (max-width: 968px) {
    .education-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 3rem;
        text-align: center;
    }

    .tab-btn {
        font-size: 1.5rem;
        margin-right: 30px;
    }

    .timeline-grid {
        grid-template-columns:  1fr 1fr;
        gap: 25px;
    }

    .timeline-item.featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .timeline-item.featured .timeline-content {
        padding: 30px;
        min-height: 250px;
    }

    .timeline-content {
        padding: 25px;
        min-height: 200px;
    }

    .year {
        font-size: 3rem;
    }

    .year.secondary {
        font-size: 2.5rem;
    }

    .education-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {

    body {
        margin-left: 20px;
    }
    .education-section {
        padding: 20px 40px;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .tab-navigation {
        gap: 30px;
        margin-bottom: 40px;
        justify-content: center;
    }


    .tab-btn {
        font-size: 1.3rem;
        margin-right: 0;
        text-align: left;
        padding: 10px 0;
    }

    .timeline-content {
        padding: 20px;
        min-height: 180px;
    }

    .year {
        font-size: 2.5rem;
    }

    .year.secondary {
        font-size: 2rem;
    }

    .education-title {
        font-size: 1.1rem;
    }
}

/* @media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .tab-btn {
        font-size: 1.2rem;
    }

    .year {
        font-size: 2rem;
    }

    .year.secondary {
        font-size: 1.8rem;
    }

    .education-title {
        font-size: 1rem;
    }
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a;
    color: white;
    font-family: 'Arial', sans-serif;
    padding: 40px 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.header {
    margin-bottom: 50px;
}

.title-row {
    display: flex;
    align-items: baseline;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.main-title {
    font-size: 4rem;
    font-weight: bold;
    color: #F24B1B;
}

.first-section {
    font-size: 1.8rem;
    font-weight: bold;
    color: #F24B1B;
    text-decoration: underline;
}

.section-headers {
    display: flex;
    justify-content: flex-end;
    gap: 130px;
    /* margin-bottom: 50px; */
}

.section-header {
    font-size: 2rem;
    font-weight: 500;
    color: white;
}

.section-header.active {
    color: #F24B1B;
    border-bottom: 3px solid #F24B1B;
    padding-bottom: 0.25rem;
}


.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.card.highlighted {
    background-color: #333;
}

.quote-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.quote-icon.red {
    background-color: #F24B1B;
}

.quote-icon.gray {
    background-color: transparent;
    border: 3px solid #666;
}

.card-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.card-title.red {
    color: #F24B1B;
}

.card-title.gray {
    color: #666;
}

.card-subtitle {
    font-size: 1.3rem;
    color: white;
    line-height: 1.3;
}

.card-subtitle.gray {
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .title-row {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .section-headers {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .first-section {
        font-size: 1.4rem;
    }

    .section-headers {
        flex-direction: column;
        gap: 20px;
    }

    .section-header {
        font-size: 1.4rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card {
        padding: 25px;
    }

    .card-title {
        font-size: 1.8rem;
    }

    .card-subtitle {
        font-size: 1.1rem;
    }

    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* @media (max-width: 480px) {
    body {
        padding: 20px 15px;
    }

    .main-title {
        font-size: 2rem;
    }

    .section-header {
        font-size: 1.2rem;
    }

    .card {
        padding: 20px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-subtitle {
        font-size: 1rem;
    }
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a;
    color: white;
    font-family: 'Arial', sans-serif;
    padding: 40px 20px;
    line-height: 1.6;
}

.logo-AKG {
    background-image: url('../../../../frontend/assets/images/image-11.png');
    height: 40px;
    width: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto; 
    display: block;  
}

.footer-logo-AKG {
    background-image: url('../../../../frontend/assets/images/image-11.png');
    height: 50px;
    width: 80px;
    margin-bottom: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

.main-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #F24B1B;
    margin-bottom: 40px;
    text-align: left;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.publication-card {
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 8px;
    position: relative;
}

.publication-card.highlighted {
    border-bottom: 4px solid #F24B1B;
}

.card-title-h6 {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
    text-align: left;
    line-height: normal;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #F24B1B;
    margin-bottom: 15px;
}

.card-content {
    font-size: 1rem;
    color: white;
    line-height: 1.5;
    text-align: justify;
}

.separator {
    height: 2px;
    background-color: #F24B1B;
    margin: 20px 0;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.pagination button {
    background-color: #2a2a2a;
    color: white;
    border: 2px solid #444;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.pagination button:hover {
    background-color: #444;
    border-color: #666;
}

.pagination button.active {
    background-color: #F24B1B;
    border-color: #F24B1B;
    color: white;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination .dots {
    color: #666;
    font-weight: bold;
    padding: 0 10px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .title {
        font-size: 2.5rem;
        font-weight: 600;
        color: #F24B1B;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        letter-spacing: -1px;
    }
    .title {
        font-size: 2.5rem;
        font-weight: 600;
        color: #F24B1B;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        letter-spacing: -1px;
    }



}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .publications-grid {
        grid-template-columns:  1fr 1fr ;
        gap: 20px;
    }

    .publication-card {
        padding: 20px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-content {
        font-size: 0.95rem;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 10px;
    }

    .pagination button {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* @media (max-width: 480px) {
    body {
        padding: 20px 15px;
    }

    .main-title {
        font-size: 2rem;
    }

    .publication-card {
        padding: 15px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-content {
        font-size: 0.9rem;
    }

    .pagination button {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a;
    color: white;
    font-family: 'Arial', sans-serif;
    padding: 40px 20px;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.main-title {
    font-size: 4rem;
    font-weight: bold;
    color: #F24B1B;
    margin-bottom: 40px;
    text-align: left;
}

.blogs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.main-blog {
    position: relative;
}

.blog-item h3 {
    line-height: normal;
    margin: 10px 0px;
}
.blog-item p {
    line-height: normal;
    margin-bottom: 5px;
    /*color: #F24B1B;*/
}  

.blog-image {
    width: 98%;
    height: 40%;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    margin: 0% 1%;
}

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 120px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.overlay-text {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.blog-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #F24B1B;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #F24B1B;
    transform: translateX(5px);
}

.read-more::after {
    content: "→";
    font-size: 1.2rem;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-blog {
    position: relative;
}

.sidebar-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #F24B1B;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.view-all:hover {
    color: #F24B1B;
    transform: translateX(5px);
}

.view-all::after {
    content: "→";
    font-size: 1.4rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .blogs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .main-title {
        font-size: 3rem;
    }

    .overlay-text {
        font-size: 2rem;
    }

    .blog-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .blog-image-overlay {
        bottom: 100px;
        padding: 30px;
    }

    .overlay-text {
        font-size: 1.8rem;
    }

    .blog-title {
        font-size: 1.6rem;
    }

    .blog-description {
        font-size: 1rem;
    }

    .sidebar-image {
        height: 180px;
    }

    .sidebar-title {
        font-size: 1.3rem;
    }
}

/* @media (max-width: 480px) {
    body {
        padding: 20px 15px;
    }

    .main-title {
        font-size: 2rem;
    }

    .blog-image {
        height: 250px;
    }

    .overlay-text {
        font-size: 1.5rem;
    }

    .blog-title {
        font-size: 1.4rem;
    }

    .blog-description {
        font-size: 0.95rem;
    }

    .sidebar-image {
        height: 150px;
    }

    .sidebar-title {
        font-size: 1.2rem;
    }

    .read-more, .view-all {
        font-size: 1rem;
    }
} */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: white;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}

/* Background geometric pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.title {
    font-size: 4rem;
    font-weight: 800;
    color: #F24B1B;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.view-all {
    display: flex;
    align-items: center;
    color: #F24B1B;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 50px;
    border: 2px solid transparent;
}

.view-all:hover {
    background: rgba(255, 69, 0, 0.1);
    border-color: #F24B1B;
    transform: translateX(5px);
}

.arrow {
    margin-left: 10px;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.view-all:hover .arrow {
    transform: translateX(5px);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.video-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 69, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 69, 0, 0.3);
}

.video-card:hover::before {
    opacity: 1;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #000;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.profile-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 16px;
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff4500, #ff6b35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-info {
    flex: 1;
}

.video-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.menu-dots {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-dots:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff4500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }

    .title {
        font-size: 2.5rem;
    }

    .view-all {
        font-size: 1.2rem;
        padding: 8px 16px;
    }

    .arrow {
        font-size: 1.5rem;
    }

    .videos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .video-card {
        padding: 20px;
    }

    .video-wrapper {
        height: 220px;
    }

    .video-title {
        font-size: 1.1rem;
    }

    .video-description {
        font-size: 0.9rem;
    }
}

/* @media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .video-wrapper {
        height: 200px;
    }

    .profile-pic {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .video-title {
        font-size: 1rem;
    }
} */

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-card {
    animation: fadeInUp 0.6s ease forwards;
}

.video-card:nth-child(2) {
    animation-delay: 0.1s;
}

.video-card:nth-child(3) {
    animation-delay: 0.2s;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    background: #000000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: white;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}

/* Background geometric pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
    linear-gradient(45deg, rgba(255, 87, 34, 0.03) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255, 87, 34, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    color:#F24B1B;

    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.view-all {
    display: flex;
    align-items: center;
    color: #F24B1B;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 50px;
    border: 2px solid transparent;
}

.view-all:hover {
    background: rgba(255, 87, 34, 0.1);
    border-color: #F24B1B;
    transform: translateX(5px);
}

.arrow {
    margin-left: 10px;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.view-all:hover .arrow {
    transform: translateX(5px);
}

.podcast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    /* margin-bottom: 30px; */
}

.podcast-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.podcast-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 87, 34, 0.3);
}

.podcast-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
}

.podcast-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
}

.podcast-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
}

.podcast-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.podcast-icon svg {
    width: 24px;
    height: 24px;
    fill: #F24B1B;
}

.business-gyan-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: auto;
}

.think-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    margin-top: auto;
    max-width: 240px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.think-box-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.podcast-controls {
    background: white;
    padding: 24px;
    border-radius: 0 0 24px 24px;
}

.podcast-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.heart-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.heart-icon:hover {
    transform: scale(1.1);
}

.time-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    width: 25%;
    height: 100%;
    background: #F24B1B;
    border-radius: 2px;
    position: relative;
}

.progress-dot {
    width: 12px;
    height: 12px;
    background: #F24B1B;
    border-radius: 50%;
    position: absolute;
    right: -6px;
    top: -4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot:hover {
    transform: scale(1.3);
}

.control-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 87, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #F24B1B;
    font-size: 18px;
}

.control-btn:hover {
    background: rgba(255, 87, 34, 0.2);
    transform: scale(1.05);
}

.play-btn {
    width: 64px;
    height: 64px;
    background: rgba(255, 87, 34, 0.15);
    font-size: 24px;
}

.play-btn:hover {
    background: rgba(255, 87, 34, 0.25);
}

.share-btn {
    transform: rotate(-45deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }

    .title {
        font-size: 2.5rem;
        font-weight: 600;
        margin-top: 100px;
    }

    .view-all {
        font-size: 1.2rem;
        padding: 8px 16px;
    }

    .arrow {
        font-size: 1.5rem;
    }

    .podcast-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .podcast-image {
        height: 240px;
    }

    .business-gyan-title {
        font-size: 2rem;
    }

    .think-box {
        max-width: 200px;
        padding: 16px;
        height: 100px;
    }
}

/* @media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .podcast-image {
        height: 200px;
    }

    .business-gyan-title {
        font-size: 1.8rem;
    }

    .podcast-controls {
        padding: 20px;
    }

    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .play-btn {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
} */

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.podcast-card {
    animation: fadeInUp 0.6s ease forwards;
}

.podcast-card:nth-child(2) {
    animation-delay: 0.1s;
}

.podcast-card:nth-child(3) {
    animation-delay: 0.2s;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Diagonal lines background pattern */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.02) 20px,
        rgba(255, 255, 255, 0.02) 21px
    );
    pointer-events: none;
    z-index: 1;
}

.container1 {
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 40px;
}

.container {
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}
/* .container3 {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    padding: 40px 20px;
} */


.header {
    text-align: left;
    margin-bottom: 40px;
}

.header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    color: #F24B1B;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #333;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.japan-slide {
    background: linear-gradient(45deg, #FF6B35, #FF8A5B);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.japan-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(0,0,0,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(0,0,0,0.1)"/><circle cx="50" cy="50" r="1" fill="rgba(0,0,0,0.05)"/></svg>');
    opacity: 0.3;
}

.japan-slide .text {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 1;
    position: relative;
}

/* Zoom icon overlay */
.zoom-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .zoom-overlay {
    opacity: 1;
}

.zoom-icon {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
}

.view-all {
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #F24B1B;
    font-size: 1.25rem; 
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 24px;
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    width: auto; /* ensure it's not full width */
    max-width: max-content;
}

.view-all:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.arrow {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.view-all:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .container {
        padding: 30px 15px;
    }

    .container1 {
        z-index: 2;
        max-width: 1400px;
        margin: 0 auto;
        padding: 50px 40px;
        padding-bottom: 0px;
    }

}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .header h1 {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer {
        justify-content: center;
    }

    .view-all {
        font-size: 1.3rem;
    }

    .container {
        padding: 20px 10px;
    }
}

/* @media (max-width: 480px) {
    .gallery-item {
        aspect-ratio: 16/10;
    }

    .japan-slide .text {
        font-size: 1.5rem;
    }

    .zoom-overlay {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }

    .zoom-icon {
        width: 18px;
        height: 18px;
    }
} */

.gallery-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    align-items: flex-start;
}

.form-container {
    flex: 1;
    max-width: 500px;
    padding: 15px 50px;
    text-align: center;
}

.contact-info {
    flex: 1;
    max-width: 500px;
    padding: 15px 30px;
    color: white;
}

.form-title {
    color: #F24B1B;;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.contact-title {
    color: #F24B1B;;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

.contact-description {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: justify;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #F24B1B;;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-details h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

.contact-details p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 25px;
}

.form-input {
    width: 100%;
    background-color: #3a3a3a;
    border: 1px solid #4a4a4a;
    border-radius: 8px;
    padding: 20px;
    color: #cccccc;
    font-size: 18px;
    font-family: Arial, sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    background-color: #454545;
    border-color: #F24B1B;;
    color: #ffffff;
}

.form-input::placeholder {
    color: #999999;
    font-size: 18px;
}

.message-input {
    height: 150px;
    resize: vertical;
    font-family: Arial, sans-serif;
}

.submit-btn {
    background-color: #0a0a0a;
    color: #ffffff;
    border: 2px solid #F24B1B;;
    border-radius: 8px;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 40px auto 0;
}

.submit-btn:hover {
    background-color: #F24B1B;;
    color: #000000;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    body {
        padding: 30px;
    }
}



@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .form-container {
        padding: 30px 40px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .form-title, .contact-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .contact-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .contact-details h3 {
        font-size: 20px;
    }

    .contact-details p {
        font-size: 16px;
    }

    .form-input {
        padding: 18px;
        font-size: 16px;
    }

    .form-input::placeholder {
        font-size: 16px;
    }

    .submit-btn {
        padding: 16px 35px;
        font-size: 18px;
        margin-top: 30px;
    }
}

/* @media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .form-container {
        padding: 20px 30px;
    }

    .contact-info {
        padding: 20px 15px;
    }

    .form-title, .contact-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .contact-description {
        font-size: 15px;
    }

    .contact-item {
        margin-bottom: 30px;
        gap: 15px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-details h3 {
        font-size: 18px;
    }

    .contact-details p {
        font-size: 15px;
    }

    .form-input {
        padding: 16px;
        font-size: 15px;
    }

    .form-input::placeholder {
        font-size: 15px;
    }

    .message-input {
        height: 120px;
    }

    .submit-btn {
        padding: 14px 30px;
        font-size: 16px;
        margin-top: 25px;
    }
} */

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #222;
    color: #fff;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

footer {
    position: absolute;
    width: 100%;
    margin: auto;
    right: 0;
    padding: 40px 40px 0;
    background-color: #222;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
}

.footer-col {
    flex: 1 1 200px;
    min-width: 200px;
}


.footer-col h3 {
    color: #F24B1B;
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: #fff;
}

.footer-col p {
    margin: 0 0 15px;
    line-height: 1.6;
    color: #fff;
    text-align: justify;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: #fff;
    transition: color 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    color: #F24B1B;
}

.subscribe-box {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
}

.subscribe-box input {
    flex: 1;
    padding: 12px;
    border: none;
    outline: none;
    font-size: 16px;
    background-color: #333;
    color: #fff;
}

.subscribe-box button {
    background-color: #F24B1B;
    border: none;
    /* padding: 0 20px; */
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100px;
}

.subscribe-box button:hover {
    background-color: #F24B1B;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #444;
    padding: 20px 34px;
    display: flex
    ;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 15px;
    color: #ccc;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
}

.footer-bottom a:hover {
    color: #F24B1B;
}

@media (max-width: 768px) {
    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-col h2,
    .footer-col h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer-col p,
    .footer-col ul li {
        font-size: 14px;
        line-height: 1.5;
    }

    /* .subscribe-box {
        flex-direction: column;
        width: 100%;
    } */

    /* .subscribe-box input {
        width: 100%;
        margin-bottom: 10px;
    } */

    .subscribe-box button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom div {
        width: 100%;
    }

    .social-icons a {
        font-size: 18px;
        margin-right: 8px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: white;
    line-height: 1.6;
}


.main-title {
    font-size: 4rem;
    font-weight: bold;
    color: #F24B1B;
    margin-bottom: 40px;
}

.header {
    margin-bottom: 50px;
}

.section-headers {
    display: flex;
    gap: 50px;
    justify-content: flex-start;
    align-items: center;
}

.section-header {
    font-size: 2rem;
    font-weight: 500;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-bottom: 0.25rem;
    border-bottom: 3px solid transparent;
    line-height: normal;
}

.section-header:hover {
    color: #F24B1B;
}

.section-header.active {
    color: #F24B1B;
    border-bottom: 3px solid #F24B1B;
    padding-bottom: 0.25rem;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(242, 75, 27, 0.1);
}

.card.highlighted {
    background-color: #333;
}

.quote-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.quote-icon.red {
    background-color: #F24B1B;
}

.quote-icon.gray {
    background-color: transparent;
    border: 3px solid #666;
}

.card-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.card-title.red {
    color: #F24B1B;
}

.card-title.gray {
    color: #666;
}

.card-subtitle {
    font-size: 1.3rem;
    color: white;
    line-height: 1.3;
}

.card-subtitle.gray {
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .main-title {
        font-size: 3rem;
    }

    .section-headers {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 30px;
    }

    .section-header {
        font-size: 1.4rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card {
        padding: 25px;
    }

    .card-title {
        font-size: 1.8rem;
    }

    .card-subtitle {
        font-size: 1.1rem;
    }

    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 20px 15px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .section-header {
        font-size: 1.2rem;
        text-align: center;
    }

    .section-headers {
        gap: 20px;
    }
}


.hidden-award {
    display: none;
}


.podcast-card {
    max-width: 426.66px;
    /* margin: 20px auto; */
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

.podcast-card img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 15px;
}

.podcast-title {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.heart-icon {
    width: 24px;
    height: 24px;
    stroke: #999;
    stroke-width: 2;
    fill: none;
    cursor: pointer;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.progress-wrapper {
    position: relative;
    margin: 10px 0;
}

.progress-range {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    background: #eee;
    border-radius: 5px;
    cursor: pointer;
}

.progress-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #ff5722;
    border-radius: 50%;
    cursor: pointer;
}

.progress-range::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #ff5722;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.controls {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    gap: 8px;
}

.control-btn {
    background: #ffe3d9;
    color: #F24B1B;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.control-btn:hover {
    background: #ffd1be;
}
.hidden-video {
    display: none;
}

.hidden-podcast {
    display: none;
}

.category-gallery {
    display: flex;
    gap: 2%;
    flex-wrap: wrap; 
}



.category-item {
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    /* aspect-ratio: 1 / 1;  */
    width: 23.5%; 
    height: 250px;
    align-items: center;
    justify-content: center;
    display: flex;
    
}


.category-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(180, 0, 0, 0.2);
    
}

/* .category-item{
    width: 23.5%; 
    height: 250px; 
    object-fit: cover; 
    border-radius: 10px; 
    border: 3px solid rgb(180, 0, 0); 
    transform: scale(1); 
    transition: 0.5s;
} */

.category-item  img {
    background-size: cover;
    align-items: center;
    background-repeat: no-repeat;
    object-fit: cover;
    width: 100%; 
    height: 250px;
}


.category-item:hover img {
    transform: scale(1.1);
}

.category-tital {
    position: absolute;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.category-tital h5 {
    text-align: center;
    color: transparent;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
}




.category-tital:hover {
    background-color: rgba(0, 0, 0, 0.50);
}

.category-tital:hover h5 {
    color: #fff;
    transform: translateY(-10px) scale(1.02);
    
}

/*.text-muted {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: 50px;
}*/

.image-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    backdrop-filter: blur(5px);
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.image-modal-content {
    position: relative;
    width: 95%;
    max-width: 1000px;
    margin: 2% auto;
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    animation: slideIn 0.4s ease;
    box-shadow: none;
}

@keyframes slideIn {
    from { transform: translateY(-50px) scale(0.8); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.image-modal-close:hover {
    background: rgba(180,0,0,0.9);
    transform: rotate(90deg);
    border-color: rgba(255,255,255,0.5);
}

.image-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #000;
}

.image-slide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    animation: slideInImage 0.5s ease;
}

@keyframes slideInImage {
    from { opacity: 0; transform: scale(1.1); }
    to { opacity: 1; transform: scale(1); }
}

.image-slide.active {
    display: block;
}

.image-slide img {
    width: 100%;
    height: 100%;
    /*object-fit: contain;*/
    background: #000;
    border: none;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    padding: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prev, .next {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, rgba(180,0,0,0.8), rgba(255,71,87,0.8));
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.prev {
    left: 12%;
}

.next {
    right: 12%;
}

.prev:hover, .next:hover {
    background: linear-gradient(45deg, rgba(180,0,0,1), rgba(255,71,87,1));
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(180,0,0,0.4);
}

.slide-counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1001;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.thumbnail-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    overflow-x: auto;
    max-height: 140px;
    border-top: 3px solid #e9ecef;
}

.thumbnail-container::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.thumbnail-container::-webkit-scrollbar-thumb {
    background: #b40000;
    border-radius: 3px;
}

.thumbnail-item {
    flex: 0 0 auto;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.6;
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.thumbnail-item:hover {
    opacity: 1;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.thumbnail-item.active {
    border-color: #F24B1B;;
    opacity: 1;
    box-shadow: 0 6px 20px rgba(180,0,0,0.4);
    transform: scale(1.05);
}

.thumbnail-item img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover img {
    transform: scale(1.1);
}


/* Mobile Responsive */
@media (max-width: 1024px) {

.title {
    font-size: 2.5rem;
    font-weight: 800;
}

.main-title {
    line-height: normal;
    margin-bottom: 20px;
    font-size: 2.8rem;
}
.footer-col1 {
    max-width: 30%;
    min-width: 0px;
}

.footer-col2 {
    max-width: 12%;
    min-width: 0px;
}

.footer-col3 {
    max-width: 17%;
    min-width: 0px;
}

.footer-col4 {
    max-width: 40%;
    min-width: 0px;
}


.footer-container {
    gap: 40px;
}

.category-item { 
    height: 160px;

}

}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .footer-col1, .footer-col2, .footer-col3, .footer-col4 {
        max-width: 100%;
    }

    .category-item {
        aspect-ratio: 1 / 1;
    }

    .category-item img {
        height: 100%;
    }

    .section-headers {
        gap: 20px;
    }

    .content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .image-modal-content {
        width: 98%;
        margin: 1% auto;
        border-radius: 15px;
    }

    .image-slider {
        height: 300px;
    }

    .thumbnail-item img {
        width: 70px;
        height: 55px;
    }

    .prev, .next {
        padding: 12px 16px;
        font-size: 16px;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .image-caption {
        padding: 20px 15px;
        font-size: 1rem;
    }

    .thumbnail-container {
        padding: 15px 10px;
        gap: 10px;
    }

    .container1 {
        padding: 20px 40px;
    }
}

/* @media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .category-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .image-slider {
        height: 250px;
    }

    .thumbnail-item img {
        width: 60px;
        height: 45px;
    }

    .slide-counter {
        font-size: 12px;
        padding: 8px 15px;
    }
} */

@media (max-width: 425px) {
    .mobile-banner{
        display: block;
    }
    .dekstop-banner {
        display: none;
    }
    .btn {
        padding: 0px 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 27px;
        width: 80px;
        font-size: 0.8rem;
    }

    .logo-AKG {
        height: 20px;
     
    }

    .title {
        font-size: 1.1rem;
        font-weight: 800;
        margin-bottom: 10PX;
        margin-top: 30px;
    }
    .main-title {
        line-height: normal;
        margin-bottom: 20px;
        font-size: 2rem;
    }

    .main-content {
        padding: 30px;
        padding-top: 80px;
    }

    .disruptive-section {
        padding: 30px 30px;
        padding-bottom: 0px;
        align-items: center;
    }

    .container1 {
        padding: 40px 30px;
        padding-bottom: 0px;
    }
    .mobile-view-container {
        padding: 40px 30px;
        padding-bottom: 0px;
    }

    .education-section{
        padding: 40px 30px;
        padding-bottom: 0px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 auto;
        align-items: center;
        
    }

    .description {
        margin-bottom: 10px;
        width: 100%;
        font-size: 0.7rem;
    }
    .description1 {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 5px;
    }

    .container3 {
        min-height: 0vh;
    }

    .cta-button {
        font-size: 0.8rem;
        padding: 7px 15px;
    }

    .image-section {
        margin:  0px 20px ;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
        margin-bottom: 20px;
        
    }

    .contact-wrapper {
        padding: 40px 30px;
        padding-bottom: 0px;

    }

    .stat-item {
        padding: 1px;
    }

    .stats-container {
        gap: 15px;
        justify-content: space-between;
    }

    .stat-number {
        font-size: 2.5rem;
    }
    .stat-label {
        font-size: 0.9rem;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .publications-grid {
        grid-template-columns: 1fr;
    }

    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .podcast-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .category-item {
        width: 100%;
    }

    .form-container {
        padding: 0px 20px;
    }

    .contact-info {
        padding: 0px 20px;
    }

    footer {
        padding: 40px 30px;
        padding-bottom: 10px;

    }

    .footer-container {
        display: grid;
        grid-template-columns: 1fr;
        padding: 0px;
        gap: 20px;
    }

    .footer-bottom {
        margin-top: 10px;
        padding: 10px 0px;
    }
    .subscribe-box button {
        width: 20%;
    }

    .view-all {
        font-size: 1rem;
        padding: 6px 13px;
    }

    .card-title {
        font-size: 1.6rem;
    }

    .card-title-h6 {
        font-size: rem;
    }

    .read-more{
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .main-title {
        font-size: 1.7rem;
    }

    .card-title {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .card-title-h6 {
        font-size: 0.9rem;
    }

    .card-content {
        font-size: 0.8rem;
    }

    .blog-image {
        height: 30%;
    }

    .video-title {
        font-size: 0.8rem;
        font-weight: 600;
    }

    .disruptive-section{
        padding: 25px 25px;
        padding-bottom: 0px;

    }
    .container1 {
        padding: 25px 25px;
        padding-bottom: 0px;
    }

    footer {
        padding: 25px 25px;
        padding-bottom: 10px;
    }

    .education-section {
        padding: 25px 25px;
        padding-bottom: 0px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .stats-container {
        gap: 10px;
    }


}

.full-description-scroll {
    max-height: 300px; 
    overflow-y: auto;
    margin-top: 10px;
    font-size: 15px; 
    line-height: 1.8;
    scrollbar-width: thin;
    scrollbar-color: #F24B1B transparent; 
    padding-right: 15px;
}
.full-description-scroll::-webkit-scrollbar {
    width: 8px; 
}
.full-description-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.full-description-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #F24B1B 30%, #f0f0f0 30%);
    border-radius: 10px;
}

    



