/*
Theme Name: My Blank Theme
Theme URI: http://example.com/
Author: Your Name
Author URI: http://example.com/
Description: A blank WordPress theme for custom development
Version: 1.0
*/

/* Reset */
html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    font-family: sans-serif;
}

/* navbar */
.site-header {
    background-color: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
      height: 100px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
  
    width: auto;
    max-width: 400px;
    object-fit: contain;
    display: block;
}



/* Main Layout */
.partnership-container {
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
    background-image:
        radial-gradient(1200px 500px at 15% -10%, rgba(255, 255, 255, 0.9), transparent 60%),
        radial-gradient(900px 420px at 90% 0%, rgba(200, 200, 200, 0.55), transparent 65%),
        linear-gradient(180deg, #f6f6f6 0%, #e6e6e6 100%);
    color: #0b0f12;
    padding: 60px 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;

}

.partnership-container::before,
.partnership-container::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    height: 140px;
    background: rgba(0, 0, 0, 0.04);
    z-index: 0;
}

.partnership-container::before {
    top: -70px;
    transform: skewY(-2deg);
}

.partnership-container::after {
    bottom: -70px;
    transform: skewY(2deg);
}

.partnership-container>* {
    position: relative;
    z-index: 1;
}

.partnership-container .badge {
    background-image: linear-gradient(90deg, #005494 0%, #2aaae1 50%, #40b349 100%);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid #2d5a5a;
}

.partnership-container h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0 auto 40px auto;
    max-width: 800px;
    font-weight: 700;
}

.partnership-container .video-wrapper {
    max-width: 800px;
    margin: 0 auto 40px auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.partnership-container .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.main-content-row {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 60px;
    text-align: left;
    align-items: flex-start;
}

.left-column {
    flex: 1.5;
}

.left-column p {
    line-height: 1.5;
    font-size: 1rem;
    letter-spacing: 0.9;
}

.right-column {
    flex: 1;
}

.key-takeaways {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.key-takeaways li {
    margin-bottom: 15px;
    color: #000;
    line-height: 1.5;
}

.subscribe-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
}

.email-input {
    width: 100%;
    padding: 14px;
    margin: 15px 0;
    border-radius: 6px;
    border: 1px solid #2d5a5a;
    box-sizing: border-box;
    background: #b4b4b5;
    color: #000;
}

.subscribe-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 14px;
    background-image: linear-gradient(90deg, #005494 0%, #2aaae1 50%, #40b349 100%);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #e6efef;
    cursor: pointer;
    line-height: 1.1;
}

.subscribe-button:hover {
    background-color: #f4f7f7;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

.subscribe-button:active {
    transform: translateY(0);
    box-shadow: none;
}

.subscribe-button:focus-visible {
    outline: 2px solid #8fc2c2;
    outline-offset: 2px;
}

.subscribe-box a {
    color: red;
}

.terms {
    font-size: 0.75rem;
    color: #88a;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .main-content-row {
        flex-direction: column;
    }

    .partnership-container h2 {
        font-size: 1.8rem;
    }
}

/* Section 2 */
.about-section {
    max-width: 1000px;
    margin: 80px auto 40px auto;
    text-align: center;
    padding: 40px;
    background-color: #27a8e0;
    border-radius: 12px;
}

.about-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.about-section p {
    line-height: 1.8;
    color: #333;
}

.more-videos-section {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px auto;
}

.video-card {
    background: #1a3a3a;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2d5a5a;
    padding: 10px;
}

.video-card-inner {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: #0c2121;
}

.video-card-inner iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-card p {
    margin: 10px 6px 4px 6px;
    color: #d8e4e4;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.9;
    font-size: 0.95rem;
}

.secondary {
    display: flex;
    width: fit-content;
    margin: 20px auto 0;

}


.logo-scroller-section {
    background-color: #005494;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.logo-scroller-section h2 {
    margin-bottom: 40px;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0 20px;
}

.logo-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    animation: scrollInfinite 30s linear infinite;
}

.marquee-content img {
    height: 50px;
    width: auto;
    margin: 0 50px;
    /* filter: brightness(0) invert(1); */
    flex-shrink: 0;
}

@keyframes scrollInfinite {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

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

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

.roadmap-section {
    padding: 80px 20px;
    background-color: #f0f0f0;
    background-image:
        radial-gradient(1200px 500px at 15% -10%, rgba(255, 255, 255, 0.9), transparent 60%),
        radial-gradient(900px 420px at 90% 0%, rgba(200, 200, 200, 0.55), transparent 65%),
        linear-gradient(180deg, #f6f6f6 0%, #e6e6e6 100%);
    color: #0b0f12;
    text-align: center;
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    max-width: 900px;
    margin: 50px auto 0 auto;
}

.timeline-item {
    flex: 1;
    padding: 30px;
    background: #ffff;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(4px);
    animation: fadeIn 1s ease forwards;
    opacity: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.timeline-item:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 84, 148, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.circle {
    width: 70px;
    height: 70px;
    background-image: linear-gradient(90deg, #005494 0%, #2aaae1 50%, #40b349 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 84, 148, 0.4);
    transition: all 0.4s ease;
}

.timeline-item:hover .circle {
    background: #f0f0f0;
    color: #005494;
    transform: scale(1.05);
}

/* footer */
.site-footer {
    color: #000000;
    padding: 60px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

.footer-col img {
    width: 150px;
}

.footer-col h3 {
    color: #9fc521;
}

.footer-col p {
    margin: 5px 0;
    font-size: 1rem;
    color: #000;
    line-height: 1.5;

}

.links-col a {
    display: block;
    color: #000;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 1rem;
}

.links-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.8rem;
    color: #666;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-link img {
    width: 25px;
    height: 25px;
    display: inline-flex;
}