body {
    margin: 0;
    font-family: Arial, sans-serif;
}
  .loading-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(5px);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }

        .loading-content {
            text-align: center;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        body.loading {
            overflow: hidden;
        }
.video-container {
    position: relative;
    width: 100%;
    /* height: 500px; */
}
.video-container img{
    width: 100%;
}
.info-logo1{
        width: 100%;
    max-width: 200px;
}
#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire container */
    transform: translate(-50%, -50%);
    z-index: -1;
}

.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for better text readability */
}

.launch-tag {
    background-color: white;
    color: #007bff;
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #007bff;
    font-size: 0.9em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.launch-tag .rocket-icon {
    margin-right: 8px;
}

h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.8;
}

.logo img {
    max-width: 150px;
    height: auto;
    margin-top: 20px;
}

.play-pause-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
}

.play-pause-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
} 
/* Media Spotlight Section Styles */
.media-spotlight-section {
    padding: 60px 0px 0px 0px;
    text-align: center;
    color: #333;
}

.media-spotlight-content {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.media-spotlight-section h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.media-spotlight-section p {
    font-size: 1.1em;
    line-height: 1.6;
}

.media-spotlight-section .highlight {
    color: #007bff; /* Blue color for S&P Health care */
}

.media-spotlight-image {
    margin-top: 20px;
}

.media-spotlight-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
} 

/* Articles Section Styles */
.articles-section {
    padding: 60px 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.articles-container {
    display: grid;
    /* gap: 30px; */
    max-width: 1200px;
    width: 100%;
}

.article-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 30px;
}

.article-card .article-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 20px;
}
.article-header-img{
    width: 100px;
}
.article-card .publisher-logo {
    width: 100%;
    object-fit: contain;
}

.article-card .article-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}

.article-card .published-date {
    font-size: 0.9em;
    color: black;
    margin-bottom: 15px;
}

.article-card .article-summary {
    font-size: 1em;
    color: #777;
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-card .key-highlights-title {
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #333;
}

.article-card .key-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.article-card .key-highlights li {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.article-card .key-highlights li::before {
    content: ''; 
    background-image: url('/assets/Frame.png'); 
    background-size: cover;
    width: 16px; 
    height: 16px; 
    position: absolute;
    left: 0;
    top: 2px; 
}
.article-card .article-quote {
    font-style: italic;
    margin: 20px 0;
    padding: 15px;
    border-radius: 10px;
    background-color: #E5E7EB;
    color: #666;
}

.article-card .article-quote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    color: black;
}

.article-card .read-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 22px;
    background-color: #e6ebe5;
    color: #28AA52;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    align-self: flex-start; 
}

.article-card .read-more-btn:hover {
    background-color: #28AA52;
    color: #fff;
} 
/* Features Section Styles */
.features-section {
    padding: 0px 80px;
    text-align: center;
    color: #333;
}

.features-header {
    max-width: 1600px;
    margin: 0 auto 60px auto;
}

.features-header h2 {
    font-size: 35px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.features-header .highlight {
    color: #0D71AD; 
}

.features-header p {
    font-size: 1.15em;
    line-height: 1.7;
    color: #555;
    max-width: 900px;;
}
.features-header-para{
    display: flex;
        justify-content: center;
}
.feature-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-card .feature-icon {
   
    margin-bottom: 0px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.feature-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
} 
.feature-card-over{
    display: flex;
        flex-direction: row;
        text-align: center;
        align-items: center;
}

/* Leadership Section Styles */
.leadership-section {
    padding: 80px 80px;
    text-align: center;
    background-color: #ffffff;
    color: #333;
}

.leadership-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.leadership-header h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    line-height: 1.3;
}

.leadership-header .highlight {
    color: #0D71AD; /* Blue color for highlighted text */
}

.leadership-header p {
    font-size: 1.15em;
    line-height: 1.7;
    color: #555;
}

.leadership-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0 auto;
}
.leader-photo{
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.leader-card {
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgb(4 4 4 / 36%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.leader-card .leader-photo {
    
    object-fit: cover;
    margin-bottom: 20px;
}

.leader-card h3 {
    font-size: 1.6em;
    margin-bottom: 5px;
    color: #333;
    font-weight: 700;
}

.leader-card .leader-title {
    font-size: 1em;
    color: #0D71AD;
    margin-bottom: 15px;
}

.leader-card .leader-bio {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.leader-card .leader-tags {
    margin-top: 15px;
    margin-bottom: 20px;
}

.leader-card .tag {
    display: inline-block;
    background-color: #e9ecef;
    color: #495057;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    margin: 5px;
}
.leader-tags-main{
    padding: 20px;
}
.leader-card .leader-quote {
    font-style: italic;
    margin: 0px;
    padding: 15px;
    background-color: #f2f2f2;
}
.tag1{
    background-color: #E5E7EB !important;
    
    color: #8A6FE8 !important;
}
.leader-card .leader-quote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
} 


/* Info Section Styles */
.info-section {
    padding: 80px 20px;
    background-color: #004c8c; /* Darker blue background */
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px; /* Adjust height as needed */
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}

.info-section h2 {
    font-size: 2.8em;
    margin-bottom: 25px;
    line-height: 1.3;
}

.info-section .large-paragraph {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* App Features Section Styles */
.app-features-section {
    padding: 80px 80px 0px 80px;
    background-color: #f8f8f8;
    color: #333;
    text-align: center;
}

.app-features-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.app-features-header h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    line-height: 1.3;
}

.app-features-header .highlight {
    color: #004c8c; /* Blue color for highlighted text */
}

.app-features-header p {
    font-size: 1.15em;
    line-height: 1.7;
    color: #555;
}

.app-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .app-content-container {
        flex-direction: row; /* Side-by-side on larger screens */
        text-align: left;
        align-items: flex-start;
    }
}

.mobile-display {
    flex-shrink: 0;
    height: auto;
    position: relative;
    margin-bottom: 40px;
}

.app-screenshot {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 25px; /* Adjust for phone screen curvature */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* You might need a background image for the phone frame if not part of the screenshot */
/* For example: */
/*
.mobile-display {
    background-image: url('../assets/phone_frame.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px; 
    box-sizing: border-box;
}
*/

.app-features-list {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
}


.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

.feature-item-text h3 {
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 5px;
    color: #333;
}

.feature-item-text p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
}

.center-banner img{
    width: 100%;
}

/* Milestone Section Styles */
.milestone-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
    color: #333;
}

.milestone-header {
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.milestone-flow {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 30px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.milestone-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 20px;
    min-width: 100px; /* Ensure steps have some width */
}

.milestone-step .circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    color: white;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.milestone-step.completed .circle {
    background-color: #0D71AD;
    border: 2px solid #0D71AD;
}

.milestone-step.pending .circle {
    background-color: #ced4da;
    border: 2px solid #ced4da;
    color: #6c757d;
}

.milestone-step .icon {
    line-height: 1; /* Adjust icon vertical alignment */
}

.milestone-step p {
    font-size: 0.9em;
    color: #555;
}
.milestone-flow .line.line-partial-complete {
    background: linear-gradient(to right, #0D71AD 50%, #ced4da 50%);
}
.milestone-flow .line {
    flex-grow: 1;
    height: 2px;
    margin: 0 -46px; /* Overlap with step padding */
    transition: background-color 0.3s ease;
}

.milestone-flow .line.completed {
    background-color: #0D71AD;
}

.milestone-flow .line.pending {
    background-color: #ced4da;
}

.milestone-description {
    font-size: 1.1em;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Call to Action Section Styles */
.call-to-action-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #f0f2f5;
    color: #333;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.cta-content .highlight {
    color: #0D71AD; /* Blue color for S&P Health */
}

.cta-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.waitlist-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.email-input {
    padding: 12px 20px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 1em;
    width: 100%;
    max-width: 350px; /* Limit input width */
    box-sizing: border-box;
}

.join-waitlist-btn {
    padding: 12px 25px;
    background-color: #28a745; /* Green button */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.join-waitlist-btn:hover {
    background-color: #218838;
}

/* Footer Section Styles */
.footer-section {
    background-color: #2c3e50; /* Dark blue/grey */
    color: white;
    padding: 40px 20px;
    font-size: 0.9em;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-left {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-left {
        text-align: left;
    }
}

.footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.copyright {
    color: #b0c4de;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-right {
        flex-direction: row;
        text-align: left;
    }
}

.footer-links,
.footer-connect {
    flex: 1;
}

.footer-links h4,
.footer-connect h4 {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #b0c4de;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .social-icons {
        justify-content: flex-start;
    }
}

.social-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: invert(100%) saturate(0%) brightness(100%); /* White icons */
    transition: filter 0.3s ease;
}

.social-icon:hover img {
    filter: invert(70%) sepia(30%) saturate(1000%) hue-rotate(180deg) brightness(100%); /* Blue tint on hover */
}
@media (max-width: 900px) {
 .overlay-content h1{
    font-size: 24px;
 }
 .media-spotlight-section h2 {
    font-size: 25px;
 }
 .articles-section {
    padding: 20px 10px;
 }
 .features-header h2 {
    font-size: 25px;
 }
 .features-section {
    padding: 0px 10px;
 }
 .leadership-section {
    padding: 20px 10px;
 }
 .leadership-header h2 {
    font-size: 25px;
 }
 .app-features-section {
    padding: 20px 10px 0px 10px;
 }
 .app-features-header h2 {
    font-size: 25px;
 }
 .milestone-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 0px;
    min-width: 72px;
 }
 .milestone-section {
    padding: 20px 10px;
 }
 .milestone-step p {
    font-size: 12px;
 }
 .milestone-flow{
    gap: 5px;
 }
 .call-to-action-section {
    padding: 20px 10px;
 }
 .cta-content h2 {
    font-size: 25px;
 }
 .info-section h2
 {
    font-size: 25px;
 }
}