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

    overflow-x: hidden;
}
html{
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #212529;
}

a {
    text-decoration: none;
    color: #28a745;
}

a:hover {
    color: #218838;
}

.btn-pill {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-pill:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.btn-outline-success {
    border-radius: 50px;
    font-weight: 600;
    color: #28a745;
    border-color: #28a745;
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background-color: #28a745;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header & Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1030;
}

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

.site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
}

.nav-link {
    font-weight: 600;
    color: #333 !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #28a745 !important;
}

@media (max-width: 991.98px) {
    .site-name {
        font-size: 1.2rem;
    }
    .navbar-toggler {
        border: none;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .navbar-collapse {
        border-top: 1px solid #eee;
        margin-top: 10px;
        padding-top: 10px;
    }
    .navbar-nav {
        text-align: center;
    }
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    padding-top: 120px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.7);
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.floating-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #333;
    max-width: 700px;
    margin: 0 auto;
}

.floating-card h1 {
    color: #28a745;
}

.icon-accent {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #28a745;
}

.icon-accent i {
    background-color: #e6ffe6;
    border-radius: 50%;
    padding: 10px;
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section img {
    max-height: 400px;
    object-fit: cover;
}

/* Services Section */
.service-card {
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    background-color: #fff;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #28a745;
}

.service-icon {
    font-size: 3rem;
    color: #28a745;
}

/* Features Section (Flip Cards) */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 250px;
    perspective: 1000px;
    cursor: pointer;
    margin-bottom: 1rem;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner, .flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flip-card-front {
    background-color: #28a745;
    color: white;
    border-radius: 0.5rem;
}

.flip-card-back {
    background-color: #f0f8f0;
    color: #333;
    transform: rotateY(180deg);
    border-radius: 0.5rem;
    border: 1px solid #e0e0e0;
}

.flip-card-front i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.flip-card-front h3 {
    color: #fff;
}

/* How It Works Section */
.how-it-works-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.central-block {
    min-width: 250px;
    max-width: 350px;
    padding: 30px;
    border: 1px solid #eee;
    position: relative;
    z-index: 2;
}

.gradient-icon-card {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #28a745, #4CAF50);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.gradient-icon-card p {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
}

.connection-line-1, .connection-line-2, .connection-line-3 {
    position: absolute;
    height: 2px;
    background-color: #28a745;
    opacity: 0;
    transition: opacity 0.6s ease, width 0.6s ease;
    z-index: 0;
}

.connection-line-1 {
    width: 15%;
    left: 30%;
    top: 50%;
}
.connection-line-2 {
    width: 15%;
    left: 45%;
    top: 50%;
}
.connection-line-3 {
    width: 15%;
    left: 60%;
    top: 50%;
}

.how-it-works-diagram[data-aos-id].aos-animate .connection-line-1, 
.how-it-works-diagram[data-aos-id].aos-animate .connection-line-2, 
.how-it-works-diagram[data-aos-id].aos-animate .connection-line-3 {
    opacity: 1;
    width: 10%; /* Adjust as needed */
}

@media (max-width: 767.98px) {
    .how-it-works-diagram {
        flex-direction: column;
    }
    .central-block {
        margin-bottom: 2rem;
    }
    .connection-line-1, .connection-line-2, .connection-line-3 {
        width: 2px !important;
        height: 50px !important;
        left: 50% !important;
        transform: translateX(-50%);
        top: auto !important;
        position: relative;
        margin: 1rem 0;
    }
    .gradient-icon-card {
        margin-bottom: 1rem;
    }
}

/* Team Section */
.team-member-card {
    border: 1px solid #e0e0e0;
    background-color: #fff;
}

.team-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #28a745;
}

.swiper-button-next, .swiper-button-prev {
    color: #28a745 !important;
}

.swiper-pagination-bullet-active {
    background-color: #28a745 !important;
}

/* Stats Section */
.stats-timeline {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #28a745, #4CAF50);
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-point {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #28a745, #4CAF50);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
    margin-bottom: 15px;
}

.stat-circle h3 {
    font-size: 2.5rem;
    line-height: 1;
    color: #fff;
}

@media (max-width: 767.98px) {
    .stats-timeline {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .timeline-line {
        height: 100%;
        width: 4px;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        background: linear-gradient(to bottom, #28a745, #4CAF50);
    }
    .timeline-point {
        margin-bottom: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .stat-circle {
        width: 100px;
        height: 100px;
    }
    .stat-circle h3 {
        font-size: 1.8rem;
    }
}

/* FAQ Section */
.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: #333;
    background-color: #fff;
    padding: 15px 20px;
    transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #28a745;
    box-shadow: none;
}

.accordion-button:not(.collapsed) i {
    color: #fff !important;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 20px;
    background-color: #f0f8f0;
    border-top: 1px solid #e0e0e0;
}

/* Contact Section */
.contact-form-card {
    border: 1px solid #e0e0e0;
}

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

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

/* Footer */
.footer {
    background-color: #212529 !important;
    color: #f8f9fa;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer .site-name {
    color: #fff !important;
}

.footer a {
    color: #f8f9fa;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #28a745;
}

.footer-widgets .widget-item {
    font-size: 0.9rem;
    color: #ccc;
}

.footer-widgets .widget-item i {
    color: #28a745;
}

.footer-widgets #chat-status.online {
    color: #28a745;
}

.footer-widgets #chat-status.offline {
    color: #dc3545;
}
/*
 * Styles for the .rightsFieldUnit container
 * Provides top margin and horizontal padding for content within.
 */
.rightsFieldUnit {
    margin-top: 30px; /* Top spacing for the unit */
    padding-left: 25px; /* Left padding for content */
    padding-right: 25px; /* Right padding for content */
}

/*
 * Stock styles for headings (h1-h5) within .rightsFieldUnit.
 * Font sizes are moderate, not overly large, with appropriate vertical margins.
 */
.rightsFieldUnit h1 {
    font-size: 1.8em; /* Moderate font size for main heading */
    margin-top: 1.5em; /* Space above heading */
    margin-bottom: 0.8em; /* Space below heading */
    font-weight: 700; /* Bold font weight */
    line-height: 1.2; /* Tighter line height for headings */
}

.rightsFieldUnit h2 {
    font-size: 1.6em; /* Moderate font size for sub-heading */
    margin-top: 1.4em;
    margin-bottom: 0.7em;
    font-weight: 700;
    line-height: 1.2;
}

.rightsFieldUnit h3 {
    font-size: 1.4em; /* Moderate font size for section heading */
    margin-top: 1.3em;
    margin-bottom: 0.6em;
    font-weight: 700;
    line-height: 1.3;
}

.rightsFieldUnit h4 {
    font-size: 1.2em; /* Moderate font size for sub-section heading */
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.4;
}

.rightsFieldUnit h5 {
    font-size: 1.1em; /* Moderate font size for minor heading */
    margin-top: 1.1em;
    margin-bottom: 0.4em;
    font-weight: 700;
    line-height: 1.4;
}

/*
 * Stock styles for paragraphs (p) within .rightsFieldUnit.
 * Standard font size, good line height for readability, and bottom margin for separation.
 */
.rightsFieldUnit p {
    font-size: 1em; /* Standard text size */
    line-height: 1.6; /* Improved readability */
    margin-bottom: 1em; /* Space between paragraphs */
}

/*
 * Stock styles for unordered lists (ul) within .rightsFieldUnit.
 * Provides vertical margins and left padding for bullet points.
 */
.rightsFieldUnit ul {
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 25px; /* Indent for bullet points */
    list-style-type: disc; /* Default bullet style */
}

/*
 * Stock styles for list items (li) within .rightsFieldUnit.
 * Adds a small bottom margin for separation between items.
 */
.rightsFieldUnit li {
    margin-bottom: 0.5em; /* Space between list items */
    line-height: 1.5; /* Good readability for list items */
}
@media (max-width: 575.98px) {
    .site-name {
        font-size: 0.8rem;
    }
}