.faq-button {
    padding: 10px 20px;
   /* background-color: #007BFF;*/
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
}

.faq-button:hover {
    background-color: #0056b3;
}

/* Style for the image gallery */
.image-gallery {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
}

.image-item {
    flex: 1;
    padding: 10px;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* FAQ Section Styling */
.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    background-color: #f1f1f1;
    border: none;
    padding: 10px;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 10px;
    background-color: #e9ecef;
}

.faq-question:hover {
    background-color: #dcdcdc;
}

/* Display FAQ answer when clicked */
.faq-question.active + .faq-answer {
    display: block;
}

/* Styling for the register and login buttons */

.header-buttons {
    position: absolute;
   bottom : 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.register-button {
   /* background-color: green;*/
    color:black;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size:20px;
   /* font-weight: bold;*/
}
.login-button{
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size:20px;
}
.register-button:hover, .login-button:hover {
    background-color: darkgreen;
}

/* Register Button */
.register-button {
    text-decoration: none;
    color: #fff;
   /* background-color: #007BFF;*/
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 20px;
    margin-left: 20px;
}

.register-button:hover {
    background-color: #0056b3;
    transition: background-color 0.3s;
}

/* Registration Form */
.registration-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.registration-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.registration-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.registration-form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.registration-form button {
    width: 100%;
    padding: 12px;
    background-color: #2a9d8f;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.registration-form button:hover {
    background-color: #2a9d8f ;
}

/* Landing Page */
.landing-page {
    text-align: center;
    padding: 50px;
}

.landing-page h1 {
    font-size: 3rem;
    color: #2a9d8f;
}

.landing-page p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.role-selection button {
    background-color: #2a9d8f;
    color: white;
    padding: 15px 25px;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    margin: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.role-selection button:hover {
    background-color: #264653;
}

/* Company Auth Page */
.company-auth {
    width: 100%;
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.company-auth h2 {
    font-size: 2rem;
    color: #2a9d8f;
    margin-bottom: 20px;
}

.company-auth form {
    margin-top: 20px;
}

.company-auth label {
    font-size: 1rem;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.company-auth input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.company-auth button {
    background-color: #2a9d8f;
    color: white;
    padding: 15px 25px;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.company-auth button:hover {
    background-color: #264653;
}

.company-auth p {
    margin-top: 10px;
    font-size: 1rem;
}

.company-auth a {
    color: #2a9d8f;
    text-decoration: none;
}
html {
    scroll-behavior: auto; /* No global smooth scroll */
}
.company-auth a:hover {
    text-decoration: underline;
}

* {
    margin: 1 px;
    padding: 0;
    box-sizing: border-box;
}
p{
    font-size: 1rem;
    font-weight: 400;
    color: #021412;
    margin-bottom: 1 px;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
    padding-top: 100px; /* Adjusted for fixed header */
}

/* Header Section */
/*header {
    background: linear-gradient(to right, #2a9d8f, #264653);
    color: white;
    padding: 50px 40px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header .header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15 px;
    flex-wrap: wrap;
}


header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-top: 10px;
    letter-spacing: 1px;
    color: #f5fbfa;
    align-content:center;
}
//
header p {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.8;
    margin-top:50px;
    align-content:center;
*/
/* Main Content */
header {
    background: linear-gradient(to right, #2a9d8f, #264653);
    color: white;
    padding: 30px 20px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header .header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}



header h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-top: 10px;
    letter-spacing: 1px;
    color: #f5fbfa;
}
header h4{
    font-weight:500;
    color: #f5fbfa;
    margin-top:15px;
}


/* Making sure only the headings are bold */
h1, h2, h3 {
    font-weight: bold;
}
main {
    padding: 40px;
    margin-top: 120px; /* Adjusted for fixed header */
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
main pre{
    color:#021412;
    font-family: 'Arial', sans-serif;
}
.study-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
    background-color: #ffffff;
}

.study-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 75%;
    max-width: 850px;
    transition: all 0.3s ease-in-out;
}

.step-icon-container {
    flex-shrink: 0;
    
}

.step-icon {
    width: 70px;
    height: 70px;
}

.step-content {
    flex-grow: 1;
   
}
.study-step:hover{
        transform: translateY(-10px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    
}

h3 {
    font-size: 1.75em;
    color: #000000;
    margin-bottom: 5px;
    font-weight: bold;
}

p {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}
/* Patient Benefits Section */
.patient-benefits {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.patient-benefits h2 {
    color: #333;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.patient-benefits p {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.benefits-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.benefit-item {
    text-align: center;
    flex: 1;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.benefit-item p {
    margin-top: 10px;
    color: #333;
    font-size: 1.1rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

/* Responsive image below benefits */
.responsive-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
}
.image-container {
    display: flex;
    justify-content: center; /* Align images in the center */
    gap: 20px; /* Add spacing between images */
    margin-top: 20px;
}

.image-container img {
    width: 30%; /* Make images equal in size */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: Add rounded corners */
}

/* CTA Button */
.cta-button {
    background-color: #2a9d8f;
    color: white;
    padding: 15px 25px;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background-color: #264653;
}

/* Links Section */
.links {
    margin-top: 20px;
    text-align: center;
}

.links a {
    display: inline-block;
    font-size: 1.1rem;
    color: #2a9d8f;
    text-decoration: none;
    margin: 10px;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #264653;
}

/* FAQ Section */
/* FAQ Section */
.faq {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    
}

.faq h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2a9d8f;
    margin-bottom: 20px;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background-color: #264653;
    color: white;
    font-size: 1.2rem;
    padding: 15px;
    border: none;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #2a9d8f;
}

.faq-answer {
    display: none;
    font-size: 1rem;
    margin-top: 10px;
    color: #555;
    padding-left: 15px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    background-color: #2a9d8f;  /* Change color when active */
}

.faq-item .faq-question::after {
    content: '\002B';  /* Adds a plus sign */
    font-size: 1.5rem;
    color: white;
    margin-left: 10px;
}

.faq-item.active .faq-question::after {
    content: '\2212';  /* Adds a minus sign when active */
}

/* Footer Section 
footer {
    background-color: #264653;
  
    padding: 20px;
    text-align: center;
    font-size: 1rem;
    margin-top: 40px;
}

footer p {  color: #e9ecef;
    opacity: 0.8;
}*/
/footer2/
footer {
    padding: 10px;
    background-color: rgba(20, 20, 20, 0.85); /* Darker but still slightly translucent */
    color: white;
    width: 100%;
    text-align: center;
    font-size: 12px;
    position: relative;
    bottom: 0;
    left: 0;
}

/* Footer Links - Smaller & More Organized */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.footer-links a {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50; /* Green hover effect */
}

/* Copyright Text */
footer p {
    margin: 5px 0;
    font-size: 12px;
    color: #bbb;
}
.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.login-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 350px;
}

.login-container h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: bold;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

.input-group input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.cta-button {
    background: linear-gradient(to right, #2a9d8f, #264653);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.cta-button:hover {
    background: linear-gradient(to right, #264653, #2a9d8f);
}

.footer-text {
    margin-top: 15px;
    font-size: 0.9rem;
    
}

.footer-text a {
    color: #2a9d8f;
    font-weight: bold;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}
.submit-btn {
   
    color: #dcdcdc; /* Text color */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none; /* Remove link styling */
    display: inline-block;
}

.submit-btn:hover {
    background-color: #21867a; /* Darker shade on hover */
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Main Content - Pushes Footer Down */
.landing-page, .about-us {
    flex: 1;
}

/* Compact Footer */