body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    color: #28a745; /* Primary green */
}

.text-green {
    color: #28a745 !important;
}

.bg-green-light {
    background-color: #e6f7ed !important; /* Lighter green background */
}

.bg-green-dark {
    background-color: #1e8449 !important; /* Darker green background */
}

.bg-dark-overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

.bg-dark-overlay-soft {
    background-color: rgba(0, 0, 0, 0.4);
}

.custom-btn-primary {
    background-color: #28a745;
    border-color: #28a745;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.custom-btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.custom-btn-outline {
    border-color: #28a745;
    color: #28a745;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-btn-outline:hover {
    background-color: #28a745;
    color: #fff;
}

.word-break-all {
    word-break: break-all;
}

/* Typography for headers */
.site-name {
    font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.8rem);
}

h1 {
    font-size: clamp(1.8rem, 4vw + 1rem, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 3.5vw + 0.8rem, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw + 0.5rem, 2.2rem);
}
.navbar  {
    z-index: 100;
}

main {
    min-height: 90vh;
}
/* Hero Section */
.hero-section  {
    background-color: #333;
    position: relative;
    overflow: hidden;
}
#hero {
    min-height: 100vh;
    display: flex;
    background-color: #333;
    position: relative;
}

.hero-slider {
    z-index: 0;
    min-height: 100vh;
    width: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    filter: brightness(0.6);
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    z-index: 1;
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
}

.navbar-toggler {
    border: none;
}

.offcanvas.show {
    transform: translateX(0);
}

.offcanvas-body {
    padding-top: 1rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #28a745;
}

@media (max-width: 1199.98px) {
    .navbar-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .offcanvas-body {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* About Section */
.badge-experience {
    bottom: 20px;
    right: 20px;
    background-image: linear-gradient(45deg, #28a745, #1e8449);
    transform: rotate(-5deg);
    z-index: 2;
    min-width: 150px;
    text-align: center;
}

@media (max-width: 767.98px) {
    .badge-experience {
        bottom: 10px;
        right: 10px;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    .badge-experience span.fs-3 {
        font-size: 1.8rem !important;
    }
}

/* Pricing Section (Timeline) */
.timeline-wrapper {
    position: relative;
    padding: 20px 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #fff;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    left: auto;
    right: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
    right: auto;
}

.timeline-item .timeline-content {
    width: calc(50% - 30px);
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 30px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 30px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: #28a745;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
    border: 3px solid #fff;
}

.timeline-item .price-tag {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 15px;
    background-color: #28a745;
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .timeline-wrapper::before {
        left: 20px;
        transform: translateX(0);
    }
    .timeline-item .timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px !important;
        margin-right: 0 !important;
    }
    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 70px !important;
    }
}

/* Team Section */
.team-avatar {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid #28a745;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #28a745;
    border-radius: 50%;
    padding: 15px;
}

/* Portfolio Section */
.portfolio-item {
    cursor: pointer;
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.portfolio-item .portfolio-after {
    opacity: 0;
}

.portfolio-item:hover .portfolio-after {
    opacity: 1;
}

.portfolio-overlay {
    z-index: 1;
    transition: background-color 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Stats Section */
.stat-block {
    min-height: 250px;
}

.stat-block ul {
    padding-left: 0;
}

/* How It Works Section */
.how-it-works-timeline {
    position: relative;
    padding: 20px 0;
}

.how-it-works-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #fff;
    transform: translateX(-50%);
}

.how-it-works-item {
    position: relative;
    margin-bottom: 40px;
}

.how-it-works-item .how-it-works-content {
    width: calc(50% - 30px);
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.how-it-works-item:nth-child(odd) .how-it-works-content {
    margin-left: calc(50% + 30px);
}

.how-it-works-item:nth-child(even) .how-it-works-content {
    margin-right: calc(50% + 30px);
}

.how-it-works-marker {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: #28a745;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
    border: 3px solid #fff;
}

@media (max-width: 767.98px) {
    .how-it-works-timeline::before {
        left: 20px;
        transform: translateX(0);
    }
    .how-it-works-item .how-it-works-content {
        width: calc(100% - 70px);
        margin-left: 70px !important;
        margin-right: 0 !important;
    }
    .how-it-works-marker {
        left: 20px;
        transform: translateX(-50%);
    }
    .how-it-works-item:nth-child(odd) .how-it-works-content {
        margin-left: 70px !important;
    }
    .how-it-works-item:nth-child(even) .how-it-works-content {
        margin-right: 0 !important;
    }
    .how-it-works-item.order-md-last .how-it-works-content {
        margin-left: 70px !important;
    }
}

/* Contact Section */
.contact-info {
    background-color: #1e8449;
}

.contact-info a {
    color: #fff;
}

.contact-info a:hover {
    color: #d4edda;
}

/* Footer */
.footer .logo-img {
    height: 30px;
    width: auto;
}

.footer .site-name {
    font-size: 1.2rem;
}

.footer ul li {
    margin: 0 10px;
}

@media (max-width: 767.98px) {
    .footer ul {
        flex-direction: column;
        align-items: center;
    }
    .footer ul li {
        margin: 5px 0;
    }
}/* Styles for the main content wrapper */
.policyScopeWrap {
    padding-top: 2.5rem;    /* Top padding for the content area */
    padding-right: 1.5rem;   /* Right padding for the content area */
    padding-bottom: 2.5rem;  /* Bottom padding for the content area */
    padding-left: 1.5rem;    /* Left padding for the content area */
    max-width: 960px;        /* Optional: Limits content width for better readability on large screens */
    margin-left: auto;       /* Centers the content wrapper horizontally */
    margin-right: auto;      /* Centers the content wrapper horizontally */
}

/* Heading 1 style within policyScopeWrap */
.policyScopeWrap h1 {
    font-size: 2rem;         /* Moderate font size for main heading */
    line-height: 1.2;        /* Improved readability */
    margin-top: 2.5rem;      /* Space above the heading */
    margin-bottom: 1rem;     /* Space below the heading */
    font-weight: 700;        /* Bold weight */
    color: #333;             /* Dark grey color for text */
}

/* Heading 2 style within policyScopeWrap */
.policyScopeWrap h2 {
    font-size: 1.75rem;      /* Moderate font size for secondary heading */
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 0.9rem;
    font-weight: 600;        /* Semi-bold weight */
    color: #333;
}

/* Heading 3 style within policyScopeWrap */
.policyScopeWrap h3 {
    font-size: 1.5rem;       /* Moderate font size for tertiary heading */
    line-height: 1.4;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #333;
}

/* Heading 4 style within policyScopeWrap */
.policyScopeWrap h4 {
    font-size: 1.25rem;      /* Moderate font size for quaternary heading */
    line-height: 1.5;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 500;        /* Medium weight */
    color: #333;
}

/* Heading 5 style within policyScopeWrap */
.policyScopeWrap h5 {
    font-size: 1.1rem;       /* Moderate font size for quinary heading */
    line-height: 1.5;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 500;
    color: #333;
}

/* Paragraph style within policyScopeWrap */
.policyScopeWrap p {
    font-size: 1rem;         /* Standard body font size */
    line-height: 1.7;        /* Generous line height for readability */
    margin-bottom: 1rem;     /* Space between paragraphs */
    color: #444;             /* Slightly lighter grey for body text */
}

/* Unordered list style within policyScopeWrap */
.policyScopeWrap ul {
    margin-top: 1rem;        /* Space above the list */
    margin-bottom: 1rem;     /* Space below the list */
    padding-left: 1.8rem;    /* Indent for bullet points */
    list-style-type: disc;   /* Default bullet style */
    color: #444;
}

/* List item style within policyScopeWrap */
.policyScopeWrap li {
    font-size: 1rem;         /* Standard font size for list items */
    line-height: 1.6;        /* Line height for list item content */
    margin-bottom: 0.5rem;   /* Space between list items */
    color: #444;
}


.h4.fw-bold.text-green {
    word-wrap: break-word;
    word-break: break-all;
}

#home {
    min-height: 100px;
    position: fixed !important;
    z-index: 10000;
    top: 0;
    width: 100%;
}