body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .logo img {
    height: 40px;
}

header .search-bar input {
    width: 60%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

header .login-button button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.categories {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background-color: #fff;
    width: 100%;
    flex-wrap: wrap;
}

.categories button {
    margin: 5px;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    background-color: #eee;
    cursor: pointer;
}

.categories button:hover {
    background-color: #ddd;
}

.community-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.community-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-number {
    background-color: #007BFF;
    color: #fff;
    padding: 10px;
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.card-image img {
    width: 100%;
    height: auto;
}

.card-content {
    padding: 15px;
    text-align: center;
}

.card-content h2 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #333;
}

.card-content p {
    margin: 0 0 5px;
    color: #666;
}

/* Media Queries */
@media (max-width: 992px) {
    .community-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .community-section {
        grid-template-columns: 1fr;
    }
}

/* Career Js */
.tabs {
    overflow: hidden;
    background-color: #f1f1f1;
    padding: 0 10px;
}

.tab-link {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: background-color 0.3s;
    font-size: 17px;
}

.tab-link:hover {
    background-color: white;
    color:orange;
}

.tab-link.active {
    background-color: #ccc;
}

.tab-content {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}
#FullStack{
    background-color: white;
}
#SoftwareDev{
    background-color: white;
}
#TechManager{
    background-color: white;
}
h4{
    color:gray;
}
/*our students at work */

.alumni-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.companies-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.company {
    flex: 1 1 180px; /* Adjust the size based on your preference and available space */
    display: flex;
    justify-content: center;
    align-items: center;
}

.company img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.company img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}
.companies-grid{
    background-color: white;
}

/*eligibility */

.container2 {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.criteria, .suited-for {
    background: white;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 45%;
}

h2 {
    color: #333;
    border-left: 4px solid green;
    padding-left: 10px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    padding: 10px 0;
    align-items: center;
    display: flex;
}

li img {
    margin-right: 10px;
    width: 24px; /* Adjust size as needed */
}
/*application process */

.application-process {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    color: #333;
}

.steps {
    list-style: none;
    position: relative;
    padding: 0;
}

.steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: orange;
    transform: translateX(-50%);
}

.step {
    position: relative;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.step-content {
    display: inline-block;
    text-align: left;
    padding-left: 20px;
    background: #f9f9f9;
    border-left: 5px solid orange;
    margin: 10px 0;
}

h2, h3 {
    margin: 0;
    color: #555;
}

h3 {
    color: #666;
    margin-top: 5px;
}

p {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}

.step::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    width: 15px;
    height: 15px;
    background-color: orange;
    border-radius: 50%;
    transform: translateX(-50%);
}
/* email contact */

.contact-section {
    background-color: #fff;
    width: 80%;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

h1 {
    color: #333;
}

p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.email-contact p {
    font-size: 18px;
    margin: 20px 0;
    color: #007BFF; /* Bootstrap primary color for link simulation */
}

.email-contact a {
    color: #007BFF;
    text-decoration: none;
}

.email-contact a:hover, .email-contact a:active {
    text-decoration: underline;
}
/* the why section */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.benefits-section {
    text-align: center;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.benefits-section h1 {
    color: #333;
}

.benefits-section p {
    margin-bottom: 20px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.benefit {
    width: 30%;
    margin-bottom: 20px;
}

.benefit img {
    width: 50px; /* Adjust size based on actual icon dimensions */
    margin-bottom: 10px;
}

.benefit h2 {
    font-size: 16px;
    color: #666;
}

.contact-button {
    margin-top: 20px;
}

.buttonm {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
    text-decoration: none;
}

.button:hover {
    background-color: #0056b3;
}
/*the modal is displayed  */
/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/*  end of modal */
/*faq starting */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.faq-section {
    width: 80%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.faq-section h1 {
    text-align: left;
    color: #333;
    border-bottom: 3px solid #ccc;
    padding-bottom: 10px;
}

.accordion {
    background-color: #333;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.accordion:hover, .accordion:focus {
    background-color: #444;
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p {
    color: #666;
    padding: 18px 0;
}

/* end of faq */