@import "./utilities.css";

:root {
    --font-serif: "Georgia", "Times New Roman", serif;
    --font-san-serif: "Poppins", "Segoe UI", sans-serif;
    --site-primary-color: #2b579a;
    --dash-color: #d9534f;
    --site-secondary-color: #f0ad4e;
    --icon-color: #343a40;
    --site-primary-accent-color: #27ae60;
    --site-secondary-accent-color: #f0f8ff;
    --nav-height: 5.25rem;
    --Home-carousel-height: calc(100svh - var(--nav-height));
    --darker-background: #eef2f7;
    --white-text-color: #ffffff;
    --hover-bg-color: rgba(43, 87, 154, 0.1);
}

* {
    padding: 0;
    margin: 0;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
}

*::-webkit-scrollbar {
    width: 0.3vw;
    background-color: #f5f5f5;
}

*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #555;
}

html {
    box-sizing: border-box;
}

body {
    font-family: var(--font-san-serif);
    overflow-x: hidden;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Layout */
header {
    position: fixed;
    padding: 0;
    top: 0;
    background-color: #fff;
    width: 100%;
    height: var(--nav-height);
    font-size: 1.2rem;
    box-shadow: rgb(119, 119, 119) 0px 5px 6px -6px;
    z-index: 100;
    font-family: var(--font-san-serif);
}

.navbar-brand img {
    height: calc(var(--nav-height) + 0rem);
}

.nav-item {
    display: grid;
    place-items: center;
    margin-left: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    position: relative;
}

.nav-link.hover-underline {
    color: var(--site-primary-color);
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.nav-link.hover-underline:hover {
    color: var(--site-primary-accent-color);
}

.nav-link.nav-link.hover-underline::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: var(--site-primary-color);
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.nav-link.hover-underline:hover::after {
    width: 100%;
}

/* Button Styles */
.nav-link .btn {
    font-weight: bold;
    padding: 0.5rem 1.2rem;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    border-radius: 1.5rem;
    color: var(--white-text-color);
}

.btn-sign-up {
    background-color: var(--site-secondary-color);
}

.btn-log-in {
    background-color: var(--site-primary-accent-color);
}

.btn-sign-up:hover {
    background-color: var(--site-primary-color);
}

.btn-log-in:hover {
    background-color: var(--site-primary-color);
}

main {
    margin-top: calc(var(--nav-height) + 2px);
}

/* footer section */
footer {
    /* margin: 1rem 0 0 0; */
    background-color: var(--site-secondary-accent-color);
    font-family: var(--font-san-serif);
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: self-start;
    margin: 0 5%;
    
}

.logo img {
    width: 100%;
}

.footer-wrapper div {
    width: max(300px, 20%);
    margin: 1rem auto;
}

.footer-title {
    margin: 0 auto;
    text-align: center;
}

.contact>ul {
    list-style: none;
    margin: 0;
}

.contact-group {
    min-height: 80%;
}

.contact-group>div {
    display: grid;
    grid-template-columns: 25px auto;
    margin: 0.5rem 0;
}

.contact-group>div>div {
    margin: 0.5rem 0;
    width: 100%;
    text-wrap: stable;
}

.contact-group a {
    text-decoration: none;
    color: inherit;
}

.footer-sister-org {
    display: grid;
    place-items: center;
}

.footer-sister-org img {
    height: 5rem;
    margin: 0.25rem;
    border-radius: 0.5rem;
}

.form_group {
    width: 100%;
}

.form_group form {
    width: 90%;
}

#simpleContactForm {
    width: 100%;
}

.form-control {
    width: 90%;
}

.form_group h4 {
    text-align: center;
}

/* Paginator */
/* Unused */
.page-nav {
    display: flex;
    justify-content: end;
    margin: 1rem;
}

/* Home page */
/* carousel section */
#IntroCarousel img {
    height: var(--Home-carousel-height);
    width: 100dvw;
    object-fit: cover;
}

.carousel-shade {
    position: absolute;
    background-color: #0000007e;
    height: var(--Home-carousel-height);
    width: 100%;
    z-index: 2;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.text-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.text-wrapper h1 {
    text-align: center;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.text-wrapper p {
    align-items: center;
    text-align: center;
    font-family: var(--font-san-serif);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #f5f5f5;
}

.home-section {
    margin: 0;
    padding: 4rem 0;
}

/* Introduction section */
.about-us {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem 0;
}

.about-us-content {
    flex: 1 1 60%;
    max-width: 60%;
}

.about-us-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: left;
}

.about-us-text {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
}

.about-us-img-container {
    flex: 1 1 35%;
    max-width: 35%;
    display: flex;
    align-items: stretch;
}

.about-us-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

/* stats section */
.stat-section {
    padding: 5rem 0;
    background-color: var(--darker-background);
    margin-bottom: 2rem;
}

.stat-content {
    display: flex;
    justify-content: space-evenly;
    background-color: var(--site-primary-color);
    color: #fff;
    padding: 10px;
    border-radius: 15px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    padding: 15px;
    margin: 10px;
    min-width: 20%;
    border-radius: 15px;
    transition: ease-in 1000ms forwards;
    font-family: var(--font-san-serif);
}

.stat-card>i,
.stat-card h2,
.stat-card p {
    align-self: center;
}

.stat-card i {
    transition: ease-in 1000ms forwards;
    font-size: max(50px, 3vw);
    padding: 5px;
}

.stat-card h2 {
    font-weight: bold;
    color: inherit;
}

.stat-card p {
    text-align: center;
    font-size: 1.3rem;
}

.stat-card:hover i {
    transform: translateY(-5px);
}


/* CEO and Advisor message section */
.small-message-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
}

.small-message-card {
    flex: 1;
    max-width: 250px;
    min-height: 120px;
    background-color: #f9fafc;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.small-message-card:hover {
    transform: translateY(-3px);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

/* Text styling */
.small-message-text {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.small-message-author {
    font-family: "Georgia", serif;
    font-size: 0.8rem;
    font-style: italic;
    color: #666;
}


.message-section {
    display: flex;
    gap: 0.5rem;
}

.message-card {
    max-width: 48%;
    height: 80%;
    max-height: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f9fafc;
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem auto;
}

/* .message-image img {
    max-height: 18rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    width: 100%;
    object-fit: cover;
} */

.message-title {
    margin-top: 0.4rem;
    margin-bottom: 1rem;
}

.message-container {
    padding: 0.25rem;
    margin: 0.25rem;
    height: 480px;
    overflow-y: auto;
}

/* testimonials section */
#testimonialCarousel {
    max-width: 650px;
    margin: 0 auto;
    padding-bottom: 50px;
}

#testimonialCarousel .carousel-item {
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    min-height: 340px;
}

.testimonials .carousel-indicators {
    bottom: 15px;
}

.testimonials .carousel-indicators>button {
    background-color: #e2e2e2;
    height: 11px;
    width: 11px;
    border-radius: 50%;
    margin: 1px 5px;
    border: none;
}

.testimonials .carousel-indicators>button.active {
    background-color: #888;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: #00000083;
    width: 30px !important;
    height: 30px;
    border-radius: 50%;
    text-shadow: none;
    top: 4px;
}

.carousel-control-prev {
    left: 585px;
}

/* .carousel .img-box {
    width: 145px;
    height: 145px;
    margin: 0 auto;
    border-radius: 50%;
}

.carousel .img-box img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
} */

.carousel .testimonial {
    padding: 30px 0 10px;
}

.carousel .overview {
    text-align: center;
    padding-bottom: 5px;
}

.carousel .overview b {
    color: #333;
    font-size: 15px;
    text-transform: uppercase;
    display: block;
    padding-bottom: 5px;
}

.carousel .star-rating i {
    font-size: 18px;
    color: #ffdc12;
}

/* about us page */
#aboutCarousel .carousel-item {
    height: var(--Home-carousel-height);
}

#aboutCarousel img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white-text-color);
    width: 80%;
    padding: 1rem;
}

.carousel-caption h5 {
    font-size: 2.25rem;
    color: var(--site-primary-accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.carousel-caption p {
    font-size: 1.25rem;
    color: var(--site-secondary-accent-color);
    margin-bottom: 1.5rem;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 10;
}

.carousel-item {
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.btn-about-primary {
    font-family: var(--font-san-serif);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.2s;
    margin-top: 1rem;
    text-align: center;
}

.btn-about-primary {
    background-color: var(--site-primary-accent-color);
}

.btn-about-primary:hover {
    background-color: #388e3c;
    transform: scale(1.05);
}

.info-section {
    gap: 10px;
    margin: 0 20px;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.info-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.3rem;
}

.dashed-title {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    color: var(--dash-color);
}

.text-align-left {
    text-align: left;
}

.goals-container {
    position: relative;
    width: 100%;
    height: 700px;
    padding: 0 1rem 1rem 0;
    overflow: hidden;
    box-sizing: border-box;
}

.goals-img {
    position: absolute;
    left: 0;
    width: 65%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 30%;
    border-bottom-left-radius: 30%;
}

.goals-content {
    border: 2px none #000;
    border-radius: 8px;
    padding: 3rem 2rem 3rem 2rem;
    background-color: var(--white-text-color);
    box-shadow: 8px 10px 18px 4px rgba(0, 0, 0, 0.227);
    max-width: 600px;
    margin: 20px auto;
    z-index: 10;
    position: relative;
    top: 25%;
    left: 20%;
}

.goals-content li {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.goals-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
}

.message-subtitle {
    font-family: var(--font-san-serif);
}

.goals-content .message-subtitle {
    font-size: 1rem;
}

.approach-container {
    background-color: #f5f7fa;
    margin: 1rem 0;
    padding: 2rem 1rem;
    text-align: center;
    background-image: linear-gradient(135deg,
            rgba(250, 250, 250, 0.7) 25%,
            transparent 25%),
        linear-gradient(225deg, rgba(250, 250, 250, 0.7) 25%, transparent 25%),
        linear-gradient(45deg, rgba(250, 250, 250, 0.7) 25%, transparent 25%),
        linear-gradient(315deg, rgba(250, 250, 250, 0.7) 25%, transparent 25%);
    background-size: 20px 20px;
    background-position: 10px 10px, 10px 10px, 0px 0px, 0px 0px;
}

.approach-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--site-primary-color);
    margin-bottom: 1rem;
}

.approach-description {
    font-family: var(--font-san-serif);
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.approach-grid {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-item {
    min-width: 300px;
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.approach-item h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--site-primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.approach-item h3::after {
    content: "";
    position: absolute;
    width: 40%;
    height: 2px;
    background-color: var(--site-secondary-color);
    left: 0;
    bottom: 0;
}

.approach-item p {
    color: #666;
    font-family: var(--font-san-serif);
    font-size: 1rem;
    line-height: 1.6;
}

.team-section h2 {
    margin-bottom: 40px;
    font-family: var(--font-serif);
    text-align: center;
    font-size: 2.5rem;
}

.team-members {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.team-member {
    width: 20%;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--darker-background);
    border-radius: 20px;
    padding: 20px;
}

.team-img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.team-member p {
    font-size: 1rem;
    color: var(--dash-color);
}

/* contact us page */
.contact-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 0 4rem;
}

.contact-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 170px;
    padding: 20px;
    margin: 2px 0;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 20px;
    transition: box-shadow 0.3s ease;
}

.contact-item i {
    font-size: 24px;
    margin: 0 0 18px 0;
    color: #555;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1rem;
    margin-bottom: 1px;
}

.contact-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
}

.contact-link:hover::before {
    width: 100%;
}

.contact-link:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 123, 255, 0.05);
}

.feedback-map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px auto;
    max-width: 1200px;
    height: 700px;
}

.map-container {
    height: 100%;
    width: 100%;
}

.map-container iframe {
    width: 150%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* General Form Container Styling */
.form_group_feedback {
    position: relative;
    width: 100%;
    max-width: 600px;
    padding: 25px;
    margin: 0 auto;
    text-align: center;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Form Heading */
.form_group_feedback h4 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
}

/* Form Group */
.custom-form-group {
    margin-bottom: 20px;
}

/* Input and Textarea Styling */
.custom-form-group .form-control {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-form-group .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.2);
    outline: none;
}

.custom-form-group textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Submit and Reset Button Styling */
.custom-btn {
    width: 48%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.custom-btn-submit {
    background-color: #007bff;
    color: white;
    float: left;
}

.custom-btn-submit:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-btn-reset {
    background-color: #dc3545;
    color: white;
    float: right;
}

.custom-btn-reset:hover {
    background-color: #b02a37;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-btn i {
    margin-right: 8px;
}

/* Hero Section for Contact Us */

.contact-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--Home-carousel-height);
    width: 100%;
    padding: 0 50px;
    box-sizing: border-box;
}

.hero-content-left {
    flex: 1;
    max-width: 50%;
    color: var(--site-secondary-accent-color);
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #000000;
}

.custom-btn {
    background-color: #27ae60;
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.custom-btn:hover {
    background-color: #1e8449;
}

.hero-title.mobile {
    display: none;
}

.contact-hero-content .hero-image-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
}

.hero-image-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
}

.hero-img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 30%;
}

.hero-section-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    z-index: 1;
}

.hero-section-contact .container {
    position: relative;
    z-index: 2;
}

/* login page  */
/* popup error */
.position-relative {
    position: relative;
}

.alert-popup {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 400px;
    z-index: 100;
    animation: fadeIn 0.5s ease-in forwards, fadeOut 0.5s ease-out 3s forwards;
    opacity: 0;
    pointer-events: none;
    /* Allows clicks to pass through the alert */
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px;
    margin: 0 auto;
    background-color: var(--darker-background);
}

.card {
    /* background-color: #fff; */
    background: linear-gradient(to bottom right, #ffffff, #e0f7ff);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 40px 0;
}

.card h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--site-primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-family: var(--font-san-serif);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--site-primary-accent-color);
    display: inline-block;
    padding-bottom: 5px;
}


.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.9rem;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.login-btn {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background-color: var(--site-primary-color);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: var(--site-primary-accent-color);
}

.text-center {
    text-align: center;
    color: #555;
    margin-top: 20px;
}

.text-center a {
    color: var(--site-primary-color);
    text-decoration: none;
}

.text-center a:hover {
    text-decoration: underline;
}

/*signup*/
/* General Styles */

.super-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}

.signup-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    margin: 2rem;
}

.signup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.signup-header h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

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

/* Two-column layout */
.form-columns {
    display: flex;
    gap: 2rem;
}

.form-column {
    flex: 1;
}

/* Form Sections */
.form-section {
    margin-bottom: 2rem;
}

.form-section h2 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 1rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
}

.sign-form-group {
    margin-bottom: 1.5rem;
}

.sign-form-group label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.sign-form-group input,
.sign-form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.sign-form-group input:focus,
.sign-form-group select:focus {
    border-color: #007bff;
    outline: none;
}

.sign-form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #888;
}

/* Password Section */
.password-section {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #eee;
}

.password-input {
    position: relative;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 40px; /* Space for the eye icon */
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
}

.toggle-password:hover {
    color: #007bff;
}

/* Form Actions */
.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-columns {
        flex-direction: column;
    }
}
@media (max-width: 1400px) {

    /* Contact Page */
    .contact-details {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        place-items: center;
        gap: 10px;
        margin: 0 4rem;
    }

    footer {
        margin: 0;
    }

    /* .footer-wrapper div {
        margin: 1rem;
    } */

    .logo img {
        width: 100%;
        margin: auto;
    }
}

@media (max-width: 65rem) {
    .stat-content {
        flex-direction: column;
        max-width: 400px;
        margin: auto;
    }

    /* Message section */
    .message-section {
        flex-direction: column;
    }

    .message-card {
        max-width: 600px;
        width: auto;
    }

    /* footer */
    .footer-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80%;
        /* margin: auto; */
    }
}

@media (max-width: 768px) {

    /* nav  */
    .nav-item {
        margin-left: 0;
    }

    /* .navbar-brand img.navbar-logo {
        height: 3.5rem;
    } */

    /* home page */
    .message-image img {
        height: 16rem;
        width: 80%;
    }

    .about-us {
        flex-direction: column-reverse;
        align-items: center;
    }

    .about-us-content,
    .about-us-img-container {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .about-us-img {
        height: auto;
        max-height: 300px;
    }

    .contact-hero-content {
        flex-direction: column-reverse;
        text-align: center;
        height: auto;
        padding: 20px;
        margin-bottom: 100px;
    }

    .hero-title {
        display: none;
    }

    .hero-title.mobile {
        display: block;
        text-align: center;
        margin-bottom: auto;
    }

    .hero-content-left,
    .hero-image-right {
        max-width: 100%;
    }

    .hero-image-right {
        margin-top: 20px;
    }

    .hero-img {
        height: auto;
        margin: 1rem;
    }

    .goals-container {
        height: auto;
        padding: 3rem 1.3rem;
    }

    .goals-img {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }

    .goals-content {
        position: static;
        top: auto;
        left: auto;
        margin: 0;
    }

    .goals-content li {
        font-size: 1.1rem;
    }

    .small-message-container {
        flex-direction: column;
    }

    .small-message-card {
        min-width: 400px;

    }

    .carousel-control-prev {
        left: 0;
    }

    /* Contact Page */
    .contact-hero-content p {
        font-size: 1rem;
    }

    .hero-btn {
        font-size: 0.9rem;
    }

    .hero-title.mobile {
        margin-top: 100px;
    }

    .contact-hero-content {
        flex-direction: column-reverse;
        text-align: center;
        height: auto;
        padding: 20px;
        margin-bottom: 100px;
    }

    .contact-details {
        display: grid;
        grid-template-columns: 1fr;
        place-items: center;
        gap: 10px;
        margin: 0 4rem;
    }

    .form_group_feedback {
        max-width: 100%;
        padding: 20px;
    }

    .custom-btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .custom-btn-submit,
    .custom-btn-reset {
        float: none;
        display: block;
    }

    .custom-form-control {
        font-size: 0.7rem;
    }

    .contact-details {
        flex-direction: column;
        margin: 0 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .contact-item {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        min-width: 90%;
        max-height: none;
    }

    /* about us page */
    .team-section h2 {
        font-size: 2rem;
    }

    .team-members {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .team-member {
        flex-direction: column;
        width: 50%;
        margin: 20px 0;
    }
}

@media (max-width: 468px) {

    .small-message-container {
        flex-direction: column;
    }

    .small-message-card {
        min-width: 400px;

    }

    /* Footer */
    .footer-wrapper {
        display: flex;
        flex-direction: column;
    }

    .form_group_feedback {
        max-width: 100%;
        padding: 20px;
    }

    .form_group_feedback h4 {
        font-size: 1.4rem;
    }

    /* contact us */
    .custom-form-control {
        padding: 10px;
    }

    .custom-btn {
        padding: 10px;
    }

    .contact-details {
        margin: 0 10px;
    }

    .feedback-map-container {
        flex-direction: column;
        margin: 50px auto;
        height: auto;
    }

    .map-container {
        width: 100%;
        height: 400px;
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@media (min-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .info-section {
        margin: 0 20px;
    }
}