body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: navy;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url('top_banner.png') no-repeat center center; /* Uses image as background */
    background-size: cover;
    color: white;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo img {
    height: 100px;
}

nav {
    flex-grow: 1;
    display: flex;
    justify-content: right; /* Moves links towards the right */
}

nav ul {
    list-style: none;
    margin-right: 100px;
    padding: 0;
    display: flex;
    text-transform: uppercase; /* Converts text to uppercase */
    font-size: 1em; /* Reduces font size (adjust as needed) */
}

nav ul li {
    margin: 0 15px; /* Reduces spacing between links */
}

nav ul li a {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #FF6A00; /* Deep Orange on hover */
}


button {
    background-color: #007acc;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
}

.button-like {
    /* Style the <a> tag to look like a button */
    display: inline-block; /* Or block if you want it to take full width */
    padding: 10px 20px;
    background-color: #007acc; /* Example color */
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

button:hover {
    background-color: orange;
}


section {
    padding: 0px 0px;
    max-width: 1200px;
    margin: auto;
}

#about {
  padding-top: 60px; /* Specific top padding for the top section */
  padding-bottom: 10px; /* Keep consistent bottom padding */
}


.section-divider {
    margin-top: 0;  /* Removes extra space above the divider */
    padding-top: 0; /* Ensures there's no unnecessary padding */
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text {
    flex: 1;
    padding: 20px;
}

.image {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Aligns the image to the right */
}

.image img {
    width: 400px;  /* Adjust width as needed */
    height: auto;  /* Keeps aspect ratio */
    margin-top: 40px; /* Moves the image down by 20px */
    border-radius: 10px;
}


.highlights {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.card {
    text-align: center;
    width: 21%;
    background: #e0ecf4; /* Faint blueish-grey */
    padding: 20px;
    border-radius: 10px;
    /*border: 3px solid #00aaff; /* Cool blue border */*/
    margin: 10px; /* Adds space between cards */
}

.card img {
    width: 80px;
    height: auto;
}


.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}

.dark-box-heading {
    order: -1;               /* Moves the heading to the top */
    margin: 0;
    background-color: #1e3a5f; /* Dark background color */
    color: #f4f4f4;           /* Font color same as page background */
    padding: 10px 20px;
    border-radius: 8px;
    /* display: inline-block;*/
    align-self: flex-start;  /* Aligns heading to the start */

}

.dark-box-end {
    order: -1;               /* Moves the heading to the top */
    margin: 0;
    background-color: #1e3a5f; /* Dark background color */
    color: #f4f4f4;           /* Font color same as page background */
    padding: 10px 20px;
    border-radius: 0px;
    text-align: center;      /* Centers the text */
}

/*.dark-box-heading {
    order: -1;               /* Moves the heading to the top */
    margin: 0;
    padding: 10px 30px;
    background-color: #104862;
    color: #f4f4f4;
    border-radius: 8px;
    align-self: flex-start;  /* Aligns heading to the start */
}*/

.text, .image {
    flex: 1;  /* Ensures both take equal space */
    padding: 20px;
}

.image img {
    flex: 1;
    display: flex;
    /*max-width: 100%;
    height: auto;
    display: block;*/
    justify-content: center;  /* Center horizontally */
    align-items: top;      /* Center vertically */
    border-radius: 10px;
}

/*.image img {
    flex: 1;
    display: flex;
    justify-content: center;  /* Center horizontally */
    align-items: center;      /* Center vertically */
    padding: 20px;
}*/

    .featured-courses {
        flex: 3;
        padding: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    .course-slider {
        position: relative;
        width: 100%;
        max-width: 800px;
        height: 600px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .courses-container {
        display: flex;
        flex-direction: column;
        background: #e0ecf4; /* Faint blueish-grey */
        overflow-y: auto;
        height: 490px;
        width: 100%;
        scrollbar-width: none;
        scroll-behavior: smooth;
    }

    .course {
        display: flex;
        flex-direction: column;
        
        align-items: center;
        text-align: left;
        padding: 15px;
        background: #f9f9f9;
        margin-bottom: 10px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .course img {
        width: 600px;
        height: 50px;
        margin-bottom: 10px;
    }

    .course h3 {
        font-size: 1.2em;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .scroll-btn {
        background: #1e3a5f;
        color: white;
        border: none;
        padding: 8px 12px;
        cursor: pointer;
        border-radius: 30%;
        margin: 5px 0;
    }
    
    .scroll-btn:hover {
        background: rgba(255, 106, 0, 0.8);
    }



#use-cases {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

#use-cases h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1e3a5f;
}

.use-case {
    background-color: #f4f4f4;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.use-case h3 {
    color: #1e3a5f;
    margin-bottom: 10px;
}

.use-case p {
    color: #333;
}


form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: auto;
}

label, input, textarea {
    margin-bottom: 10px;
}

button {
    background-color: #1e3a5f;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #345b8c;
}

.section-divider {
    display: flex;
    justify-content: center;
    margin: 30px 0; /* Adjust spacing as needed */
}

.section-divider img {
    max-width: 90%; /* Prevents it from being too large */
    height: auto;
}

.slideshow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.use-case-slide {
    display: none; /* Hide all slides by default */
    text-align: left;
    background: #e0ecf4; /* rgba(224, 236, 244, 0.2);*/
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Make the first slide visible by default */
.use-case-slide.active {
    display: block;
}

/* Arrow Buttons */
.prev, .next {
    background-color: #1e3a5f; /*rgba(0, 0, 128, 0.8);  Navy Blue */
    color: white;
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 30%;
}

.prev { left: -40px; }
.next { right: -40px; }

.prev:hover, .next:hover {
    background-color: rgba(255, 106, 0, 0.8); /* Deep Orange on hover */
}

#contact {
    /* Styles for the entire contact section */
}

#contact form label,
#contact form input,
#contact form textarea,
#contact form button {
    border-radius: 7px; /* Adjust this value for the desired roundness */
    padding: 8px; /* Add some padding for better appearance */
    margin-bottom: 10px; /* Add spacing between elements */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
    width: calc(100% - 16px); /* Make form elements take full width */
    border: 1px solid #ccc; /* Add a light border */
}

.hidden-field {
    display: none;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

#contact form textarea {
    height: 120px; /* Adjust height as needed */
}

/* Style the checkbox and label */
#contact form label[for="human-check"] {
    display: block; /* Make the label take up a full line */
    margin-bottom: 10px;
}

#contact form input[type="checkbox"] {
    margin-right: 5px; /* Add some space between checkbox and label */
    vertical-align: middle; /* Align checkbox with the middle of the label text */
    width: auto; /* Reset the width to auto */
}
.human-check-container {
    display: flex; /* Enable flexbox for the container */
    align-items: center; /* Vertically align items */
    margin-bottom: 10px; /* Add some space below */
}

.human-check-container input[type="checkbox"] {
    margin-right: 5px; /* Space between checkbox and text */
    vertical-align: middle;
    width: auto;
}
#contact form button {
  background-color: #4CAF50; /* Green */
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
}

#contact form button:hover {
    background-color: #45a049;
}


