:root {
    /* Base */
    --bg-body: #f8f8f8;
    --bg-card: #ffffff;
    --border-card: #e0e0e0;

    /* Colors */
    --primary: #ff961b;
    --accent-1: #1b8fff;
    --accent-2: #00b19f;

    /* Text */
    --text-primary: #333333;
    --text-secondary: #666666;

    /* States */
    --success: #28a745;
    --error: #dc3545;
}

.custom-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.custom-card h1 {
    color: var(--accent-2);
    /* font-size: 32px; */
}

.custom-card p {
    margin-bottom: 0;
    font-size: 14px;
}

/* PRIMARY BUTTON (Yellow/Orange - #FF961B) */
.primary-button {
    background: #ff961b; /* Your brand color */
    color: #ffffff; /* White text */
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.primary-button:hover {
    background: #e07d00; /* Darker orange on hover */
}

/* SECONDARY BUTTON (Light/Outlined) */
.secondary-button {
    background: transparent;
    color: #ff961b; /* Orange text */
    border: 1px solid #e0e0e0; /* Light gray border */
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.secondary-button:hover {
    background: #fff5e6; /* Warm off-white background */
    border-color: #ff961b; /* Orange border on hover */
}

.icon-button {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid #e0e0e0;
    border-radius: 100px;
    font-size: 16px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: flex-end;
}

/* CALL BUTTON (Blue - #1B8FFF) */
.call-button {
    /* background: #1b8fff;  */
    background: var(--primary);
    color: #ffffff; /* White text */
    border: none;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.call-button:hover {
    background: #0066cc; /* Darker blue on hover */
}

/* SHARED STATES (All Buttons) */
.primary-button:active,
.secondary-button:active,
.call-button:active {
    transform: scale(0.98); /* Subtle "pressed" effect */
}

/* FOCUS STATES (Accessibility) */
.primary-button:focus,
.secondary-button:focus,
.call-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 150, 27, 0.3); /* Orange focus ring */
}

/* general styles*/
body {
    /* font-family: "Poppins", sans-serif; */
    font-family: "Albert Sans", sans-serif;
    position: relative;
    /* background-color: #fcfcf7; */
    /* background-color: #fffff0; */
    background-color: #f8f8f8;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    /* This ensures the video covers the entire container while maintaining aspect ratio */
}

nav {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    padding: 20px 0;
}

nav a {
    font-size: 14px;
    font-weight: 500;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-bottom: 0;
}

nav ul li a.active {
    font-weight: bold;
    /* Optional: Add other active link styles */
    color: #000; /* Example: Darker color for active link */
    text-decoration: underline; /* Or other indicator */
}

#logo {
    height: 80px;
}

@media only screen and (max-width: 800px) {
    #logo {
        height: 50px;
    }
}

a {
    text-decoration: none;
    color: #000;
}

.space {
    height: 10vh;
}

.section-header {
    /* color: #0879fe; */
    color: var(--accent-1);
    font-weight: 500;
    margin-bottom: 20px;
}

.section-title {
    max-width: 600px;
    font-size: 68px;
    font-weight: 500;
    color: var(--text-primary);
}

/* mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    height: 100vh;
    z-index: 100;
    padding-top: 20vh;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    width: fit-content;
    margin: auto;
    gap: 40px;
    list-style: none;
}

.mobile-nav ul li a {
    font-size: 24px;
    font-weight: 500;
}

#logo,
#burger-menu {
    position: relative;
    z-index: 200;
}

/* hero section */
.hero {
    position: relative;
    width: 100%;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.hero-top p {
    font-size: 14px;
    max-width: 400px;
    color: var(--text-secondary);
}

.hero-bottom {
    background-image: url(/assets/img/hero-3.png);
    background-position: center;
    height: 65vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
}

.hero-overlay {
    position: absolute;
    height: 10vh;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    /* background: #f8f8f8;
    background: linear-gradient(
        180deg,
        rgba(248, 248, 248, 1) 0%,
        rgba(248, 248, 248, 0.48) 50%
    ); */
}

/* About Us Section */

.about-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.about-top p {
    max-width: 400px;
    font-size: 14px;
}

/* .about-top h1 {
    font-size: 68px;
    font-weight: 500;
} */

.about-bottom {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Invest Section */

.invest-header h1 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}

.invest-type p {
    font-size: 14px;
}

.invest-amount h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-2);
}

.invest-img,
.complete-img,
.future-img {
    height: 250px;
    width: 100%;
    /* background-color: #f4f6f8; */
    background-size: cover;
    border-radius: 8px;
    cursor: pointer;
}

.invest-img {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    position: relative;
}

.invest-img div {
    display: none;
    color: var(--primary);
}

.invest-img:hover div {
    display: unset;
    transform: 1s ease-in-out;
}

.invest-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.invest small {
    color: var(--text-secondary);
}

.project-overlay {
    position: absolute;
    background-color: #000000b9;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 8px;
}

.project-button {
    z-index: 2;
    position: relative;
}

#ongoing-1 .project-img {
    background-image: url(/assets/img/invest-1.jpg);
    background-position: center;
    background-size: cover;
    height: 420px;
    border-radius: 18px;
}

#ongoing-2 .project-img {
    background-image: url(/assets/img/invest-2.jpg);
    background-position: center;
    background-size: cover;
    height: 420px;
    border-radius: 18px;
}

#ongoing-3 .project-img {
    background-image: url(/assets/img/invest-3.jpg);
    background-position: center;
    background-size: cover;
    height: 420px;
    border-radius: 18px;
}

.modal-body,
.modal-header,
.modal-footer {
    background-color: var(--bg-body);
}

.modal-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
}

.modal-bottom {
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.modal-bottom ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.modal-bottom h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.modal-bottom ul li {
    font-size: 14px;
}

.modal iframe {
    width: 100%;
    height: 320px;
    border-radius: 18px;
}

.property-highlight p {
    border: 1px solid gray;
    padding: 10px;
    border-radius: 10px;
}

.contact-list {
    margin-top: 40px;
}

.contact-info h4 {
    font-size: 24px;
}

.contact-info p {
    font-size: 14px;
}

.contact-item {
    display: flex;
    gap: 20px;
    flex-direction: column;
    background-color: #fbf5df;
    padding: 20px;
    border-radius: 18px;
}

.contact-social {
    display: flex;
    flex-direction: column;
}

.contact-social div {
    height: 24px;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fbf5df;
    border-radius: 100px;
    padding: 20px;
}

/* .modal-title {
    background-color: #fbf5df;
    padding: 10px 20px;
    border-radius: 18px;
    font-size: 24px;
    font-weight: 400;
} */

.modal input,
.modal textarea {
    border: 1px solid gray;
    border-radius: 10px;
    padding: 10px;
    background-color: transparent;
    width: 100%;
    resize: none;
}

.modal-contact > h1 {
    margin-bottom: 20px;
}

.modal-form {
    max-width: 500px;
    margin: auto;
    text-align: center;
    width: 100%;
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-social a {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

.contact-social i {
    font-size: 18px;
}

.contact-item h2 {
    font-size: 18px;
}

.contact-item p {
    font-size: 14px;
    margin-bottom: 0;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#project-1 .invest-img {
    background-image: url(/assets/img/invest-1.jpg);
}
#project-2 .invest-img {
    background-image: url(/assets/img/invest-2.jpg);
}
#project-3 .invest-img {
    background-image: url(/assets/img/invest-3.jpg);
}

#project-4 .invest-img {
    background-image: url(/assets/img/complete-1.jpg);
}
#project-5 .invest-img {
    background-image: url(/assets/img/complete-2.jpg);
}
#project-6 .invest-img {
    background-image: url(/assets/img/complete-3.jpg);
}
#project-7 .invest-img {
    background-image: url(/assets/img/complete-4.jpg);
}
#project-8 .invest-img {
    background-image: url(/assets/img/complete-5.jpg);
}

#project-9 .invest-img {
    background-image: url(/assets/img/future-1.jpg);
}

#project-10 .invest-img {
    background-image: url(/assets/img/future-2.jpg);
}

/* .completed .invest-item:nth-child(1) .invest-img {
    background-image: url(/assets/img/complete-1.jpg);
}
.completed .invest-item:nth-child(2) .invest-img {
    background-image: url(/assets/img/complete-2.jpg);
}
.completed .invest-item:nth-child(3) .invest-img {
    background-image: url(/assets/img/complete-3.jpg);
}
.completed .invest-item:nth-child(4) .invest-img {
    background-image: url(/assets/img/complete-4.jpg);
}
.completed .invest-item:nth-child(5) .invest-img {
    background-image: url(/assets/img/complete-5.jpg);
}

#complete-1 .project-img {
    background-image: url(/assets/img/complete-1.jpg);
    border-radius: 18px;
}
#complete-2 .project-img {
    background-image: url(/assets/img/complete-2.jpg);
    border-radius: 18px;
}
#complete-3 .project-img {
    background-image: url(/assets/img/complete-3.jpg);
    border-radius: 18px;
}
#complete-4 .project-img {
    background-image: url(/assets/img/complete-4.jpg);
    border-radius: 18px;
}
#complete-5 .project-img {
    background-image: url(/assets/img/complete-5.jpg);
    border-radius: 18px;
} */

/* .future .invest-item:nth-child(1) .invest-img {
    background-image: url(/assets/img/future-1.jpg);
}
.future .invest-item:nth-child(2) .invest-img {
    background-image: url(/assets/img/future-2.jpg);
}
.future .invest-item:nth-child(3) .invest-img {
    background-image: url(/assets/img/future.jpg);
} */

#future-1 .project-img {
    background-image: url(/assets/img/future-1.jpg);
    border-radius: 18px;
}

#future-2 .project-img {
    background-image: url(/assets/img/future-2.jpg);
    border-radius: 18px;
}

.invest-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.invest-body {
    padding: 20px;
}

.invest-swiper {
    margin-top: 50px;
}


/* .invest .section-title {
    max-width: unset;
} */

/* Why Section */

.why-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
}
.why-top p {
    max-width: 400px;
    font-size: 14px;
}

.why i {
    color: #000;
    font-size: 28px;
    margin-top: 2px;
}

.why-item {
    /* background-color: #f4f6f8; */
    /* background-color: #fbf5df; */
    /* border-radius: 18px; */
    /* padding: 30px; */
    /* display: flex; */
    padding: 30px;
    display: flex;
    gap: 20px;
    flex-direction: row;
}

.why-item .icon-button {
    min-width: 40px;
    align-self: unset;
}

.why-item i {
    font-size: 20px;
    color: var(--text-secondary);
}

.why-item h1 {
    font-size: 24px;
}

.why-item p {
    font-size: 14px;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.why-list > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Team Section */

.team .section-title {
    max-width: 700px;
}

.team-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
}
.team-top p {
    max-width: 400px;
}

.team-info h1 {
    font-size: 24px;
    font-weight: 500;
}

.team-info p {
    font-size: 14px;
}

.team-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.team-img {
    /* border-radius: 18px; */
    overflow: hidden;
    /* background-color: #f4f6f8; */
    background-color: var(--bg-card);
    padding: 0 !important;
}

.team-img img {
    width: 100%;
}

.team-info {
    padding: 20px;
}

/* ebook */

.profile-wraper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.profile-img {
    background-image: url(/assets/img/book.png);
    background-size: cover;
    border-radius: 18px;
    background-position: center;
    min-height: 70vh;
}

.profile .section-title {
    max-width: unset;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-info p {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 50px;
    max-width: 400px;
}

.profile-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* testimonial */

.testimonial-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial .section-title {
    max-width: unset;
}

.testimonial-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* padding: 20px; */
    /* border: 2px solid #fbf5df; */
    /* border-radius: 18px; */
    text-align: left;
    /* grid-column: span 1; */
}

/* .testimonial-item:nth-last-child(2),
.testimonial-item:last-child {
    grid-column: 1 / span 2;
} */

/* .testimonial-item:nth-last-child(2) {
    grid-column: 1 / span 2;
} */

.testimonial-top {
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonial img {
    width: 55px;
    height: 55px;
}

.testimonial-top h6 {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 500;
}

.testimonial-top p {
    font-size: 14px;
    margin-bottom: 0;
}

.testimonial-bottom p {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: left; /* or center, depending on your preference */
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
}

.testimonial-bottom i {
    font-size: 24px;
    color: var(--primary);
}

/* faq wraper */

.faq-wraper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.accordion-body {
    padding: 20px;
    font-size: 14px;
}

.accordion-button {
    font-size: 18px;
    font-weight: 400;
}

.faq-left p {
    font-size: 14px;
    margin-top: 20px;
}

/* footer */
footer ul {
    list-style-type: none;
}

.subscribe-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.subscribe-wrapper input[type="email"] {
    width: 100%;
    padding: 12px 110px 12px 16px;
    border: 1px solid #ccc;
    /* border-radius: 999px; */
    border-radius: 8px;
    background-color: white;
    font-size: 16px;
    box-sizing: border-box;
}

.subscribe-wrapper button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 20px;
    /* background-color: #007bff; */
    background-color: #1b8fff;
    border: none;
    color: white;
    font-weight: 500;
    /* border-radius: 999px; */
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.subscribe-wrapper button:hover {
    background-color: #0056b3;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    color: #fff;
}

.footer-top h1 {
    max-width: 700px;
}

footer {
    background-image: url(/assets/img/business-9.webp);
    background-size: cover;
    background-position: center;
    padding-bottom: 5vh;
    position: relative;
    width: 100%;
}

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-overlay {
    position: absolute;
    background-color: #00000069;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
}

.footer-bottom {
    background-color: var(--bg-body);
    margin-left: 5vh;
    margin-right: 5vh;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-menu {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

footer ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
}

.footer-bottom ul li a {
    font-size: 14px;
    color: gray;
}

.footer-bottom h6 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-bottom b {
    font-size: 24px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-social p {
    font-size: 14px;
    max-width: 400px;
    color: gray;
}

.footer-social small {
    color: gray;
    margin-top: 5vh;
}

.social-icon {
    display: flex;
    gap: 15px;
}

.social-icon i {
    font-size: 24px;
    color: gray;
}

/* business */
.business-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.business-header p {
    max-width: 500px;
    font-size: 14px;
}

.business-image {
    height: 350px;
    width: 100%;
    background-size: cover;
    background-position: center;
    max-width: 600px;
    border-radius: 18px;
}

.business-image-1 {
    background-image: url(/assets/img/business-1.jpg);
}
.business-image-2 {
    background-image: url(/assets/img/business-2.jpg);
}
.business-image-3 {
    background-image: url(/assets/img/business-3.jpg);
}
.business-image-4 {
    background-image: url(/assets/img/business-4.jpg);
}
.business-image-5 {
    background-image: url(/assets/img/business-5.jpg);
}
.business-image-6 {
    background-image: url(/assets/img/business-6.jpg);
}
.business-image-7 {
    background-image: url(/assets/img/business-1.png);
}
.business-image-8 {
    background-image: url(/assets/img/business-8.jpg);
}
.business-image-9 {
    background-image: url(/assets/img/business-9.webp);
}
.business-image-10 {
    background-image: url(/assets/img/business-10.jpg);
}
.business-image-11 {
    background-image: url(/assets/img/business-120.jpg);
}
.business-image-12 {
    background-image: url(/assets/img/business-120.jpg);
}

.icon-placeholder i {
    font-size: 42px;
    color: var(--primary) !important;
}

.business-item {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    align-items: center;
}

.business-list {
    display: flex;
    flex-direction: column;
    gap: 4vh;
}

.business-info h1 {
    font-size: 48px;
    font-weight: 500;
    color: var(--primary);
}

.business-info h2 {
    font-size: 56px;
    font-weight: 400;
    margin-top: 30px;
    text-transform: uppercase;
}

.business-info p {
    font-size: 24px;
    margin-top: 20px;
}

.business-info i {
    color: gray;
}

.burger-icon {
    display: none;
    flex-direction: column;
    gap: 3px;
    background-color: #097aff;
    border-radius: 100px;
    padding: 20px;

    height: 24px;
    width: 24px;
    align-items: center;
    justify-content: center;
    font-size: 20px;

    color: #fff;
}

/* projects */
.project-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.project-hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.project-hero-right div {
    /* background-color: #fbf5df; */
    /* border-radius: 18px; */
    padding: 20px;
}

.project-hero-right i {
    font-size: 24px;
}

.project-hero-right p {
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 10px;
}

.project-hero-left p {
    margin-top: 20px;
    font-size: 14px;
    max-width: 500px;
}

/* about page */

.about-hero .section-title {
    max-width: 800px;
}

.about-hero > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero {
    background-color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-banner {
    border-radius: 18px;
    overflow: hidden;
    background-image: url(/assets/img/about-hero.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 500px;
    margin-top: -30vh;
}

.about-hero .section-title,
.about-hero p {
    color: #fff !important;
}

.about-vision {
    text-align: center;
}

.about-vision .section-title {
    max-width: 1000px;
    margin: auto;
}

.about-vision p {
    margin: auto;
    font-size: 16px;
    font-weight: 400;
    max-width: 800px;
    margin-top: 20px;
}

.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.story-img {
    background-image: url(/assets/img/story.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    height: 500px;
}

.story div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.philosophy .section-title {
    max-width: 800px;
}

.philosophy-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}

.philosophy-list h1 {
    font-size: 24px;
}

.philosophy-list p {
    font-size: 14px;
}

.philosophy-list .custom-card {
    gap: 20px;
    flex-direction: row;
    padding: 40px;
}

.philosophy-list .icon-button {
    align-self: flex-start;
}

.contact-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-left,
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-left-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* contact page */
input,
textarea {
    border: 1px solid var(--border-card);
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    resize: none;
}

.contact-page .custom-card {
    gap: 10px;
}

.contact-page .custom-card h1 {
    color: var(--primary);
    font-size: 24px;
}

.contact-page .custom-card div {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* project details page */
.project-wraper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.project-banner {
    background-image: url(/assets/img/project-1.jpg);
    background-size: cover;
    background-position: center;
    height: 50vh;
    border-radius: 8px;
}

#complete-1 {
    background-image: url(/assets/img/complete-1.jpg);
}
#complete-2 {
    background-image: url(/assets/img/complete-2.jpg);
}
#complete-3 {
    background-image: url(/assets/img/complete-3.jpg);
}
#complete-4 {
    background-image: url(/assets/img/complete-4.jpg);
}
#complete-5 {
    background-image: url(/assets/img/complete-5.jpg);
}

.project-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.project-info .custom-card h1 {
    font-size: 24px;
}

.project-info .custom-card p {
    font-size: 12px;
}

.project-info .custom-card {
    min-width: 150px;
}

.project-page .section-title {
    font-size: 48px;
}

.project-page video {
    border-radius: 8px;
}

.project-wraper > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-tag {
    font-size: 14px;
    font-weight: 500;
    background-color: var(--primary);
    border-radius: 18px;
    padding: 5px 10px;
    width: fit-content;
}

.project-details {
    justify-content: unset !important;
}

.project-details h1 {
    font-size: 32px;
}

.project-details h4 {
    font-size: 24px;
}

.project-page form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 800px;
    margin: auto;
    /* text-align: center; */
}

.project-page form .section-title {
    max-width: unset;
}

.project-form iframe {
    width: 100%;
    height: 70vh;
    border-radius: 18px;
}

/* Custom Accordion Styling */
.accordion {
    --accordion-color: #1a3a6e; /* Aditya blue */
    --accordion-active: #e8b735; /* Gold accent */
    --accordion-bg: #f8f9fa;
    --accordion-border: #dee2e6;
    --accordion-radius: 8px;
    --accordion-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.accordion-item {
    border: none;
    border-radius: var(--accordion-radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--accordion-shadow);
    background-color: white;
}

.accordion-button {
    background-color: var(--accordion-bg);
    color: var(--accordion-color);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border-radius: var(--accordion-radius) !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(232, 183, 53, 0.25);
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a3a6e'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #555;
    line-height: 1.7;
}

/* Hover Effects */
.accordion-button:hover {
    background-color: rgba(232, 183, 53, 0.1);
    color: var(--accordion-color);
}

/* First and last child radius adjustment */
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: var(--accordion-radius) !important;
    border-top-right-radius: var(--accordion-radius) !important;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-left-radius: var(--accordion-radius) !important;
    border-bottom-right-radius: var(--accordion-radius) !important;
}

/* Phone View */

@media only screen and (max-width: 800px) {
    nav {
        padding-left: 1vh;
        padding-right: 1vh;
    }

    .section-title {
        font-size: 32px;
    }

    .space {
        height: 5vh;
    }

    .hero-top {
        align-items: unset;
        flex-direction: column;
    }

    .hero-bottom {
        height: 50vh;
        background-position: center;
        background-image: url(/assets/img/hero.png);
    }

    .about-top {
        flex-direction: column;
    }

    .about-bottom {
        grid-template-columns: 1fr;
    }

    .invest-list {
        grid-template-columns: 1fr;
    }

    .why-top {
        flex-direction: column;
    }

    .why-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-top {
        flex-direction: column;
    }

    .team-list {
        grid-template-columns: 1fr;
    }

    .profile-wraper {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .profile-img {
        height: 40vh;
    }

    .testimonial-list {
        grid-template-columns: 1fr;
    }

    .faq-wraper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-bottom {
        margin-left: 1.5vh;
        margin-right: 1.5vh;
        padding: 30px;
        gap: 50px;
        flex-direction: column-reverse;
    }

    .footer-menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    nav ul,
    nav button {
        display: none;
    }

    .burger-icon {
        display: flex;
    }

    section {
        padding-left: 1vh;
        padding-right: 1vh;
    }

    /* .mobile-nav {
        display: block;
    } */

    .open {
        display: block;
    }

    .project-hero h1 {
        font-size: 32px;
    }
    .project-hero p {
        font-size: 14px;
    }

    .project-hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-hero-right {
        gap: 10px;
    }

    .business-header {
        flex-direction: column;
        gap: 20px;
    }

    .business-item {
        gap: 20px;
        flex-direction: column;
    }

    .business-info p {
        font-size: 18px;
        margin-top: 20px;
    }

    .business-info h1 {
        font-size: 32px;
    }

    .business-info h2 {
        font-size: 32px;
        margin-top: 20px;
        font-weight: 500;
    }

    .business-image {
        height: 250px;
    }

    .modal-top {
        grid-template-columns: 1fr;
    }

    #ongoing-1 .project-img {
        height: 250px;
    }

    .modal-form {
        grid-template-columns: 1fr;
    }

    .invest-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .story {
        grid-template-columns: 1fr;
    }

    .philosophy-list {
        grid-template-columns: 1fr;
    }

    .about-banner {
        width: 90%;
        height: 300px;
        margin-top: -20vh;
    }

    .philosophy-list .icon-button {
        min-width: 40px;
    }

    .philosophy-list .custom-card {
        padding: 20px;
    }

    .contact-page {
        grid-template-columns: 1fr;
    }

    .project-wraper {
        grid-template-columns: 1fr;
    }

    .project-page .section-title {
        font-size: 32px;
    }

    .project-details h4 {
        font-size: 18px;
    }

    .project-form iframe {
        height: 50vh;
        border-radius: 8px;
    }
}
