/* Global Resets & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth; /* For smoother #link clicks if JS fails */
}

body {
    font-family: Arial, sans-serif; /* Clean, modern font stack */
    line-height: 1.7;
    color: #4A4A4A; /* Main text color - dark gray */
    background-color: #F8F9FA; /* Very light gray background */
    font-size: 16px; /* Base font size */
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial, sans-serif; /* A slightly more distinct font for headings */
    color: #003366; /* Deep Navy Blue for headings */
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem; /* Slightly larger for readability */
}

a {
    color: #007BFF; /* Primary link color - vibrant blue */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3; /* Darker blue on hover */
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 1140px; /* Common max-width for content */
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation Bar */
#navbar {
    background-color: rgba(255, 255, 255, 0.98); /* Slightly transparent white */
 
    padding:  0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid #003366; /* Deep Navy Blue accent */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled { /* For JS to add when scrolled */
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 2rem;
    font-weight: bold;
    color: #003366; /* Deep Navy Blue */
    text-decoration: none;
 
}

nav .logo img{
 
    text-decoration: none;
    width: 148px;vertical-align: text-bottom;padding:5px 0 0 0
}
nav .logo .logo-accent {
    color: #00A99D; /* Teal accent */
}

nav .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

nav .nav-links li {
    margin-left: 30px;
}

nav .nav-links li a {
    color: #4A4A4A;
    text-decoration: none;
    font-weight: 500; /* Medium weight for nav links */
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

nav .nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #00A99D; /* Teal accent for underline */
    transition: width 0.3s ease;
}

nav .nav-links li a:hover,
nav .nav-links li a.active {
    color: #003366; /* Deep Navy Blue on hover/active */
}

nav .nav-links li a:hover::after,
nav .nav-links li a.active::after {
    width: 100%;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #003366; /* Deep Navy Blue */
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}


/* Hero Section */
.hero {
    /* The only change is the URL to your banner.png image */
    background: linear-gradient(rgba(0, 51, 102, 0.75), rgba(0, 31, 61, 0.85)), url('./banner.png') no-repeat center center/cover;
    color: white;
    height: 100vh; /* Full viewport height */
    min-height: 600px;
    display: flex;
    align-items: center; /* Vertically center content */
    text-align: center;
    position: relative; /* For overlay */
    padding-top: 80px; /* Account for fixed navbar */
}

.hero-overlay { /* Optional overlay for better text readability */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.3); /* Darker overlay */
}

.hero-content {
    position: relative; /* To be above overlay */
    z-index: 1;
}

.hero h1 {
    font-size: 3.8rem; /* Large headline */
    margin-bottom: 0.6em;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero h1 .highlight {
    color: #82EEFD; /* Light Sky Blue or a vibrant accent */
    display: inline-block; /* Allows effects like underline if needed */
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2em;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #00A99D; /* Teal accent */
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 169, 157, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #007A70; /* Darker Teal */
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 122, 112, 0.4);
    color: white;
    text-decoration: none;
}

/* General Section Styling */
.section {
    padding: 40px 0; /* More vertical padding */
    background: #e8e7e4;
}

.section-alt { /* For alternating background colors */
    background-color: #FFFFFF;
}

.section-title {
    font-size: 2.6rem; /* Consistent title size */
    color: #003366; /* Deep Navy Blue */
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-align: center; /* Ensure title is centered if section text-align is left */
    width: 100%; /* Make it take full width to center the ::after */
    
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
   
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #6c757d; /* Muted gray */
    margin-bottom: 40px;
 
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* About SADI Section */
#about .about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

 


#about .about-item, .orange-item {
    text-align: center;
    padding: 20px;
    background-color:#FFF1D9;
    border-radius: 10px;
}


#about .about-item, .orange-item{

    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border-left: 5px solid transparent; /* For hover effect */
}

 
#about .about-item:hover, .orange-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #B68C40; /* Teal accent on hover */
}

#about .about-icon {
    font-size: 3rem; /* Placeholder for actual icons */
    color: #007BFF; /* Primary blue */
    margin-bottom: 15px;
}
#about .about-item h3, .orange-item h3 {
    font-size: 1.5rem;
    color: #2D3E50;
    margin-bottom: 10px;
}

/* SADI Platform & SADI-M Sections */
.platform-features, .sadi-m-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.platform-feature-item, .sadi-m-item , .blue-item {
    
    background: #EAFFF4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border-left: 5px solid transparent; /* For hover effect */
}

.platform-feature-item , .blue-item{
    background:#e1f4fd;
}

 .green-item{
    background:#EAFFF4;
}

.platform-feature-item p, .sadi-m-item p, .blue-item p{
    color: #000;
}
.platform-feature-item:hover, .sadi-m-item:hover, .blue-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #00A99D; /* Teal accent on hover */
}
.feature-icon, .sadi-m-icon {
    font-size: 2.8rem;
    color: #007BFF; /* Primary blue */
    margin-bottom: 15px;
    display: inline-block;
}
.platform-feature-item h4, .sadi-m-item h3, .blue-item h4 {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 10px;
}
.sadi-m-item ul {
    list-style-position: outside;
    padding-left: 20px;
    margin-top: 10px;
}
.sadi-m-item ul li {
    margin-bottom: 8px;
    color: #000;
}
.sadi-m-item p {

    color: #000;
}

/* Impact Section */
#impact .impact-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
#impact .impact-point, .silver-item {
    background-color: #eee;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
 
}
#impact .impact-icon {
    font-size: 3rem;
    color: #28A745; /* Different Accent Green */
    margin-bottom: 15px;
}
#impact .impact-point h4 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 10px;
}

/* Investor Pitch Section */
#invest {
    background: linear-gradient(to right, #003366, #0A4D68); /* Deep blue gradient */
    color: #f0f0f0;
}
#invest .section-title {
    color: #FFFFFF;
}
#invest .section-title::after {
 
}
#invest .section-subtitle {
    color: #d0d0d0;
}
#invest .pitch-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}
#invest .pitch-highlight {
    color: #82EEFD; /* Light Sky Blue for highlight on dark */
    font-weight: 600;
}
.cta-invest {
    margin-top: 30px;
    background-color: #FFFFFF;
    color: #003366; /* Button text color */
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}
.cta-invest:hover {
    background-color: #eef8ff;
    color: #002244;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}


/* Contact Section */
#contact {
    background-color: #343A40; /* Dark Gray */
    color: #f8f9fa; /* Light text */
    padding-bottom: 60px; /* Extra padding at bottom if footer is separate */
}
#contact .section-title {
    color: #FFFFFF;
}
#contact .section-title::after {
 
}
#contact .section-subtitle {
    color: #adb5bd; /* Lighter gray for subtitle */
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}
.contact-details h3, .contact-form-container h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #FFFFFF;
    border-bottom: 2px solid #00A99D;
    padding-bottom: 10px;
    display: inline-block;
}
.contact-details p {
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: #e0e0e0;
}
.contact-details p .contact-icon { /* For text-based icons */
    margin-right: 12px;
    color: #00A99D; /* Teal */
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}
.contact-details a {
    color: #82EEFD; /* Light Sky Blue for links on dark */
    text-decoration: none;
}
.contact-details a:hover {
    text-decoration: underline;
}

.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 15px; /* More padding */
    border: 1px solid #555;
    border-radius: 6px;
    background-color: #495057; /* Darker input background */
    color: #f8f9fa;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #00A99D; /* Teal focus */
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 169, 157, 0.25);
}
.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}
.contact-form .cta-button { /* Re-using cta-button style but can be specific */
    background-color: #00A99D; /* Teal */
    /* Other styles inherited */
}
.contact-form .cta-button:hover {
    background-color: #007A70; /* Darker Teal */
}
.form-status {
    margin-top: 15px;
    font-size: 0.95rem;
    min-height: 20px; /* To prevent layout shift */
}


/* Footer */
footer {
    background-color: #212529; /* Very Dark Gray/Black */
    color: #adb5bd;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
}
footer p {
    margin-bottom: 0.5rem;
}
footer a {
    color: #00A99D; /* Teal for footer links */
}
footer a:hover {
    color: #007A70;
}

/* Responsive adjustments for mobile */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stack contact details and form */
    }
    #about .about-grid {
        text-align: center; /* Center text in about items on smaller screens */
    }
    #about .about-item, .orange-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    body { font-size: 15px; }
    .hero h1 { font-size: 2.8rem; }
    .hero .subtitle { font-size: 1.2rem; }
    .cta-button { padding: 12px 28px; font-size: 1rem; }
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 1rem; margin-bottom: 40px;}
    .section { padding: 60px 0; }

    /* Mobile Navigation */
    nav .menu-toggle {
        display: flex;
    }
    nav .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.99);
        position: absolute;
        top: 100%; /* Position below navbar */
        left: 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding-bottom: 10px;
    }
    nav .nav-links.active {
        display: flex;
    }
    nav .nav-links li {
        margin: 0;
        width: 100%;
    }
    nav .nav-links li a {
        display: block;
        padding: 12px 20px;
        text-align: center;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    nav .nav-links li a::after { display: none; } /* Remove underline effect for mobile list */
    nav .nav-links li:last-child a { border-bottom: none; }

    /* Hamburger animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* stylesinfo.css - Additions/Generalizations */

/* --- General Layout Components --- */

.prose-block { /* For general text content blocks */
   
    margin-left: auto;
    margin-right: auto;
}
.prose-block.large-text p { /* If you want slightly larger intro text */
    font-size: 1.1rem;
    line-height: 1.8;
}
.prose-block strong, .card-text strong { /* Consistent emphasis color */
    color: #003366; /* Deep Navy Blue */
    font-weight: 600; /* Or 700 */
}

.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}

/* Content Grid System */
.content-grid {
    display: grid;
    gap: 30px; /* Default gap */
}

/* Modifier for 3 columns, common pattern */
.content-grid-3col {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
/* You could add .content-grid-2col, .content-grid-4col etc. as needed */
/* Example:

*/

.content-grid-2col {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
/* Card Item Styling (Reusable for features, mission/vision, locations etc.) */
.card-item {
    background-color: #FFFFFF;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Make cards in a row same height if grid align-items: stretch is used */
}

.card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.card-item.text-center { /* Modifier for centered content within card */
    text-align: center;
}
.card-item.text-left { /* Modifier for left-aligned content */
    text-align: left;
}
/* If you had border-left accents on hover before for specific items, you might add a modifier:
.card-item.accent-hover:hover {
    border-left: 5px solid #00A99D;
}
*/

.card-icon {
    font-size: 2.8rem;
    color: #007BFF;    /* Default icon color - Primary blue */
    margin-bottom: 15px;
    line-height: 1;
}
/* If you need different icon colors for different sections, use more specific selectors or modifiers */
/* Example: #global-presence .card-icon { color: #28a745; } */

.card-title {
    font-size: 1.5rem; /* Was h3 before, can be h3 or h4 tag with this class */
    color: #003366; /* Deep Navy Blue */
    margin-bottom: 15px;
    font-weight: 600; /* Or 700 */
}

.card-text {
    font-size: 1rem; /* Default paragraph text inside card */
    color: #4A4A4A;
    line-height: 1.7;
    flex-grow: 1; /* Allows text to fill space if cards are equal height */
}
.card-text p { /* If p tags are used inside card-text div */
    margin-bottom: 0.8rem;
}
.card-text p:last-child {
    margin-bottom: 0;
}


/* Styled List (Reusable for Core Values, feature lists etc.) */
.styled-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.styled-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    color: #4A4A4A; /* Text color for list items */
}

.styled-list .list-icon { /* Class for icons within list items */
    color: #00A99D; /* Teal accent for checkmarks or bullet icons */
    margin-right: 10px;
    margin-top: 4px; /* Adjust vertical alignment */
    font-size: 1.1em; /* Size of the list icon */
}

/* Subpage Hero (Ensure this is distinct from homepage hero) */
.subpage-hero {
    height: 40vh; /* Or your desired height */
    min-height: 280px;
    /* ... other subpage hero styles you defined ... */
}
.page-main-title { /* Assuming this is for subpage H1s */
    font-size: 3rem;
    /* ... other styles ... */
}

/* Ensure your base h3, h4 styles from the original CSS are still appropriate
   or use the .card-title class on h3/h4 tags within cards. */
h3 { /* General h3, if not using .card-title */
    font-size: 1.7rem; /* Example */
    color: #003366;
    margin-bottom: 1rem;
}

/* Review and remove redundant specific styles like:
   #about .about-grid, #about .about-item, #about .about-icon,
   #mission-vision-values .about-grid, #mission-vision-values .about-item, ...
   #platform-features, .platform-feature-item, .feature-icon,
   .locations-grid, .location-item
   ...if their styling is now covered by .content-grid, .card-item, .card-icon etc.
   You might keep ID-specific selectors if there are truly unique styles for only that section.
*/


/* stylesinfo.css - Additions/Refinements for Platform Page */

/* Sub-section Title (if needed for better hierarchy than just another h2.section-title) */
.subsection-title {
    font-size: 2rem; /* Or similar */
    color: #003366; /* Deep Navy Blue */
    margin-top: 60px; /* Space above subsection */
    margin-bottom: 30px;
    text-align: center; /* Or left */
    font-weight: 600;
    /* Optional: a more subtle underline or border */
    /* border-bottom: 2px solid #00A99D; */
    /* padding-bottom: 10px; */
    /* display: inline-block; */
}


/* CTA Link style (for "Learn More" type links within cards/content) */
.cta-link {
    display: inline-block;
    margin-top: 15px;
    color: #007BFF; /* Primary link color */
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.cta-link i.fas { /* For arrow icon */
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.cta-link:hover {
    color: #0056b3; /* Darker blue */
    text-decoration: underline;
}

.cta-link:hover i.fas {
    transform: translateX(3px);
}

/* Card Item Modifier (Example - if you want a border accent on hover for some cards) */
.card-item.accent-hover {
    border-left: 4px solid transparent; /* Initial transparent border */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease; /* Add border-left-color to transition */
}
.card-item.accent-hover:hover {
    border-left-color: #00A99D; /* Teal accent on hover */
}


/* Table Styling for Technical Profile */
.table-container {
    overflow-x: auto; /* For responsiveness on small screens */
    margin-top: 30px;
    margin-bottom: 30px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tech-specs-table {
    width: 100%;
    border-collapse: collapse; /* Clean look */
    background-color: #FFFFFF;
}

.tech-specs-table th,
.tech-specs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef; /* Light border for rows */
    font-size: 0.95rem;
}

.tech-specs-table thead th {
    background-color: #f8f9fa; /* Very light gray for header */
    color: #003366; /* Navy for header text */
    font-weight: 600;
    border-bottom-width: 2px;
    border-bottom-color: #00A99D; /* Teal accent under header */
}

.tech-specs-table tbody tr:nth-child(even) {
    background-color: #fdfdfd; /* Subtle striping for readability */
}

.tech-specs-table tbody tr:hover {
    background-color: #f1f8ff; /* Light blue hover for rows */
}

.tech-specs-table td:first-child { /* First column (Attribute) */
    font-weight: 500;
    color: #343a40; /* Darker gray for attribute names */
    width: 40%; /* Give attribute column a decent width */
}

/* Ensure .styled-list .list-icon and other generic classes are well-defined */
/* Example from previous response, ensure it's in your main CSS */
.styled-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.styled-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    color: #000;
}

.styled-list .list-icon {
    color: #666;
    margin-right: 10px;
    margin-top: 4px;
    font-size: 1.1em;
}

/* For lists inside cards, ensure text aligns left if card is centered */
.card-item.text-center .styled-list {
    text-align: left;
}
.card-item.text-center .styled-list li {
    justify-content: flex-start; /* If needed, but flex on li itself usually handles it */
}

/* For the large-text differentiator list */
.styled-list.large-text li {
    font-size: 1.05rem; /* Slightly larger list items */
    margin-bottom: 12px;
}
.styled-list.large-text .list-icon {
    font-size: 1.2em;
    margin-top: 3px;
}
.styled-list.large-text strong { /* For making parts of the list item bold */
    font-weight: 600;
    color: #003366;
}



/* stylesinfo.css - Additions for Deployment Page */
 

/* Card Item Modifier for Deployment Page (Example) */
.card-item.light-accent-border {
    border: 1px solid #e0e5eb; /* Lighter border than a full shadow */
    /* box-shadow: none; /* Optionally remove default card shadow if using border */
}
.card-item.light-accent-border .card-title {
    font-size: 1.25rem; /* Slightly smaller card titles for these lists */
    margin-bottom: 12px;
}

/* Ensure card icons are styled if not globally done */
.card-item .card-icon { /* If used inside .card-item and not .deployment-header */
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 10px;
    display: none;
    /* text-align: left; /* if card is not text-center */
}
/* Ensure .styled-list and .list-icon are defined as per previous examples */

/* Additional text styles if needed */
.prose-block.large-text p {
    font-size: 1.1rem; /* Ensure this is defined */
}
 

/* Ensure main CTA button is styled */
.cta-button {
    /* Styles should already exist from welcome.html */
}

/* stylesinfo.css - Additions for Validation Page */

/* Card Item Modifiers for Validation Page */
.card-item.location-highlight .card-icon {
    color: #00A99D; /* Teal for location icons, or another distinct color */
}
.card-item.location-highlight {
    /* Add any specific styling for location cards, e.g., a subtle border color */
    /* border-left: 4px solid #00A99D; */
}

.card-item.use-case-card .card-icon {
    color: #003366; /* Navy for use case icons */
}
.use-case-card .impact-metric {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #4A4A4A;
}
.use-case-card .highlight-metric {
    font-weight: 700;
    color: #007BFF; /* Primary blue for metric highlights */
}


/* Publication List Styling */
.publication-list {
    margin-top: 30px;
}
.publication-list li {
    align-items: flex-start; /* Align icon with the start of the text block */
    margin-bottom: 20px; /* More space between publications */
}
.publication-list .list-icon {
    font-size: 1.3em; /* Slightly larger book icon */
    margin-top: 5px;
    color: #5a6f82; /* Muted icon color */
}
.publication-list li div { /* Wrapper for title and DOI */
    flex: 1;
}
.publication-list li strong {
    display: block;
    font-size: 1.1rem;
    color: #003366; /* Navy for publication title */
    margin-bottom: 5px;
}
.publication-list .publication-doi {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
}


/* Testimonial Card Styling */
.testimonial-card {
    background-color: #f8f9fa; /* Slightly different background for testimonials if on a white section */
    border-left: 5px solid #00A99D; /* Teal accent */
    padding: 25px;
}
.testimonial-quote {
    font-style: italic;
    color: #4A4A4A;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    padding-left: 35px; /* Space for quote icon */
}
.testimonial-quote .quote-icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.8rem;
    color: #00A99D; /* Teal */
    opacity: 0.7;
}
.testimonial-author {
    text-align: right;
}
.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #5a6f82;
}
.testimonial-author p strong {
    color: #003366; /* Navy */
    font-weight: 600;
    display: block;
    font-size: 1rem;
}


/* Ensure other generic classes are well-defined:
   .prose-block, .content-grid, .card-item, .card-icon, .card-title, .card-text,
   .styled-list, .list-icon, .cta-button, .subpage-hero, .page-main-title, etc.
   Refer to previous responses for their definitions if needed.
*/

/* Example: Ensure .prose-block.large-text is defined */
.prose-block.large-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* stylesinfo.css - Additions for Solutions Page */
 
/* Styling for feature cards within solution sections */
 

.card-item.feature-highlight .card-title {
    font-size: 1.25rem; /* Or your preferred size for these sub-features */
    margin-bottom: 10px;
    display: flex; /* Align icon and title text */
    align-items: center;
}
.card-item.feature-highlight .card-title .list-icon { /* If icon is part of title */
    font-size: 1.1em; /* Adjust icon size relative to title */
    margin-right: 10px;
    color: #007BFF; /* Consistent icon color or vary */
    margin-top: 0; /* Reset margin-top from .styled-list .list-icon */
    display: none;
}

.card-item.feature-highlight .card-text {
    font-size: 0.95rem;
}

/* Ensure other generic classes like .prose-block, .content-grid, .card-item,
   .styled-list, .list-icon, .cta-button are well-defined. */

/* Adjust padding for subpage hero if needed */
.subpage-hero {
    height: 40vh;
    min-height: 280px;
}

/* stylesinfo.css - Additions for Investors Page */

/* Investor Page Specific Hero - ensure it's distinct if you used a specific BG */
#investors #page-top.subpage-hero { /* More specific selector if needed */
    /* Styles for the investor hero if different, e.g., specific background */
}

/* Modifier for .card-item if using accent-hover from platform.html */
.card-item.accent-hover {
    /* Styles should exist if defined for platform.html */
}
.card-item.accent-hover .styled-list li {
    font-size: 0.95rem; /* Slightly smaller for denser info in cards */
}

/* Alternative Subsection Title Style */
.subsection-title-alt {
    font-size: 1.8rem; /* Slightly smaller than main section titles */
    color: #003366;
    font-weight: 600;
    margin-top: 40px; /* Space above */
    margin-bottom: 20px;
    text-align: center;
}

/* Highlighted Card for CTA or Key Info */
.card-item.cta-card-highlight {
    background-color: #e6f7ff; /* Light blue highlight */
    border-left: 5px solid #007BFF; /* Primary blue accent */
}
.card-item.cta-card-highlight .card-icon {
    color: #007BFF;
}
.card-item.cta-card-highlight .card-title {
    color: #003366;
}

/* Prominent Email Link */
.email-link-prominent {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f0f4f8; /* Light background for the link block */
    border: 1px solid #ced4da;
    border-radius: 6px;
    color: #003366; /* Navy text */
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.email-link-prominent:hover {
    background-color: #003366; /* Navy background on hover */
    color: #FFFFFF; /* White text on hover */
    text-decoration: none;
}
.email-link-prominent i.fas {
    margin-right: 10px;
}


/* Styling for the #whats-next dark section */
#whats-next.section-alt { /* Ensure this overrides default .section-alt if needed */
    background-color: #003366; /* Deep Navy Blue */
    color: #f0f0f0; /* Light text */
}
#whats-next .section-title,
#whats-next .subsection-title-alt { /* If you use it here */
    color: #FFFFFF;
}
#whats-next .section-title::after { /* Line under section title */
 
}
#whats-next .section-subtitle {
    color: #d0d0d0; /* Lighter subtitle text */
}
#whats-next .prose-block p, #whats-next .prose-block {
    color: #e0e0e0; /* Main text on dark section */
}


/* Ensure other generic classes (.prose-block, .content-grid, etc.) are robustly defined */

/* stylesinfo.css - Additions for Careers Page */

/* Specific hero for careers page if desired */
#careers #page-top.subpage-hero {
    /* e.g., background-image: url('your-team-image.jpg'); */
}

/* Styling for Job Openings Section */
.job-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.job-category {
    background-color: #FFFFFF; /* Or #f8f9fa if on a white section */
    padding: 25px;
    border-radius: 8px;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */ /* Lighter shadow for these */
    border: 1px solid #e0e5eb;
}

.job-category .category-title {
    font-size: 1.4rem;
    color: #003366;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.job-category .category-title i.fas {
    margin-right: 12px;
    color: #007BFF; /* Primary blue or category-specific color */
    font-size: 1.3em;
    display: none;
}

.job-list {
    list-style: none;
    padding-left: 0;
}

.job-list li {
    padding: 8px 0 8px 25px; /* Indent for a pseudo-element bullet */
    position: relative;
    color: #4A4A4A;
    font-size: 1rem;
    border-bottom: 1px dashed #e0e5eb;
}
.job-list li:last-child {
    border-bottom: none;
}
.job-list li::before {
    content: "\f105"; /* Font Awesome angle-right or another bullet */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #00A99D; /* Teal accent */
    position: absolute;
    left: 0;
    top: 9px;
}


/* What We Offer Section (Dark Background) */
#what-we-offer.section { /* Ensure styles for dark section text/titles are applied */
    background-color: #003366;
    color: #f0f0f0;
}
#what-we-offer .section-title,
#what-we-offer .section-subtitle {
    color: #FFFFFF;
}
#what-we-offer .section-title::after {
 
}
#what-we-offer .card-item.benefits-card { /* Specific styling for benefits cards */
    background-color: rgba(255, 255, 255, 0.05); /* Very subtle dark card bg */
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #e0e0e0;
}
#what-we-offer .benefits-card .card-icon {
    color: #82EEFD; /* Light sky blue for icons on dark */
    font-size: 2.5rem;
}
#what-we-offer .benefits-card .card-title {
    color: #FFFFFF;
    font-size: 1.2rem;
}
#what-we-offer .benefits-card .card-text {
    color: #c0d0e0; /* Lighter text for descriptions */
    font-size: 0.9rem;
}


/* How to Apply - Interview Process List */
.process-list {
    list-style: none;
    padding-left: 0;
    max-width: 600px; /* Or your desired width */
    margin: 20px auto 0 auto;
    text-align: left;
}
.process-list li {
    padding: 10px 0 10px 40px;
    position: relative;
    font-size: 1.05rem;
    border-bottom: 1px solid #eee;
}
.process-list li:last-child {
    border-bottom: none;
}
.process-step-number {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #00A99D; /* Teal */
    color: white;
    font-weight: bold;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Prominent Email Link (ensure defined from investors.html or define here if specific style needed) */
.email-link-prominent {
    /* Styles should exist */
}

/* Make sure .subsection-title-alt is defined for headings like "Our Interview Process" */
.subsection-title-alt {
    font-size: 1.8rem;
    color: #003366;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center; /* Or left as needed */
}

/* Italic quote styling */
#how-to-apply .subsection-title-alt em, /* If you wrap the quote in <em> */
#how-to-apply .prose-block h3 em {
    font-family: Georgia, 'Times New Roman', Times, serif; /* Or a nice serif font */
    color: #5a6f82;
    display: block; /* Make it block to handle line breaks */
}

/* stylesinfo.css - Additions for Contact Page */

/* Contact Methods Grid */
.contact-methods-grid .card-item.contact-method-card {
    /* background-color: #fdfdfd; */ /* If on a white section-alt */
    border: 1px solid #e0e5eb; /* Subtle border */
    padding-top: 30px;
    padding-bottom: 30px;
}
.contact-methods-grid .card-icon {
    color: #007BFF; /* Primary blue for these icons */
    font-size: 2.5rem;
    display: none;
}
.contact-methods-grid .card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.contact-methods-grid .card-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 50px; /* Ensure cards have some consistent text height */
}

/* Outline Button Style */
.cta-button-outline {
    display: inline-block;
    padding: 10px 20px;
    color: #003366; /* Deep Navy Blue for text */
 
    border-radius: 6px; /* Or your site's standard border-radius, e.g., 30px for consistency with .cta-button */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.cta-button-outline:hover {
    background-color: #eee; /* Deep Navy Blue fill on hover */
    color:#003366; /* White text on hover */
    border-color: #ddd; /* Ensure border color remains consistent or becomes part of fill */
    text-decoration: none;
}
.cta-button-outline i.fas {
    margin-right: 8px;
}

/* Standalone Contact Form Container (if different from 2-col in welcome.html) */
.contact-form-container-standalone {
    max-width: 750px; /* Or your preferred width */
    margin: 0 auto;
    background-color: #343A40; /* Ensure it matches section-dark if not inherited */
    padding: 30px; /* Padding if form is directly in section-dark */
    border-radius: 8px; /* If you want rounded corners for the form block */
}
/* If #contact-form-section itself has padding, you might not need padding on container */

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #f8f9fa; /* Light label text on dark background */
    font-size: 0.9rem;
    text-align: left;
}

/* Grid for form fields */
.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column */
    gap: 20px;
    margin-bottom: 20px;
}
@media (min-width: 768px) { /* 2 columns for wider screens */
    .contact-form .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-group.full-width {
        grid-column: 1 / -1; /* Make subject and message span full width */
    }
}
/* Styles for .form-group, input, textarea should be reused from welcome.html's #contact section */
/* Ensure they work well on the .section-dark background */
#contact-form-section .contact-form input[type="text"],
#contact-form-section .contact-form input[type="email"],
#contact-form-section .contact-form textarea {
    background-color: #495057;
    color: #f8f9fa;
    border: 1px solid #555;
}
#contact-form-section .contact-form input[type="text"]:focus,
#contact-form-section .contact-form input[type="email"]:focus,
#contact-form-section .contact-form textarea:focus {
    border-color: #00A99D; /* Teal focus */
    box-shadow: 0 0 0 0.2rem rgba(0, 169, 157, 0.25);
}
#contact-form-section .contact-form .cta-button {
    background-color: #00A99D;
}
#contact-form-section .form-status { /* Ensure form status is visible on dark */
    color: #adb5bd; /* Light gray for initial status */
}
#contact-form-section .form-status.success { /* If you add a success class */
    color: #28A745;
}
#contact-form-section .form-status.error { /* If you add an error class */
    color: #DC3545;
}


/* Office Locations Section */
.card-item.location-card {
    text-align: left;
    /* border: 1px solid #e0e5eb; */ /* Optional border */
}
.card-item.location-card .card-title {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.card-item.location-card .card-title .list-icon { /* Re-using .list-icon for icon in title */
    font-size: 1.2em; /* Adjust as needed */
    color: #003366; /* Navy */
    margin-right: 10px;
    display: none;
}
.card-item.location-card address {
    font-style: normal;
    line-height: 1.7;
    margin: 6px 32px 12px;
}
.card-item.location-card p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.contact-detail-icon { /* For icons next to phone/hours */
    margin-right: 10px;
    color: #007BFF; /* Primary blue */
    width: 20px; /* Ensure alignment */
    text-align: center;
}
.card-item.location-card a {
    color: #007BFF;
}
.card-item.location-card a:hover {
    color: #0056b3;
}

/* Ensure .section-dark from welcome.html is applied correctly */
.section-dark {
    background-color: #343A40;
    color: #f8f9fa;
}
.section-dark .section-title {
    color: #FFFFFF;
}
.section-dark .section-title::after {
 
}
.section-dark .section-subtitle {
    color: #adb5bd;
}


#about .about-item, .orange-item{
    text-align: left;
}

.fa-3x{
    display: none;
}



 .impact-icon,
.feature-icon, .sadi-m-icon, .about-icon{
    display: none;
}


.sadi-m-item ul li {

    list-style: none;
  }



  #about .about-item, .orange-item {
    text-align: center;
    padding: 20px;
    background-color:#FFF1D9;
    border-radius: 10px;
}

 .orange-item{
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border-left: 5px solid transparent; /* For hover effect */
}

 .orange-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #B68C40; /* Teal accent on hover */
}

 
.orange-item h3 {
    font-size: 1.5rem;
    color: #2D3E50;
    margin-bottom: 10px;
}

.blue-item {
    
    background: #EAFFF4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border-left: 5px solid transparent; /* For hover effect */
}

 .blue-item{
    background:#e1f4fd;
}

 .green-item{
    background:#EAFFF4;
}

 .blue-item p{
    color: #000;
}
 .blue-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #00A99D; /* Teal accent on hover */
}

 
 
 
.silver-item {
    background-color: #eee;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
 
}


.card-item .list-icon{
    display: none;

}
#platform-roadmap .card-icon{
    display: none;
}

 
/* stylesinfo.css */

/* ... your existing styles ... */

/* Hero Section (Ensure position: relative is here for absolute positioning of children) */
.hero {
    /* ... your existing hero styles (background image can be a fallback) ... */
    /* background: linear-gradient(rgba(0, 51, 102, 0.75), rgba(0, 31, 61, 0.85)), url('your-fallback-image.jpg') no-repeat center center/cover; */
    position: relative; /* CRUCIAL for positioning the video and overlay */
    overflow: hidden; /* Prevents scrollbars if video slightly overflows */
}

/* Video Background Styling */
#hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This is key! Ensures video covers the area, cropping if necessary, maintaining aspect ratio */
    transform: translate(-50%, -50%);
    z-index: 0; /* Place video behind overlay and content */
    /* Optional: if you still want a slight color tint over the video but under the main .hero-overlay */
    /* filter: brightness(0.7); */
}

/* Hero Overlay (ensure it's on top of the video but below content) */
#herovideo .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 31, 61, 0.75); /* Adjust your overlay color and opacity */
    /* Or use the linear gradient from your original hero background if you want that effect over the video */
    /* background: linear-gradient(rgba(0, 51, 102, 0.75), rgba(0, 31, 61, 0.85)); */
    z-index: 1; /* Above video, below content */
}

/* Hero Content (ensure it's on top of the overlay) */
#herovideo .hero-content {
    position: relative; /* To be above overlay */
    z-index: 2; /* Above video and overlay */
    /* ... your existing .hero-content styles ... */
}

/* Ensure your existing .hero styles like height, display: flex, align-items still apply */
.herovideo {
    color: white;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 60px; /* Account for fixed navbar if it's part of hero height calculation */
}

/* stylesinfo.css - Additions for Simple Table in Cookies Policy */

.simple-table {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 25px;
    border-collapse: collapse;
    font-size: 0.9rem;
    border: 1px solid #dee2e6;
}

.simple-table th,
.simple-table td {
    text-align: left;
    padding: 10px 12px;
    border: 1px solid #e0e5eb;
}

.simple-table thead th {
    background-color: #f8f9fa; /* Light gray header */
    color: #003366; /* Navy text */
    font-weight: 600;
}

.simple-table tbody tr:nth-child(even) {
    background-color: #fdfdfd; /* Subtle striping */
}

@media (max-width: 768px) {
    #hero-video-bg {
        display: none; /* Hide video on small screens */
    }
    .herovideo {
        /* Ensure your fallback background image is set here if video is hidden */
        background: linear-gradient(rgba(0, 51, 102, 0.75), rgba(0, 31, 61, 0.85)), url('../static/images/your-fallback-hero-image.jpg') no-repeat center center/cover;
    }
}