:root {
    --primary: #0052cc;
    --primary-light: #4c9aff;
    --primary-dark: #003d99;
    --secondary: #00d2d3;
    --text-main: #172b4d;
    --text-light: #5e6c84;
    --bg-main: #f4f5f7;
    --bg-card: #ffffff;
    --accent: #ff5630;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Calibri Light', Calibri, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1 { font-size: 3.5rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; font-weight: 600; line-height: 1.3; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
p { font-size: 1.125rem; color: var(--text-light); margin-bottom: 1rem; }

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 60px !important;
    width: auto !important;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding-bottom: 0.25rem;
    color: var(--text-light);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 5% 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, rgba(244, 245, 247, 0.95), rgba(244, 245, 247, 0.8)), url('images/banner.jpeg') right center/contain no-repeat;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    color: var(--text-main);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Impact Section */
.impact-section {
    padding: 6rem 5%;
    background: white;
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.impact-card {
    background: var(--bg-main);
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    background: white;
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

/* Products Section */
.products-section {
    padding: 10rem 5% 6rem;
    background: var(--bg-main);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.product-info {
    padding: 2.5rem;
}

/* Footer */
.site-footer {
    background: var(--text-main);
    color: white;
    padding: 5rem 5% 2rem;
}

.footer-subscribe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 4rem;
}

.subscribe-info h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.subscribe-info p {
    color: #aeb8c7;
    font-size: 1.05rem;
    margin: 0;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.subscribe-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.subscribe-form input:focus {
    border-color: var(--primary-light);
    background: rgba(255,255,255,0.1);
}

.subscribe-form .btn {
    padding: 1rem 2rem;
    white-space: nowrap;
}

.subscribe-disclaimer {
    font-size: 0.85rem;
    color: #8a96a8;
    margin: 0;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-widget h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-widget ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-widget ul a {
    color: #aeb8c7;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-widget ul a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.contact-item {
    margin-bottom: 1.25rem;
}

.contact-item span {
    display: block;
    color: #8a96a8;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.contact-item a, .contact-item strong, .contact-item p {
    color: #e2e8f0;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.contact-item p {
    line-height: 1.5;
    font-weight: 400;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #8a96a8;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 992px) {
    .footer-subscribe {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* People Section */
.people-section {
    padding: 6rem 5%;
    background: white;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.person-card {
    text-align: center;
    background: var(--bg-main);
    padding: 3rem 2rem;
    border-radius: 20px;
    transition: var(--transition);
}

.person-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    background: white;
}

.person-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.person-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.person-card .role {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.linkedin-link:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

/* Impact Content enhancements */
.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    text-align: left;
}

.impact-video h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.impact-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.gallery-img:hover {
    transform: scale(1.03);
}

.mitr-labs-content {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 2.5rem;
    box-shadow: 0 15px 30px rgba(0, 82, 204, 0.2);
}

.mitr-labs-content h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.mitr-labs-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 992px) {
    .impact-content {
        grid-template-columns: 1fr;
    }
}

/* News Section */
.news-section {
    padding: 6rem 5%;
    background: var(--bg-main);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background: rgba(0, 82, 204, 0.1);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2.45rem;
    top: 0.25rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.1);
}

.timeline-date {
    display: inline-block;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.news-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.news-img {
    width: 180px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
}

.news-text h3 {
    color: var(--text-main);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .news-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .news-img {
        width: 100%;
        height: 200px;
    }
}

/* Employee Scrolling Section */
.employee-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 82, 204, 0.1);
    overflow: hidden;
    background: white;
}

.scrolling-wrapper {
    position: relative;
    width: 100%;
    overflow-x: auto;
    padding: 2rem 0;
    scrollbar-width: none;
    scroll-behavior: auto;
}
.scrolling-wrapper::-webkit-scrollbar {
    display: none;
}

/* Fading edges */
.scrolling-container-with-arrows::before,
.scrolling-container-with-arrows::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.scrolling-container-with-arrows::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

.scrolling-container-with-arrows::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}

.scrolling-track {
    display: inline-flex;
    gap: 2rem;
    padding-right: 2rem;
}

.scrolling-container-with-arrows {
    position: relative;
    max-width: 100%;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.scroll-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

@media (max-width: 768px) {
    .scrolling-container-with-arrows {
        padding-bottom: 70px;
    }
    .scroll-btn {
        top: auto;
        bottom: 10px;
        transform: none;
    }
    .scroll-btn:hover {
        transform: scale(1.1);
    }
    .prev-btn {
        left: calc(50% - 60px);
    }
    .next-btn {
        right: calc(50% - 60px);
    }
}

.employee-card {
    width: 220px;
    flex-shrink: 0;
    text-align: center;
    background: var(--bg-main);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.employee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: white;
}

.emp-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.employee-card h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.employee-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Process Timeline Section */
.process-section {
    padding: 6rem 5%;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.process-container {
    max-width: 700px;
    width: 100%;
}

.process-step {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-bottom: 4.5rem;
}

/* The Vertical Connecting Line */
.process-step::before {
    content: '';
    position: absolute;
    left: 19px; /* Centered visually with 40px icon */
    top: 55px; /* Starts below the icon */
    bottom: 15px; /* Ends above the next icon */
    width: 2px;
    background: #000; 
}

/* Remove the line for the last item */
.process-step:last-child::before {
    display: none;
}

.process-icon {
    width: 40px;
    height: 40px;
    z-index: 2;
    position: relative;
    margin-right: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem; /* Slight nudge to align with heading */
}

.process-icon svg {
    width: 100%;
    height: 100%;
    fill: #000;
}

.process-content {
    padding-top: 0;
}

.process-content h3 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    letter-spacing: -0.01em;
}

.process-content p {
    font-size: 1.15rem;
    color: #111;
    line-height: 1.6;
    margin: 0;
}

/* Milestones / Awards Section */
.milestones-section {
    padding: 6rem 5%;
    background-color: #fafafa;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
    text-align: center;
}
.milestones-container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}
.section-header-centered .section-title {
    margin-bottom: 0.5rem;
    color: #1a2b4c;
    font-size: 2.5rem;
    font-weight: 700;
}
.title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.award-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: left;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ribbon {
    position: absolute;
    top: 25px;
    right: -35px;
    transform: rotate(45deg);
    padding: 5px 40px;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.ribbon-record {
    background: #e67e22;
}
.ribbon-winner {
    background: #2962ff;
}
.award-card.record-card {
    border-top: 4px solid #e67e22;
}
.award-card.winner-card {
    border-top: 4px solid #2962ff;
}
.award-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #eee;
}
.award-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-record {
    background: #fff4e6;
    color: #e67e22;
}
.icon-winner {
    background: #f0f4ff;
    color: #2962ff;
}
.award-titles h3 {
    color: #1a2b4c;
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}
.award-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}
.award-content {
    flex-grow: 1;
}
.award-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.award-content strong {
    color: #333;
}
.award-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.award-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}
.award-list li svg {
    color: #2962ff;
    flex-shrink: 0;
    margin-top: 2px;
}
.award-footer {
    margin-top: 1.5rem;
}
.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}
.tag-record {
    background: #fff9f0;
    color: #d35400;
    border: 1px solid #fdebd0;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.2s ease;
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover {
    color: #fff;
    transform: scale(1.1);
}

@keyframes zoomIn {
    from {transform: scale(0.95); opacity: 0;} 
    to {transform: scale(1); opacity: 1;}
}


/* News Timeline Layout */
.news-timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}
.news-timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 17px;
    height: 100%;
    width: 2px;
    background: #e2e8f0;
}
.news-timeline-item {
    position: relative;
    margin-bottom: 3rem;
}
.news-timeline-marker {
    position: absolute;
    left: -42px;
    top: 0px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-timeline-marker .news-timeline-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}
.news-timeline-date-label {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    margin-top: 0px;
}
.news-timeline-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
@media (min-width: 600px) {
    .news-timeline-card {
        flex-direction: row;
    }
}
.news-card-image {
    width: 100%;
    max-width: 320px;
    flex-shrink: 0;
    border-right: 1px solid #e2e8f0;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-card-image img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
}
.news-card-body {
    padding: 1.5rem 2rem;
    flex: 1;
}
.news-card-category {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}
.news-timeline-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}
.news-timeline-card p {
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.news-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    margin-bottom: 1.5rem;
}
.news-card-btn:hover {
    background: #f8fafc;
    border-color: var(--primary);
}
.news-card-footer {
    display: flex;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* ===== Hamburger Button ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== Trust & Transparency Section ===== */
.trust-section {
    padding: 4rem 5%;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.trust-section h2 {
    text-align: center;
    color: var(--primary-dark);
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.trust-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.trust-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-card ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-main);
    line-height: 1.5;
}

.trust-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.impact-stat {
    text-align: center;
    justify-content: center;
    align-items: center;
    background: white;
}

.impact-stat h3 {
    border-bottom: none;
}

.impact-stat .number {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1rem 0;
    color: var(--primary);
    line-height: 1;
}

.impact-stat p {
    color: var(--text-light);
}

.trust-video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.trust-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.trust-testimonial {
    font-style: italic;
    color: #475569;
    padding-left: 1.25rem;
    border-left: 4px solid var(--accent);
    margin-top: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-testimonial .author {
    font-style: normal;
    font-weight: 600;
    margin-top: 1rem;
    color: var(--primary-dark);
}

/* ===== Certificates Grid ===== */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.cert-item {
    cursor: pointer;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
    transition: transform 0.2s;
    background: white;
}

.cert-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-main);
}

.cert-item img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    background-color: #f1f5f9;
}

.cert-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-main);
    line-height: 1.2;
}

/* ===== Lightbox Modal ===== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-size: 1.2rem;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 260px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(16px);
        padding: 5rem 2rem 2rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        gap: 0;
        z-index: 1050;
        overflow-y: auto;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.85rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-links a::after {
        display: none;
    }

    .navbar {
        padding: 0.75rem 5%;
    }

    .logo img {
        height: 50px !important;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .hero {
        padding-top: 5rem;
    }

    .hero-content {
        max-width: 100%;
    }
}
