/* General Styles */
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333333;
    background-color:    #405f7e;
}

/* Header Styles */
header {
    background-color: #405f7e; /* Vibrant orange tone */
    color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgb(255, 255, 255);
}

header .logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .logo {
    width: 50px; /* Logo width */
    height: 50px; /* Logo height */
    border-radius: 50%;
}

header h1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

header nav {
    display: flex;
    align-items: center;
}

header nav a {
    color: #ffffff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition:  0.3s;
}

header nav a:hover {
    color:  #2C3E50; /* Light orange hover */
}

/* Hero Section */
.hero{
text-align: center;
padding: 160px 20px;
background: 
    /* linear-gradient(to bottom, #ECF0F1, #e1ebed),  */
 url('Untitled\ Project.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
color: #355372; /* Soft gradient */
   
}
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #223951;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #072357;
}
.hero .cta-background { 
    position: relative; /* Required for positioning overlay and content */
    background: url('GROUP\ OF\ PEOPLE.jpeg') no-repeat center center;
    background-size: cover;
    height: 100vh; /* Adjust height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensure overlay covers the section */
}
.hero .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero .cta-buttons button {
    margin: 0 10px;
    padding: 15px 25px;
    border: none;
    background-color:#2c5c8b;
    color: rgb(255, 255, 255);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.2s;
}

.hero .cta-buttons button:hover {
    background-color: #16476a;
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 60px 20px;
    text-align: center;
    background-color: #98b4c7a1;
}

section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

section p {
    font-size: 1rem;
    color: #454343d3;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Features Section */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature {
    margin: 20px;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 280px;
    background: rgb(255, 255, 255);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.feature h3 {
    font-size: 1.2rem;
    color: #466587;
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
}

/* Footer */
footer {
    background-color: #333;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: #42b7ff81;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
/* Button Styling */
.feature-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #647a91; /* Blue color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.feature-btn:hover {
    background-color: #4b6175; /* Darker blue on hover */
    transform: scale(1.05); /* Slight zoom on hover */
}

.feature-btn:active {
    transform: scale(0.95); /* Slight shrink on click */
}
/* FAQ Section */
#faq {
    text-align: left; /* Aligns the section content */
    padding: 40px 20px;
    background-color: #ffffff; /* White box for the FAQ section */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for elevation */
    margin: 40px auto; /* Add spacing and center the section */
    max-width: 900px; /* Limit width to ensure content readability */
    background-color: #98b4c7a1;
}

#faq h2 {
    text-align: center; /* Center the FAQ title */
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
}

.faq-container {
    max-width: 800px; /* Optional: limit the width for better readability */
    margin: 0 auto; /* Center the FAQ container */
}

.faq-container .faq-item {
    border-bottom: 1px solid #ddd; /* Optional separator between FAQ items */
    padding: 10px 0;
}

.faq-container h3 {
    text-align: left; /* Left-align the questions */
    font-size: 1.2rem;
    color: #333;
    cursor: pointer; /* Pointer cursor to indicate interactivity */
    margin-bottom: 10px;
    display: flex; /* Flexbox to align icon and text */
    align-items: center;
    background-color: #98b4c7a1;
}

.faq-container h3 span {
    margin-right: 10px; /* Add spacing between arrow and question text */
    transform: rotate(0); /* Default arrow direction */
    transition: transform 0.3s ease; /* Smooth transition for arrow rotation */
}

.faq-container h3.active span {
    transform: rotate(90deg); /* Rotate arrow when active */
}1

.faq-container p {
    text-align: left; /* Left-align the answers */
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    display: none; /* Initially hide answers for collapsible effect */
}

.why-slideshow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.why-content {
width: 50%;
text-align: relative;
padding: 20px;
}
.slideshow {
    width: 50%;
    position: top;
}
.slideshow img {
    width: 500;
    height: 300;
    border-radius: 10px;
    display: none;
    position: top;
    top: 0; /* Aligns images to the top of their container */
}
.slideshow img.active {
    display: block;
}
.text-box {
    background-color: white; /* White background for the box */
    padding: 20px; /* Add some space around the text */
    border-radius: 10px; /* Rounded corners for the box */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    max-width: 80%; /* Adjust width to fit text */
    margin: 0 auto; /* Center the box */
    text-align: center; /* Center the text inside the box */
    font-size: 1.2rem; /* Adjust text size */
    color: #333; /* Dark color for the text */
}

.text-box p {
    margin: 0; /* Remove default margin */
    line-height: 1.6; /* Line spacing for readability */
}

.modal {
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}

/* Modal Content */
.modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

/* Input and Button Styling */
form label {
    display: block;
    margin: 10px 0 5px;
}

form input, form textarea {
    width: 100%;
    padding: 8px;
    margin: 5px 0 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049;
}

.why-slideshow {
    display: flex;
    justify-content: flex-end; /* Aligns the slideshow to the right */
}

/* .slideshow {
    display: flex;
    gap: 10px; /* Optional: Adds space between images */


    .faq-answer {
        display: none; /* Hide answers by default */
        overflow: hidden;
        max-height: 0; /* Initially set to 0 for a smooth transition */
        padding: 0 0 10px 0; /* Padding to apply when expanded */
        font-size: 0.8em;
        color: #555;
        transition: max-height 0.3s ease-out, padding 0.3s ease-out; /* Smooth transition */
    }
    
    .faq-question {
        cursor: pointer;
        margin: 10px 0;
        font-size: 1.0em;
        font-weight: bold;
    }
    
    .faq-item {
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
/* General section styles */
#impact {
    text-align: center;
    margin: 50px auto;
    padding: 50px 0; /* Add padding to avoid text overlapping the background */
    background-image: url('worldmapsatellite.jpg'); /* Replace with your image path */
    background-size: cover; /* Make sure the image covers the entire section */
    background-position: center; /* Center the background image */
    background-attachment: fixed; /* Make the background image fixed for a parallax effect */
    color: white; /* Ensure text is readable on the background */
}
#impact h2 {
    font-size: 36px; /* Adjusted font size for prominence */
    margin-bottom: 30px; /* Added spacing below the heading */
    color: white; /* Ensures the heading text is visible */
}
#impact p{
    font-size: 1rem;
    color: #ffffffd3;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Slideshow container */
.impact-slideshow-container {
    position: relative;
    max-width: 80%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    padding: 0; /* No extra padding */
    box-shadow: none; /* Remove shadow for a cleaner look */
}

/* Slideshow styles */
.impact-slideshow {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.impact-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.impact-slide h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.impact-slide p, .impact-slide ul {
    font-size: 18px;
    color: #ffffff;
}

.impact-slide ul {
    list-style: none;
    padding-left: 0;
}

.impact-slide ul li {
    margin-bottom: 10px;
}

/* Rating stars */
.rating .star {
    color: gold;
    font-size: 20px;
    margin: 0 2px;
}

/* Navigation buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    z-index: 1;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Chatbot Icon */
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Floating Chat Icon */
#open-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #007BFF;
    color: white;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#open-chat:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

/* Chat Container */
#chat-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 525px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none; /* Initially hidden */
    z-index: 1000;
}

/* Chat Header */
#chat-header {
    background-color: #007BFF;
    color: white;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #0056b3;
}

#chat-header span {
    cursor: pointer;
}

#chat-header span:hover {
    color: #ccc;
}

/* Chat History */
#chat-box {
    height: 400px;
    overflow-y: auto;
    padding: 15px;
    background-color: #f9f9f9;
}

#chat-history p {
    margin: 10px 0;
    padding: 8px 12px;
    border-radius: 10px;
    max-width: 75%;
    word-wrap: break-word;
}

#chat-history p strong {
    font-weight: bold;
}

#chat-history p:nth-child(odd) {
    background-color: #e1f5fe;
    color: #007BFF;
    align-self: flex-start;
}

#chat-history p:nth-child(even) {
    background-color: #d1d1d1;
    color: #333;
    align-self: flex-end;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.confirmation-container {
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.confirmation-container h1 {
    color: #4CAF50;
}

.job-recommendations {
    margin: 20px 0;
}

.job-recommendations ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.job-recommendations li {
    background: #f1f1f1;
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
    font-size: 16px;
}

button {
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #45a049;
}
