html {
    scroll-behavior: smooth;
}
body {
    background-color: #123047;
    color: #F57C00;
    font-family: Arial, sans-serif;
    margin: 0;
}

button {
    background-color: #F57C00;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}
nav a {
    color: white;
    text-decoration: none;
}
nav {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 40px;
}

nav h3 {
    margin: 0 auto 0 0;
    color: #F57C00;
}

.hero {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 40px;
}

.hero-text {
    width: 55%;
}

.hero-image {
    width: 45%;
    height: 350px;
    background-color: #081621;
    border: 2px solid #F57C00;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

nav h1 {
    font-size: 60px;
    color: white;
    margin: 0 auto 0 0;
}

.hero p {
    font-size: 20px;
    color: #A9B4BE;
}

.hero h2 {
    font-size: 36px;
    color: #F57C00;
}
.hero-image {
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.primary-button {
    background-color: #F57C00;
    color: white;
}

.secondary-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}
.primary-button,
.secondary-button {
    cursor: pointer;
    transition: 0.3s;
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-3px);
}
.how-it-works {
    background-color: #081621;
    padding: 70px 40px;
    text-align: center;
}

.how-it-works > h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 10px;
}

.how-it-works > p {
    color: #A9B4BE;
    font-size: 18px;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    gap: 25px;
}

.step {
    flex: 1;
    background-color: #123047;
    border-top: 4px solid #F57C00;
    border-radius: 10px;
    padding: 30px 20px;
}

.step h3 {
    color: #F57C00;
}

.step p {
    color: #A9B4BE;
}
@media (max-width: 768px) {

    nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }

    nav h1 {
        font-size: 40px;
    }

    .hero {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-text,
    .hero-image {
        width: 100%;
    }

    .hero-image {
        height: 250px;
    }

    .hero h2 {
        font-size: 30px;
    }

    .steps {
        flex-direction: column;
    }

    .how-it-works {
        padding: 50px 20px;
    }
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.brand img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background-color: white;
    padding: 6px;
    border-radius: 10px;
    box-sizing: border-box;
}

.brand h1 {
    margin: 0;
}
.product-section {
    background-color: #f5f7fa;
    text-align: center;
    padding: 80px 20px;
}

.product-section h2 {
    color: #12344d;
    font-size: 36px;
    margin-bottom: 20px;
}

.product-section p {
    color: #5f6b76;
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}
.product-card {
    background-color: white;
    flex: 1;
width: auto;
max-width: none;
height: 100px;
    margin: 40px 0 0;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
    color: #ff7a00;
    font-size: 24px;
    margin-bottom: 15px;
}

.product-card p {
    font-size: 18px;
    color: #5f6b76;
}
.product-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
/* Product section styled like How It Works */
.product-section {
    background-color: #12344d;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 80px 20px;
}

.product-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.product-section > p {
    color: #d6dee5;
    font-size: 20px;
    line-height: 1.6;
}

.product-card {
    background-color: white;
    border-top: 5px solid #ff7a00;
}

.product-card h3 {
    color: #12344d;
    font-size: 24px;
}

.product-card p {
    color: #5f6b76;
    font-size: 18px;
    line-height: 1.6;
}
/* Make Product match How It Works */
.product-section {
    background-color: #071924;
}

.product-card {
    background-color: #153b54;
    border-top: 4px solid #ff7a00;
}

.product-card h3 {
    color: #ff7a00;
    font-size: 20px;
}

.product-card p {
    color: #cbd5df;
    font-size: 16px;
}
.how-it-works .step {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works .step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    }
  .solutions-section {
    background-color: #071924;
    text-align: center;
    padding: 80px 20px;
}

.solutions-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.solutions-section > p {
    color: #cbd5df;
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}  
.solution-card {
    background-color: #153b54;
    flex: 1;
width: auto;
max-width: none;
    min-height: 100px;
    margin: 40px 0 0;
    padding: 30px;
    border-top: 4px solid #ff7a00;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.solution-card h3 {
    color: #ff7a00;
    font-size: 20px;
    margin-bottom: 15px;
}

.solution-card p {
    color: #cbd5df;
    font-size: 16px;
    line-height: 1.6;
}
.solution-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.solution-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.resources-section {
    background-color: #071924;
    text-align: center;
    padding: 80px 20px;
}

.resources-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.resources-section > p {
    color: #cbd5df;
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}
.resource-card {
    background-color: #153b54;
    flex: 1;
width: auto;
max-width: none;
    min-height: 100px;
    margin: 40px 0 0;
    padding: 30px;
    border-top: 4px solid #ff7a00;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
    color: #ff7a00;
    font-size: 20px;
    margin-bottom: 15px;
}

.resource-card p {
    color: #cbd5df;
    font-size: 16px;
    line-height: 1.6;
}
.resource-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.resource-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.pricing-section {
    background-color: #071924;
    text-align: center;
    padding: 80px 20px;
}

.pricing-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.pricing-section > p {
    color: #cbd5df;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #153b54;
    flex: 1;
    padding: 30px;
    min-height: 100px;
    border-top: 4px solid #ff7a00;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card h3 {
    color: #ff7a00;
    font-size: 20px;
    margin-bottom: 15px;
}

.pricing-card p {
    color: #cbd5df;
    font-size: 16px;
    line-height: 1.6;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.contact-section {
    background-color: #071924;
    text-align: center;
    padding: 80px 20px;
}

.contact-section h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-section > p {
    color: #cbd5df;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
}
.contact-form {
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    display: block;
    color: white;
    font-size: 16px;
    margin: 20px 0 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #49677c;
    border-radius: 8px;
    background-color: #153b54;
    color: white;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aebdca;
}

.contact-form button {
    background-color: #ff7a00;
    color: white;
    border: none;
    padding: 14px 28px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #e66e00;
}
.footer {
    background-color: #04121b;
    color: #cbd5df;
    text-align: center;
    padding: 25px 20px;
    font-size: 14px;
}

.footer p {
    margin: 0;
}
html {
    scroll-behavior: smooth;
}
/* Make the main sections more compact */
.product-section,
.solutions-section,
.how-it-works,
.resources-section,
.pricing-section,
.contact-section {
    height: auto;
    min-height: auto;
    padding: 45px 20px;
}
.product-cards,
.solution-cards,
.resource-cards,
.pricing-cards {
    margin-top: 30px;
}

.product-card,
.solution-card,
.resource-card {
    margin-top: 0;
}
/* Keep the top hero area large */
.hero {
    min-height: 650px !important;
    padding: 50px 60px 70px !important;
}

.hero h1 {
    font-size: 56px;
}

.hero-image img {
    width: 100%;
    max-width: 780px;
}

/* Make the remaining sections compact */
.product-section,
.solutions-section,
.how-it-works,
.resources-section,
.pricing-section,
.contact-section {
    height: auto !important;
    min-height: 0 !important;
    padding: 28px 20px !important;
}

/* Smaller section headings */
.product-section h2,
.solutions-section h2,
.how-it-works h2,
.resources-section h2,
.pricing-section h2,
.contact-section h2 {
    font-size: 28px !important;
    margin: 0 0 8px !important;
}

/* Smaller descriptions */
.product-section > p,
.solutions-section > p,
.how-it-works > p,
.resources-section > p,
.pricing-section > p,
.contact-section > p {
    font-size: 16px !important;
    line-height: 1.4 !important;
    margin: 0 auto 18px !important;
}

/* Reduce space above cards */
.product-cards,
.solution-cards,
.steps,
.resource-cards,
.pricing-cards {
    margin-top: 18px !important;
    gap: 20px !important;
}

/* Make cards shorter */
.product-card,
.solution-card,
.how-it-works .step,
.resource-card,
.pricing-card {
    height: auto !important;
    min-height: 90px !important;
    margin-top: 0 !important;
    padding: 16px !important;
}

/* Smaller card text */
.product-card h3,
.solution-card h3,
.how-it-works .step h3,
.resource-card h3,
.pricing-card h3 {
    font-size: 18px !important;
    margin: 0 0 8px !important;
}

.product-card p,
.solution-card p,
.how-it-works .step p,
.resource-card p,
.pricing-card p {
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}
.get-started {
  padding: 50px 10%;
  text-align: center;
  background-color: #f4f6f8;
}

.user-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.user-option-card {
  width: 320px;
  padding: 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.user-option-card h3 {
  color: #0b1f3a;
  margin-bottom: 15px;
}

.user-option-card p {
  color: #555;
  margin-bottom: 20px;
}

.user-option-card button {
  padding: 12px 20px;
  color: white;
  background-color: #f58220;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.user-option-card button:hover {
  background-color: #d96b0d;
}
.registration-section {
  padding: 50px 10%;
  text-align: center;
  background-color: white;
}

.registration-form {
  max-width: 500px;
  margin: 30px auto 0;
  padding: 30px;
  text-align: left;
  background-color: #f4f6f8;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.registration-form label {
  display: block;
  margin: 15px 0 6px;
  color: #0b1f3a;
  font-weight: bold;
}

.registration-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.registration-form input:focus {
  border-color: #f58220;
  outline: none;
}

.registration-form button {
  width: 100%;
  margin-top: 22px;
  padding: 13px;
  color: white;
  background-color: #f58220;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.registration-form button:hover {
  background-color: #d96b0d;
}
.option-button {
  display: inline-block;
  padding: 12px 20px;
  color: white;
  background-color: #f58220;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
}

.option-button:hover {
  background-color: #d96b0d;
}
.get-started {
  padding: 40px 6%;
  text-align: center;
  background-color: #071827;
}

.get-started h2 {
  color: white;
  margin-bottom: 10px;
}

.get-started .section-introduction {
  color: #c7d0d9;
}

.user-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
}

.user-option-card {
  width: 320px;
  padding: 25px;
  background-color: #163950;
  border-top: 5px solid #f58220;
  border-radius: 12px;
  box-shadow: none;
}

.user-option-card h3 {
  color: #f58220;
  margin-bottom: 12px;
}

.user-option-card p {
  color: #c7d0d9;
  margin-bottom: 20px;
}
.registration-section {
  padding: 40px 6%;
  text-align: center;
  background-color: #071827;
}

.registration-section h2 {
  color: white;
  margin-bottom: 10px;
}

.registration-section .section-introduction {
  color: #c7d0d9;
}

.registration-form {
  max-width: 500px;
  margin: 25px auto 0;
  padding: 25px;
  text-align: left;
  background-color: #163950;
  border-top: 5px solid #f58220;
  border-radius: 12px;
  box-shadow: none;
}

.registration-form label {
  display: block;
  margin: 12px 0 6px;
  color: white;
  font-weight: bold;
}

.registration-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid #aab5be;
  border-radius: 6px;
  box-sizing: border-box;
}

.registration-form input:focus {
  border-color: #f58220;
  outline: none;
}

.registration-form button {
  width: 100%;
  margin-top: 20px;
  padding: 13px;
  color: white;
  background-color: #f58220;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.registration-form button:hover {
  background-color: #d96b0d;
}
.registration-form textarea {
  width: 100%;
  min-height: 120px;
  padding: 12px;
  border: 1px solid #aab5be;
  border-radius: 6px;
  box-sizing: border-box;
  resize: vertical;
  font-family: Arial, sans-serif;
}

.registration-form textarea:focus {
  border-color: #f58220;
  outline: none;
}
.available-projects {
  padding: 40px 6%;
  text-align: center;
  background-color: #071827;
}

.available-projects h2 {
  color: white;
  margin-bottom: 10px;
}

.available-projects .section-introduction {
  color: #c7d0d9;
}

.project-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 25px auto 0;
}

.project-card {
  width: 320px;
  flex-shrink: 0;
box-sizing: border-box;
  padding: 25px;
  text-align: left;
  background-color: #163950;
  border-top: 5px solid #f58220;
  border-radius: 12px;
}

.project-card h3 {
  color: #f58220;
  margin-bottom: 15px;
}

.project-card p {
  color: #c7d0d9;
  margin-bottom: 12px;
}

.project-card strong {
  color: white;
}

.project-card button {
  margin-top: 10px;
  padding: 12px 20px;
  color: white;
  background-color: #f58220;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.project-card button:hover {
  background-color: #d96b0d;
}
.upload-container input[type="file"] {
  display: block;
  width: 100%;
  margin-bottom: 12px;
}
.admin-panel {
  padding: 40px 6%;
  text-align: center;
  background-color: #071827;
}

.admin-panel h2 {
  color: white;
  margin-bottom: 10px;
}

.admin-panel .section-introduction {
  color: #c7d0d9;
}

.admin-options {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}

.admin-card {
  width: 280px;
  padding: 25px;
  background-color: #163950;
  border-top: 5px solid #f58220;
  border-radius: 12px;
}

.admin-card h3 {
  color: #f58220;
  margin-bottom: 12px;
}

.admin-card p {
  color: #c7d0d9;
  margin-bottom: 20px;
}

.admin-card button {
  padding: 12px 20px;
  color: white;
  background-color: #f58220;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.admin-card button:hover {
  background-color: #d96b0d;
}
#manage-interests-button {
  margin-top: 14px;
}
.application-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.application-actions button {
  flex: 1;
}
.project-card .delete-button {
  background-color: #c0392b;
}

.project-card .delete-button:hover {
  background-color: #a93226;
}
#project-details,
#project-documents {
  width: 480px;
  max-width: calc(100% - 40px);
  margin: 25px auto 0;
}
.project-search {
  display: block;
  width: 90%;
  max-width: 700px;
  margin: 30px auto;
  padding: 14px 18px;
  border: 2px solid #ff7a00;
  border-radius: 8px;
  background-color: white;
  color: #12344d;
  font-size: 18px;
}

.project-search:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(255, 122, 0, 0.6);
}
.status-badge {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #ff7a00;
  border-radius: 20px;
  background-color: rgba(255, 122, 0, 0.15);
  color: #ff9a3d;
  font-weight: bold;
}
nav .contact-btn {
  border: 2px solid #ff7a00;
  padding: 10px 16px;
  border-radius: 6px;
}

nav .app-btn {
  background-color: #ff7a00;
  color: white;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
}

nav .contact-btn:hover {
  background-color: #ff7a00;
  color: white;
}

nav .app-btn:hover {
  background-color: #e66d00;
}