  /* General Styles */
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background-color: bisque;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; */
    /* height: 100vh; */
}
.body{
    background-color: bisque;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.background {
position: relative;
width: 100%;
height: 100vh;
background-color:darkslateblue; /* Dark blue color */
overflow: hidden;
}

.background::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 100%;
background-color: #8dc63f; 
/* Green color */
clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
}
.info-container {
    max-width: 900px;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.header {
    background-color: #BFECFF;
    padding: 10px;
    border-radius: 10px;
}

.header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.sub-header {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.info {
    background-color: #CDC1FF;
    margin: 15px 0;
    padding: 10px;
    font-size: 1.1rem;
}

.highlight {
    background-color: #212121;
    color: #ffeb3b;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

.companies {
    margin: 20px 0;
}

.companies h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.company-list {
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
}

.company {
    background-color: #FFF6E3;
    color: #212121;
    margin: 10px;
    padding: 15px;
    border-radius: 5px;
    width: 45%;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.company:hover {
    transform: scale(1.05);
}

.company h3 {
    margin: 0;
    font-size: 1.4rem;
}

.slots {
    font-size: 1rem;
    color: brown;
}

.cta {
    margin-top: 20px;
}

.cta button {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta button:hover {
    background-color: #b71c1c;
}

.footer {
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: left;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
}

.modal-close {
    background: #d32f2f;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.modal-close:hover {
    background: #b71c1c;
}


.countdown {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 30px;
    color: #d32f2f;
}


.faq-container {
    max-width: 900px;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.header {
    background-color: #BFECFF;
    padding: 10px;
    border-radius: 10px;
}

.header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.accordion {
    /* background-color: #FFCCEA; */
    /* padding: 20px;
    margin-top: 30px; */
    border-radius: 10px;
    width: 100%;
    /* text-align: left; */
}

.accordion h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.accordion-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
}

.accordion-item button {
    width: 100%;
    padding: 15px;
    text-align: left;
    background-color: #BFECFF;
    border: none;
    outline: none;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
}

.accordion-item button:hover {
    background-color: #b3d6ff;
}

.accordion-item .answer {
    padding: 10px;
    display: none;
    background-color: #FFF6E3;
    border-top: 1px solid #ddd;
}

/* Testimonials Section */
.testimonials {
border: 2px solid aliceblue;
border-radius: 100px;
width: 100%;
background-color:honeydew;
padding: 50px 0;
text-align: center;
margin-top: 30px;
animation: fadeInUp 1.5s ease-out;
}

.testimonials h2 {
font-size: 2.5rem;
margin-bottom: 30px;
color: #003366;
}

.testimonial-container {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

.testimonial-item {
background-color: #ffffff;
border: 1px solid #ddd;
padding: 20px;
width: 250px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out;
opacity: 0;
animation: fadeInUp 2s ease-out forwards;
}

.testimonial-item p {
font-size: 1rem;
color: #555;
margin-bottom: 15px;
}

.testimonial-item h4 {
font-size: 1.2rem;
font-weight: bold;
color: #003366;
}

.testimonial-item p:last-child {
font-size: 0.9rem;
color: #999;
}

/* Hover effect */
.testimonial-item:hover {
transform: translateY(-10px);
}

.testimonial-item:hover p {
color: #ff6600;
}

@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
/* Companies Tie-Up Section */
.companies-tieup {
width: 100%;
background-color: #f9f9f9;
padding: 50px 0;
text-align: center;
margin-top: 30px;
animation: fadeInUp 1.5s ease-out;
}

.companies-tieup h2 {
font-size: 2.5rem;
margin-bottom: 20px;
color: brown;
}

.companies-tieup p {
margin-left: 96px;
font-size: 1.6rem;
margin-bottom: 30px;
color: darkgoldenrod;
}

.companies-container {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

.company-item {
background-color: #ffffff;
/* padding: 20px; */
width: 200px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s ease-in-out;
opacity: 0;
animation: fadeInUp 2s ease-out forwards;
}

.company-item img {
width: 100px;
height: 100px;
object-fit: contain;
margin-bottom: 15px;
}

.company-item h4 {
font-size: 1.2rem;
font-weight: bold;
color: #003366;
margin-bottom: 5px;
}

.company-item p {
font-size: 1rem;
color: #777;
}

/* Hover effect */
.company-item:hover {
transform: translateY(-10px);
}

.company-item:hover h4 {
color: #ff6600;
}

@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
