/* style.css - For your EXTERNAL pages */

body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Keep a fallback background color */
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    min-height: 100vh;
   
}

/* --- Header --- */
header.site-header { /*Use class*/
    text-align: center;
    width: 100%;  /* Ensure it spans the full width */
    background-image: url('/images/InterconnectNodal.jpg'); /*  YOUR HEADER IMAGE */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white; /*  Set text color for contrast */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay - adjust */
    margin-bottom: 0px; /* Add margin to separate from card */
}

.logo-container {
    margin-bottom: 10px; /* Space below logo */
}

.logo-container img {
    max-width: 100%;
    height: auto;
}

/* Hide the h1 text - best practice for logo images with text */
.logo-container h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
#tagline{
	font-style: italic;
	font-weight: bold;
	color: white;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
	 text-align: center;
}

h2 {
    font-size: 1.8em;
    margin-top: 1em;
    margin-bottom: 0.5em;
	 text-align: center;
}
h3{
	 text-align: center;
}

/* --- Main Content Container ("Card") --- */
.card-container {
    width: 80%;
    max-width: 960px;

    margin: 20px auto;
    padding: 30px;
    background-color: white;  /*Keep White*/
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* --- Sections --- */
.section {
    margin-bottom: 30px;
}

/* --- Buttons --- */
.button {
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1em;
    transition: background-color: 0.3s ease;
	 text-align: center;
}

.button:hover {
    background-color: #0056b3;
}

/* --- Niche Sections --- */
.niche-section {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
	 text-align: center;
}

/* --- FAQ Section --- */
.faq-section {
    border-top: 2px solid #ddd;
    padding-top: 5px;
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 5px;
}

.faq-answer {
    display: none;
    margin-left: 20px;
    margin-bottom: 10px;
}
/* --- MICT Cycle Image/Text Container --- */

.mict-cycle-container {
	display: flex;
	flex-direction: row;  /*Image on the left*/
	align-items: center;
	gap: 20px;
}
.mict-cycle-image img {
	max-width: 300px; /* Or whatever size you want */
	height: auto;
	flex-shrink: 0; /* Prevent the image from shrinking */
}
/* Center the button within the order form section */
#order-form p {
   text-align: center;
}

/* --- Menu Styles (Flexbox) --- */

/* Main Menu Container */
nav.main-menu {
    width: 100%;
    background-color: #333;
    position: relative; /* Needed for absolute positioning of hamburger */
}

/* Top-Level Unordered List */
nav.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap; /* Allow menu items to wrap on smaller screens */
	position: relative; /* Important for dropdown positioning */
}

/* Top-Level List Items */
nav.main-menu ul li {
    margin: 0 15px; /* Adjust spacing as needed */
    position: relative; /* Important for dropdown positioning */
}

/* Top-Level Links */
nav.main-menu ul li a {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    transition: background-color: 0.3s ease;
	 border-right: 1px solid #555;
}
nav.main-menu ul li a:last-child{
    border-right: none;
}

nav.main-menu ul li a:hover {
    background-color: #555;
}

/* --- Dropdown Styles --- */

nav.main-menu ul li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
	 padding: 0; /*Remove any padding*/
}

/* Show Dropdown on Hover */
nav.main-menu ul li:hover > ul.sub-menu {
    display: block;
}

/* Dropdown List Items */
nav.main-menu ul li ul.sub-menu li {
	display: block;
   text-align: left; /* Left-align text */
	border-bottom: 1px solid #555; /* Add a subtle border */
}
nav.main-menu ul li ul.sub-menu li:last-child{
	 border-bottom: none; /*Remove border on last item*/
}

/* Dropdown Links */
nav.main-menu ul li ul.sub-menu li a {
    padding: 12px 16px;
    white-space: nowrap; /* Prevent text wrapping */
}

/* --- Hamburger Menu Styles --- */

/* Hide the hamburger icon by default (for larger screens) */
.menu-toggle {
    display: none;
}

/* Styles for the hamburger icon */
.hamburger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: grey; /*  Change color to gray */
    margin: 5px 0;
    position: relative;
}

.menu-content{
    display: block;
}

/* Media Query for Smaller Screens (e.g., mobile) */
@media (max-width: 768px) { /* Adjust the breakpoint (768px) as needed */

	 /* Hide the regular menu items */
	  nav.main-menu ul {
		  display: none;
		  flex-direction: column; /* Stack menu items vertically */
		  text-align: left; /* Left-align text */
		  width: 100%; /* Full width */
	 }
	 /* Show the menu when it's active */
	 .main-menu .menu-content.active ul{
		  display: flex;

	 }

    /* Show the hamburger icon */
    .menu-toggle {
        display: block;
        cursor: pointer;
        padding: 10px 15px;
        position: relative;
        top: 10px;
        right: 10px;
		  z-index: 1001; /* Above other content*/
    }

    /* Style the menu when it's open (mobile) */
    nav.main-menu .menu-content {
        display: none; /* Hide initially */
        position: absolute;
        top:  60px; /* Adjust as needed */
        left: 0;
        width: 100%;
        background-color: #333;
        z-index: 1000;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    }
	 /* Show menu on active*/
 .main-menu .menu-content.active {
 display: block;
 }

    /* Style the menu items for mobile */
    nav.main-menu ul li {
        display: block; /* Stack items vertically */
		  border-bottom: 1px solid #555;
        margin: 0;
    }
	 nav.main-menu ul li:last-child{
		  border-bottom: none;
	 }

    nav.main-menu ul li a {
        padding: 12px 16px;
    }

    /* Style the sub menus to appear, uses same rules */
    nav.main-menu ul li ul.sub-menu {
		display: block;
		position: static;
		box-shadow: none;
		margin-left: 20px; /* Indent submenus */
	 }
	 /* Override li styles so they don't display hidden */
	 nav.main-menu ul li:hover > ul.sub-menu{
		display: block;
	 }

    /* Remove hover effect on mobile */
    nav.main-menu ul li a:hover {
        background-color: transparent; /*remove hover*/
    }

    /* Hamburger Icon Animation (Optional) */
    .menu-toggle.active .hamburger-icon:nth-child(1) {
        transform: translateY(8px) rotate(45deg); /* Top line */
    }

    .menu-toggle.active .hamburger-icon:nth-child(2) {
        opacity: 0; /* Middle line disappears */
    }

    .menu-toggle.active .hamburger-icon:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg); /* Bottom line */
    }
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
	 width: 100%;
    border-top: 1px solid #ddd;
    color: #666;
}
/* Pricing Table Styles */
.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.pricing-tier {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pricing-tier:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.tier-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #007bff;
}

.tier-price {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
	 text-align: left;
	 flex-grow: 1; /*  Make the feature list take up available space */
}

.tier-features li {
    margin-bottom: 8px;
    line-height: 1.4;
}
.tier-features li b{
	margin-bottom: 5px;
	display: inline-block;
}
.pricing-tier .button{
	 margin-top: auto; /* Push button to bottom */
}

/* Responsive adjustments for pricing tiers */
@media (min-width: 768px) {
    .pricing-tier {
        width: 45%; /* Two tiers per row on larger screens */
    }
}

@media (min-width: 992px) {
    .pricing-tier {
        width: 23%; /* Four tiers per row on even larger screens */
    }
}
.error {
    color: red;
    font-weight: bold;
    margin-top: 10px;
}
/* --- Zoho Form Iframe Styles --- */
#checkout-iframe {
    width: 100%; /* Make the iframe fill its container */
    border: none;  /* Remove any default iframe border */
    height: 100vh; /* Minimum height */
}
#zoho-form-iframe {
    width: 100%;
    border: none;
    height: 700px; /*  Adjust this value! */
}
/* Accordion Styles */
.accordion {
  width: 100%; /* Or set a specific width */
  margin-bottom: 20px; /* Add some space below */
}

.accordion-item {
  border: 1px solid #ddd; /* Subtle border */
  margin-bottom: 5px; /* Space between items */
}

.accordion-button {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: background-color 0.3s ease; /* Smooth transition */
  font-size: 1.1em; /* Slightly larger font */
  font-weight: bold; /* Make the button text bold */
}

.accordion-button:hover,
.accordion-button.active {
  background-color: #ccc;
}

/* Plus/Minus Icon (Optional, but good for visual cue) */
.accordion-button:after {
  content: '\002B'; /* Plus sign (+) */
  font-size: 1.2em;
  color: #777;
  float: right;
  margin-left: 5px;
}

.accordion-button.active:after {
  content: "\2212"; /* Minus sign (−) */
}


.accordion-content {
  padding: 0 18px;
  background-color: white;
  overflow: hidden; /* Crucial for animation */
  max-height: 0; /* Initially hidden */
  transition: max-height: 0.3s ease-out; /* Smooth transition for height */
}

.accordion-content p {
    margin-bottom: 10px; /* Add spacing between description and link */
}

.download-link {
    display: inline-block; /* Make link behave like a block */
    padding: 10px 15px;
    background-color: #0056b3; /* Example color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color: 0.3s ease;
}

.download-link:hover {
    background-color: #003366; /* Darker shade on hover */
}

/* --- Landing Page Specific Styles --- */
/* These styles are added, and do not conflict. */

.hero {
    text-align: center;
    padding: 40px 0;
    background-color: #e9f5ff; /* Light blue background */
    background-image: url('/images/actionplanlandinghero.jpg');
    color: white;
    
    
}

.hero img {
    max-width: 100%; /* Make sure image is responsive */
    height: auto;
    border-radius: 8px; /* Optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional: shadow */
    

}

.subheadline {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.problems, .solution {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.problems ul {
    list-style: none; /* Remove bullet points */
    padding: 0;
    
    
}
.problems li {
    margin-bottom: 10px;
    padding-left: 25px; /* Space for the icon */
    position: relative; /* For absolute positioning of the icon */
    
    
    
}

.problems li::before { /* "X" icon */
    content: '✗'; /* Unicode character for a cross/X */
    color: #d9534f; /* Red color */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    
}
  .solution-list ul {
		list-style: none;
		margin-left: 0;
		padding-left: 0;
		text-align:center;
  }
  .solution-list li::before { /* "✓" icon */
		content: '\2713';
    color: #5cb85c;
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
  }

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 0;
}

.feature {
    flex: 0 0 30%; /* Each feature takes up 30% of the container */
    margin-bottom: 20px;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

  .feature ul {
		list-style: none;
		margin-left: 0;
		padding-left: 0;
  }

  .feature li::before { /* "*" icon */
		content: '\2022';
    color: #0056b3;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }

.feature img {
    max-width: 100%; /* Make sure image fits within its container */
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
}


.cta {
    text-align: center;
    padding: 40px 0;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color: 0.3s ease;
}

.cta-button:hover {
    background-color: #003d82; /* Darker shade on hover */
}
 /* Placeholder Styles */
.placeholder {
    background-color: #ddd;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px dashed #999;
}

/*Mobius Theory Page*/
.mobius-diagram {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
        }
        .mobius-diagram img {
            max-width: 100%;  /* Ensure image is responsive */
            height: auto;
        }

        .example {
            background-color: #f0f8ff; /* Light blue background */
            border-left: 5px solid #0056b3;
            padding: 15px;
            margin: 1em 0;
        }
		  .example-title
		  {
		  	font-weight: bold;
		  }


        /* Responsive Design */
        @media (max-width: 600px) {
            body {
                margin: 10px;
            }

            /* --- Form Styles --- */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
	 background-color: white;
	 
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1em;
    padding-right: 30px;
}

input[type="submit"]{
		display: inline-block;
    padding: 10px 15px;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
	 cursor: pointer;
    transition: background-color: 0.3s ease;
}

.error {
    color: red;
    font-size: 0.9em;
    margin-top: -10px;
    margin-bottom: 10px;
}
/* --- Form Styles (Contact Form) --- */

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
	 background-color: white;
	 position: relative;
}

.contact-form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container textarea,
.contact-form-container select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form-container select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); /* Custom dropdown arrow */
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 1em;
	 padding-right: 30px; /* Space for custom arrow */
}

.contact-form-container .checkbox-group {
    margin-bottom: 15px;
}

.contact-form-container .checkbox-group div {
    margin-bottom: 5px;
}
.contact-form-container input[type="submit"]{
		display: inline-block;
    padding: 10px 15px;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
	 cursor: pointer;
    transition: background-color: 0.3s ease;
}
.contact-error {
    color: red;
    font-size: 0.9em;
    margin-top: -10px; /* Position error message closer to the field */
    margin-bottom: 10px;
}
#other-interest-text{
	margin-top: -10px;
}
}

.disclaimer { /* Style for the disclaimer text */
    font-size: 0.8em;
    color: #666;
    margin-top: 10px;
}

/* --- General Styles --- */
.investor-body {
    font-family: 'Arial', sans-serif; /* Professional font */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    max-width: 1100px; /* Wider container for more detailed content */
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.investor-h1, .investor-h2, .investor-h3, .investor-h4 {
    color: #0056b3;
}

.investor-h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    text-align: center;
}

.investor-h2 {
    font-size: 2em;
    margin-top: 1.5em;
    margin-bottom: 1em;
    border-bottom: 2px solid #0056b3; /* Underline headings */
    padding-bottom: 0.5em;
}

.investor-h3 {
    font-size: 1.5em;
    margin-top: 1.2em;
    margin-bottom: 0.8em;
}

.investor-p1 {
    margin-bottom: 1em;
    color: white;
}

.investor-ul {
    margin-bottom: 1em;
}

.investor-li {
    margin-bottom: 0.5em;
}

.investor-a {
    color: #0056b3;
    text-decoration: none;
}

.investor-a:hover {
    text-decoration: underline;
}

/* --- Specific Section Styles --- */

.investor-hero {
    text-align: center;
    padding: 50px 0;
    background-color: #e9f5ff; /* Light blue background */
}

.investor-hero img { /* Placeholder for a potential hero image */
    max-width: 100%;
    height: auto;
}

.investor-section {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.investor-section:last-child {
    border-bottom: none;
}

.investor-executive-summary {
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
}

.investor-team-member {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.investor-team-member h4 {
    margin-top: 0;
}

.investor-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color: 0.3s ease;
    border: none; /* Remove default border */
    cursor: pointer;
}

.investor-button:hover {
    background-color: #003d82;
}

.investor-confidentiality {
    text-align: center;
    font-size: 0.9em;
    color: #777;
    margin-top: 40px;
}

.investor-placeholder {
    background-color: #eee;
    padding: 20px;
    border: 1px dashed #999;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

/* --- Responsive Styles --- */

@media (max-width: 768px) {
    .investor-container {
        padding: 10px;
    }
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.6em;
    }
    h3 {
        font-size: 1.3em;
    }
    
	 .subheadline {
		  text-align: center;
		  color: white;
		  margin-bottom: 30px;
	 }
		  /* --- Roadmap Styles --- */
.roadmap {
    display: flex;
    flex-direction: column;
}

.roadmap-phase {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.roadmap-phase h3 {
    margin-top: 0;
    color: #0056b3;
}

.roadmap-phase p {
    margin-bottom: 10px;
}

.roadmap-phase ul {
    margin-bottom: 10px;
    padding-left: 20px;
}
	