/* styles.css */

/* Reset some default styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.header {
    background-color: #f4f4f4;
    color: #004E98;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    width: 150px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav a {
    color: #004E98;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 18px;
    transition: background 0.3s, transform 0.2s;
}

.nav a:hover {
    background: #FF9D00;
    border-radius: 5px;
    transform: scale(1.1);
}

.icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icons img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.community-call {
    background-color: #FF9D00;
    color: black;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
}

.hero {
    background: #004E98;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
}

.hero-text {
    width: 50%;
    text-align: left;
    padding-left: 40px;
}

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

.hero p {
    font-size: 20px;
    margin-top: 10px;
}

.cta-button {
    background-color: #FF9D00;
    color: black;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
    transition: transform 0.2s, background 0.3s;
}

.cta-button:hover {
    background-color: #e68900;
    transform: scale(1.05);
}

/* .hero-image {
    width: 50%;
    display: flex;
    justify-content: center;
} */
.hero-image {
  width: 90%; /* Set the width of the hero section */
  max-width: 900px; /* Prevent it from becoming too large on wide screens */
  margin: 40px auto; /* Center the hero section on the page */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
  border-radius: 8px; /* Optional: round the corners */
  overflow: hidden; /* Ensures the iframe corners are also rounded */
}

.hero-image img {
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.features {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: column;
    padding: 50px 200px 40px 100px;
    background: white;

}

.feature-box {
    background: white;
    padding: 20px;
    margin: 15px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    transition: transform 0.2s;
}

.feature-box:hover,
.env-box:hover,
.step-box:hover {
    transform: scale(1.05);
}

.feature-heading {
    color: #FF9D00;
    font-weight: bold;
    text-align: center;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.feature:nth-child(even) {
    flex-direction: row-reverse;
}

.feature img {
    width: 40%;
    max-width: 400px;
    border-radius: 5px;
}

.feature .img-large {
    width: 70%;           /* A larger percentage */
    max-width: 650px;     /* A larger maximum width */
}

.feature-text {
    width: 50%;
    padding: 20px;
}

.feature-text h2 {
    color: #004E98;
    font-size: 24px;
}

.feature-text p {
    font-size: 18px;
    margin-top: 0%;
    color: #333;
}

.environment {

    display: flex;
    margin-bottom: 40px;
    margin-top: 40px;
    padding-top: 40px;
    justify-content: center;
    padding-bottom: 40px;
    gap: 20px;
    margin: 20px 0;
    padding: 40px 0;
}

.getting-started {
    background-color: #004E98;
    display: flex;
    margin-top: 40px;
    padding-top: 40px;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    padding: 40px 0;
    text-align: center;
    border-radius: 12px;

}

.getting-started-wrapper {
    background-color: #004E98;
    margin-top: 40px;
    padding-top: 40px;
    justify-content: center;
    margin: 20px 0;
    padding: 40px 0;
    text-align: center;
    border-radius: 12px;
    color: white;

}

.env-wrapper {
    margin-top: 40px;
    padding-top: 40px;
    justify-content: center;
    margin: 20px 0;
    padding: 40px 0;
    text-align: center;
    border-radius: 12px;
    color: black;
}

.env-box {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    text-align: center;
}

.env-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    display: block;
}

.step-box {
    background-color: #FF9D00;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.env-box:hover,
.step-box:hover {
    transform: scale(1.1);
    background-color: #3a6EA5;
}

.screenshot img {
    width: 60%;
    border-radius: 10px;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

/* Footer Container */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px 40px;
    background-color: white;
    border-top: 1px solid #E0E0E0;
    font-family: sans-serif;
    color: #1A1A1A;
}

.footer a {
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    font-size: small;
    font-family: Arial, sans-serif;
}

/* Left Section - Logo & Copyright */
.footer-left {
    max-width: 500px;
    flex: 1;
    font-size: 9px;
    color: #757575;
}

.footer-left img {
    width: 50px;
    height: 60px;
    margin-bottom: 10px;
}

/* Center Section - Navigation Links */
.footer-center {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer-center ul {
    list-style: none;
    padding: 0;

    margin: 0;
}

.footer-center li {
    margin-bottom: 6px;

}

.footer-center a {
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 800;
    font-size: small;
    font-family: Arial, sans-serif;
}

.footer-center ul li a:hover {
    text-decoration: underline;
}

.gap {
    padding-top: 60px;
}

/* Right Section - Contact & Social Icons */
.footer-right {
    text-align: right;
    flex: 1;
}

.footer-right a {
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 800;
    display: block;
    margin-bottom: 6px;
    font-size: small;
    font-family: Arial, sans-serif;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    justify-content: flex-end;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.kruize-footer {
    width: 10px;
    height: 100px
}

/* Divider Line */
.footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #E0E0E0;
    margin-bottom: 20px;
}