* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Instrument Sans', sans-serif;

}

.back-Color {
    background-color: #F8F9FC;
}



/* Header Styles */
.header-transparent {
    background-color: white;
    /* border-bottom-left-radius: 40px;
border-bottom-right-radius: 40px; */
}

.navbar {


    padding: 0.5rem 0;
}

.nav-logo {
    width: 130px;
}

/* Logo Styles */
.logo-container {
    position: relative;
    width: 32px;
    height: 32px;
}

.logo-shape {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    border-radius: 4px;
    transform: rotate(45deg);
}

.logo-accent {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    border-radius: 4px;
    transform: rotate(12deg);
}

/* Brand Text */
.brand-text {
    line-height: 1.2;
}

.brand-main {
    font-weight: bold;
    font-size: 1.1rem;
    color: #2563eb;
    margin-bottom: -2px;
}

.brand-sub {
    font-weight: 600;
    font-size: 0.75rem;
    color: #374151;
    margin-bottom: -2px;
}

/* Navigation Links */
.nav-custom {
    color: #374151 !important;
    font-weight: 500 !important;
    font-size: 14px;
    text-decoration: none !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-custom:hover {
    color: #2563eb !important;
}

/* Buttons */
.btn-link.nav-custom {
    border: none;
    background: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.btn-pro {
    background-color: #111827;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-pro:hover {
    background-color: #1f2937;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .navbar-nav {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .nav-custom {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-custom:last-child {
        border-bottom: none;
    }

    .d-flex.align-items-center {
        flex-direction: column;
        align-items: stretch !important;
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e5e7eb;
    }

    .btn-link.nav-custom {
        text-align: center;
        width: 100%;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        margin: 0 !important;
    }

    .btn-pro {
        width: 100%;
        margin: 0;
    }

    .logo-container {
        width: 28px;
        height: 28px;
    }

    .logo-shape {
        width: 28px;
        height: 28px;
    }

    .brand-main {
        font-size: 1rem;
    }

    .brand-sub {
        font-size: 0.7rem;
    }
}

.hero-section {
    width: 100%;
    min-height: 343px;
    background: url("../assets/garden.png") center center no-repeat;
    background-size: cover;
}

.hero-card {
    /* max-width: 1100px; */
    margin: -130px auto 0 auto;
    background-color: white;
    padding: 25px;
    border-radius: 20px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    position: relative;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-logo {
    width: 79px;
    height: 79px;
    border-radius: 10px;
    object-fit: cover;
}



.company-name {
    font-size: 27px;
    font-weight: bold;
    margin: 0;
}

.verified {
    color: #0d6efd;
    font-size: 16px;
    margin-left: 5px;
}

.company-tagline {
    margin: 2px 0 0 0;
    font-size: 18px;
    color: #000000;
}

.company-tagline-location {
    margin: 2px 0 0 0;
    font-size: 14px;
    color: #848484;
}

.action-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating {
    background-color: #FFF4E2;
    border: 1px solid #FEB339;
    padding: 5px 10px;
    border-radius: 50px;
    font-weight: 500;
}

.contact-btn {
    background-color: black;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    cursor: pointer;
}

.save-btn {
    background-color: white;
    color: black;
    border: 1px solid black;
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    cursor: pointer;
}

.card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 20px;
}

.info-item {
    flex: 1 1 200px;
}

.info-item label {
    font-size: 16px;
    font-weight: 600;

    color: #7C7C7C;
    display: block;
}

.info-item a,
.info-item span {
    /* font-weight: 600; */
    font-size: 16px;
    color: black;
    text-decoration: none;
}




.overview-container {
    /* background-color: #ffffff; */
    border-radius: 15px;
    /* padding: 40px; */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
    /* max-width: 800px; */
    /* Increased max-width for better readability */
    width: 100%;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    color: black;
}

.subsection-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    color: black;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: black;
    margin-bottom: 15px;
}

.overview-container ul {
    list-style: none;
    /* Remove default bullet points */
    padding-left: 0;
}

.overview-container ul li {
    position: relative;
    padding-left: 25px;
    /* Space for custom bullet */
    margin-bottom: 10px;
    font-size: 16px;
    color: black;
    line-height: 1.6;
}

.overview-container ul li::before {
    content: '\2022';
    /* Unicode for a solid bullet */
    color: #343a40;
    /* Color of the bullet */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    /* margin-left: -1em; */
    position: absolute;
    left: 0;
}



/* Business Performance & Traction Specific Styles */

.performance-traction-container {
    background-color: white;
    padding: 20px;
    border-radius: 20px;
}

.key-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.metric-item {
    display: flex;
    align-items: center;
    /* background-color: #f0f2f5; */
    border-radius: 10px;
    padding: 15px;
    font-size: 14px;
    color: #000000;
    font-weight: 500;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03); */
}

.metric-icon {
    background-color: #D9EDFD;
    border-radius: 6px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.chart-section {
    /* background-color: #212529; Dark background for the chart */
    border-radius: 10px;
    /* padding: 20px; */
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
    min-height: 350px;
    /* Placeholder height for the chart */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.achievements-list {
    list-style: decimal;
    /* Numbered list */
    padding-left: 20px;
    color: black;
}

.achievements-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}





.similar-businesses-container {
    background-color: #ffffff;
    border-radius: 15px;
    /* Consistent with previous sections */
    padding: 30px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); Soft, subtle shadow */
    max-width: 450px;
    /* Adjusted to match the narrower width in the image */
    margin: auto;
}



.business-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    /* Space between each business item */
}

.business-item:last-child {
    margin-bottom: 0;
    /* No margin after the last item */
}

.business-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    /* Rounded corners for the logo box */
    margin-right: 15px;
    /* Space between logo and text */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    /* Prevent the logo from shrinking */
    color: #fff;
    /* White text/icon inside the logo */
    font-size: 1.5rem;
    /* Size of the letter/symbol */
    font-weight: bold;
}

/* Specific background colors for each logo based on the image */
.business-logo.logo-dark-grey {
    background-color: #2d2d2d;
}

/* Approx black/dark grey */
.business-logo.logo-light-blue {
    background-color: #20b2aa;
}

/* Approx light sea green */
.business-logo.logo-purple {
    background-color: #6a5acd;
}

/* Approx slate blue / medium purple */
.business-logo.logo-lime-green {
    background-color: #8bc34a;
}

/* Approx lime green */
.business-logo.logo-teal-green {
    background-color: #20c997;
}

/* Approx teal green */

.business-info {
    display: flex;
    align-items: center;
    flex-grow: 1;
    /* Allow info to take remaining space */
    flex-wrap: wrap;
    /* Allow text to wrap if long */
}

.business-name {
    font-size: 16px;
    font-weight: 600;
    /* Medium bold */
    color: #161616;
    line-height: 1.3;
    /* Adjust line height for better appearance if text wraps */
    margin-right: 5px;
    /* Space between name and icon */
}

.verified-icon {
    color: #0d6efd;
    /* Bootstrap primary blue for verification icon */
    font-size: 0.9rem;
    /* Slightly smaller than text */
    flex-shrink: 0;
    /* Prevent icon from wrapping */
}




.share-job-container {
    background-color: #ffffff;
    border-radius: 15px;
    /* Consistent with previous sections */
    padding: 30px;

    max-width: 450px;
    /* Adjusted to match the narrower width in the image */
    margin: auto;
}


.social-icons-wrapper {
    display: flex;
    justify-content: space-around;
    /* Distributes items evenly with space around them */
    align-items: center;
    flex-wrap: wrap;
    /* Allows icons to wrap on smaller screens */
    gap: 15px;
    /* Minimum space between icons */
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    /* Makes the background circular */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    /* White icon color */
    font-size: 1rem;
    /* Size of the icon inside the circle */
    text-decoration: none;
    /* Remove underline for links */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    /* Smooth hover effect */
}

/* Specific background colors for each social media icon */
.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.x-twitter {
    background-color: #000000;
}

/* Black for X (formerly Twitter) */
.social-icon.linkedin {
    background-color: #0a66c2;
}

.social-icon.email {
    background-color: #f75c03;
}

/* Orange for generic email */
.social-icon.whatsapp {
    background-color: #25d366;
}

.social-icon:hover {
    transform: translateY(-3px);
    /* Subtle lift effect on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* Add a slight shadow on hover */
}

.service-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}




/* Funding Breakdown Specific Styles */

.funding-breakdown-container{
    background-color: white;
    border-radius: 20px;
            padding: 25px;

}
        .funding-card {
            /* background-color: #f0f2f5; */
            border-bottom: 1px solid #EAEAEA;
            /* border-radius: 10px; */
            padding: 10px 0px;

            margin-bottom: 20px;
        }
        .funding-label {
            font-size: 16px;
            font-weight: 600;
            color: #7C7C7C;
            margin-bottom: 5px;
        }
        .funding-value {
            font-size: 22px;
            font-weight: 600;
            color: black;
        }
        .funding-card + .funding-card {
            margin-top: 15px; /* Space between funding cards */
        }

/* Founder & Team Specific Styles */

.founder-team-container {
    background-color: white;
    padding: 20px;
    border-radius: 20px;
}

.founder-profile {
    display: flex;
    align-items: center;
    gap: 30px;
    /* margin-top: 30px; */
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
}

.founder-text {
    flex: 2;
    min-width: 300px;
    /* Ensure text doesn't get too narrow */
}

.founder-image-card {
    flex: 1;
    min-width: 250px;
    /* Ensure image card doesn't get too narrow */
    background-color: #f0f2f5;
    /* Light background for the image card */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 300px;
    /* Fixed height for consistency */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.founder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    /* Darken image for text readability */
    z-index: 0;
}

.founder-info {
    position: relative;
    z-index: 1;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.founder-role {
    font-size: 1rem;
    font-weight: 400;
}

.key-team-members {
    margin-top: 20px;
}

.key-team-members p {
    margin-bottom: 5px;
}

.team-member-role {
    font-weight: 500;
    color: black;
}

.team-member-description {
    font-size: 14px;
    color: #858585;
}


/* Call to Action Specific Styles */
.call-to-action-container {
    /* text-align: center; */
    /* padding: 50px; */
    margin-top: 50px;
}

.cta-text {
    font-size: 18px;
    font-weight: 600;
    color: #161616;
    margin-bottom: 20px;
}

.cta-subtext {
    font-size: 16px;
    color: #000000;
    margin-bottom: 30px;
}

.cta-buttons .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.btn-outline-dark {
    border-color: black;
    color: black;
}

.btn-dark {
    background-color: black;
    color: #ffffff;
    /* border-color: #343a40; */
}

.btn-dark:hover {
    background-color: #212529;
    border-color: #212529;
}

.btn-dark svg {
    margin-left: 8px;
}




.footer-card {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.footer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* Footer Styles */
.footer {
    background-color: #030616;
    color: white;
    padding: 0 0 30px;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 40px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.footer-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.footer-btn-primary {
    background-color: white;
    color: #1a1d29;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-btn-secondary {
    background-color: transparent;
    color: white;
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-btn-primary:hover {
    background-color: #f1f1f1;
    color: #1a1d29;
    transform: translateY(-2px);
}

.footer-btn-secondary:hover {
    background-color: white;
    color: #1a1d29;
    transform: translateY(-2px);
}

.footer-links {
    margin-bottom: 40px;
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #646986;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    display: block;
    font-weight: 200;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    /* border-top: 1px solid #2d3748; */
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #FFFFFF;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #FFFFFF;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: white;
}








/* Responsive Styles */
@media (max-width: 1025px) {
    .content-wrapper {
        padding: 0px 40px;
    }


    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 992px) {}

@media (max-width: 768px) {




    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }


    .footer-heading {
        font-size: 1.8rem;
    }

    .footer-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}









@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }



    .description {
        font-size: 14px;
    }






    .footer-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {

    .hero-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
    }


}