/* css/style.css */
/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00796b;
    padding: 15px 25px;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #cceae7;
  }
  
  .menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    nav ul {
      display: none;
      flex-direction: column;
      background-color: #00796b;
      position: absolute;
      top: 65px;
      right: 25px;
      width: 180px;
      padding: 10px;
      border-radius: 5px;
    }
  
    nav ul.show {
      display: flex;
    }
  
    nav ul li {
        margin-bottom: 10px;
      }
    
      nav ul li:last-child {
        margin-bottom: 0;
      }
    }
/* Hero Section */
#hero {
    padding: 100px 20px;
    color: white;
    text-align: center;
  }
  #hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
  }
  #hero .cta-button {
    background-color: #00796b;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
  }
  
  #hero .cta-button:hover {
    background-color: #004d40;
  }
  
  /* Startups Section */
  #startups, #investors, #breakthroughs {
    padding: 60px 20px;
    text-align: center;
  }
  #startups .container, #investors .container, #breakthroughs .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #startups .container .text, #investors .container .text, #breakthroughs .container .text {
    flex: 1;
    max-width: 45%;
    padding: 20px;
  }
  #startups .container .image, #investors .container .image, #breakthroughs .container .image {
    flex: 1;
    max-width: 45%;
  }
  #startups img, #investors img, #breakthroughs img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    #startups .container, #investors .container, #breakthroughs .container {
      flex-direction: column;
    }
    #startups .container .text, #investors .container .text, #breakthroughs .container .text,
    #startups .container .image, #investors .container .image, #breakthroughs .container .image {
      max-width: 100%;
    }
  }
      
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
  }
  
  .site-header {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 1rem 0;
  }
  
  .login-container {
    max-width: 400px;
    margin: 40px auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .login-container h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .login-container input,
  .login-container select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .login-container button {
    width: 100%;
    padding: 12px;
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .login-container button:hover {
    background-color: #1b5e20;
  }
  
  .login-container a {
    color: #2e7d32;
    text-decoration: none;
  }
  
  footer {
    text-align: center;
    padding: 1rem;
    background: #eee;
    position: relative;
    bottom: 0;
    width: 100%;
  }
  
/* css/style.css */

/* Global */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
  }
  
  a {
    text-decoration: none;
    color: #2e7d32;
  }
  
  a:hover {
    color: #1e88e5;
  }
  
  /* Header */
  .site-header {
    background-color: #2e7d32;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
  }
  
  .site-header h1 {
    margin: 0;
    font-size: 1.8rem;
  }
  
  /* Navigation */
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
  }
  
  nav ul li {
    display: inline-block;
  }
  
  nav ul li a,
  nav ul li button {
    color: white;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  nav ul li button:hover,
  nav ul li a:hover {
    color: #c8e6c9;
  }

/* BLOG PAGE STYLES */
/* GENERAL STYLES */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
  }
  
  /* NAVBAR */
  header {
    background-color: #2e7d32;
    padding: 1rem;
    color: white;
    font-size: 1.2rem;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  
 
  /* ========================================
   SUBMIT IDEA PAGE - PROFESSIONAL STYLE
======================================== */
.submit-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
  }
  
  .submit-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #004d40;
    font-size: 26px;
  }
  
  .submit-form label {
    display: block;
    font-weight: 600;
    margin-top: 20px;
    color: #333;
  }
  
  .submit-form input[type="text"],
  .submit-form input[type="file"],
  .submit-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-top: 8px;
    font-size: 16px;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
  }
  
  .submit-form input[type="file"] {
    background-color: #fff;
    cursor: pointer;
  }
  
  .submit-form input:focus,
  .submit-form textarea:focus {
    outline: none;
    border-color: #00796b;
  }
  
  .submit-form textarea {
    height: 150px;
    resize: vertical;
  }
  
  .submit-form button {
    margin-top: 30px;
    background-color: #00796b;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
  }
  
  .submit-form button:hover {
    background-color: #004d40;
  }
  
  /* Responsive layout */
  @media (max-width: 768px) {
    .submit-container {
      padding: 25px;
      margin: 60px 15px;
    }
  
    .submit-form button {
      font-size: 15px;
      padding: 12px;
    }
  }
  
    
  
  /* FOOTER */
  footer {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
  }
  
    
  /* FOOTER */
  footer {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
  }
    


  .contact-container {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
    min-height: 100vh;
  }
  
  .contact-card {
    background-color: white;
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 600px;
  }
  
  .contact-card h2 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    color: #2e7d32;
  }
  
  .contact-card p {
    margin-bottom: 1.5rem;
    color: #555;
  }
  
  .contact-form .input-group {
    margin-bottom: 1.5rem;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 0.3rem;
    color: #333;
    font-weight: 500;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
  }
  
  .contact-form .btn-primary {
    background-color: #2e7d32;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form .btn-primary:hover {
    background-color: #1b5e20;
  }

  

  .services-section {
    padding: 3rem 1.5rem;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2e7d32;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: auto;
  }
  
  .service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-icon {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: #222;
  }
  
  .service-card p {
    color: #555;
    font-size: 0.95rem;
  }
  /* About Page Section */
.about-section {
    padding: 60px 20px;
    background-color: #ffffff;
    color: #333;
  }
  
  .about-content {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .about-content h2 {
    font-size: 2.5em;
    font-weight: bold;
    color: #010c0b;
    margin-bottom: 10px;
  }
  
  .about-content p {
    font-size: 1.2em;
    color: #0f0e0e;
  }
  
  /* Team Section */
  .team-title {
    font-size: 2em;
    text-align: center;
    margin-top: 40px;
    font-weight: bold;
    color: #000706;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
  }
  
  .team-member {
    background-color: #0c7403;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(3, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .team-member:hover {
    transform: scale(1.05);
  }
  
  .team-member h4 {
    font-size: 1.5em;
    color: #000807;
    margin-bottom: 10px;
  }
  
  .team-member p {
    font-size: 1.1em;
    color: #050000;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header nav ul {
      display: none;
    }
  
    header button.menu-toggle {
      display: inline-block;
      background: none;
      border: none;
      color: white;
      font-size: 2em;
    }
  
    .team-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .team-title {
      font-size: 2em;
    }
  
    footer {
      position: relative;
    }
  
    .team-member {
      padding: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .team-grid {
      grid-template-columns: 1fr;
    }
  }
  
      
  
  /* Logout Button */
  .logout-btn {
    background-color: #ffffff;
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .logout-btn:hover {
    background-color: #c8e6c9;
    color: #1b5e20;
  }
  
  /* Responsive Nav */
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: white;
    background: none;
    border: none;
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    nav ul {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      right: 0;
      background-color: #2e7d32;
      width: 100%;
      z-index: 1000;
    }
  
    nav ul.show {
      display: flex;
    }
  
    nav ul li {
      padding: 10px;
      border-bottom: 1px solid #ffffff33;
    }
  }
  
  /* Main Content */
  main {
    padding: 2rem;
    text-align: center;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1rem;
    background: #eee;
    margin-top: 2rem;
  }
  