:root {
    --bs-primary: #008C8C;
    --bs-danger: #FF7F50;
    --bs-light-bg: #E8F8F8;
    --bs-dark-text: #2C3E50;
    --bs-light-text: #7F8C8D;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FDFEFE;
}

.top-info-bar {
    overflow: hidden;
    background-color: var(--bs-dark-text);
    position: relative;
}

.scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-right-to-left 25s linear infinite;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

@keyframes scroll-left-to-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Navbar Customizations */
.navbar-brand img:first-child {
    border-radius: 8px;
}

.navbar-nav .nav-link {
    color: var(--bs-dark-text);
    font-size: 1.3rem;
    font-weight: 600;
}

.navbar-nav .nav-link:hover {
    color: var(--bs-primary);
}

.custom-btn-outline {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
    font-weight: 600;
}

.custom-btn-outline:hover {
    background-color: var(--bs-primary);
    color: white;
}

.custom-btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    font-weight: 600;
    color: white;
}

.custom-btn-primary:hover {
    background-color: #007070;/ border-color: #007070;
}

/* Hero Section */
.hero-section {
    background-color: var(--bs-light-bg);
    padding-top: 1rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.custom-h1 {
    color: var(--bs-dark-text);
    font-size: 3.2rem;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .custom-h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
}

.custom-lead {
    color: var(--bs-light-text);
    font-size: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.custom-btn-outline-danger {
    border-color: var(--bs-danger);
    color: var(--bs-danger);
    font-weight: 600;
}

.custom-btn-outline-danger:hover {
    background-color: var(--bs-danger);
    color: white;
}

/* Floating Phone Icon */
.floating-phone-icon {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050;
}

.phone-circle {
    background-color: var(--bs-danger);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
    }

    .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .d-flex .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .custom-lead {
        font-size: 1rem;
    }

    .floating-phone-icon {
        top: 20px;
        right: 10px;
        transform: translateY(0);
    }
}

.partner-section {
    background-color: #FDFEFE;
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
}

.partner-heading {
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.25rem;
    color: var(--bs-dark-text);
}

.partner-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-right-to-left 15s linear infinite;
}

@keyframes scroll-right-to-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.partner-logo {
    display: inline-block;
    margin: 0 2rem;
    vertical-align: middle;
}

.partner-logo img {
    height: 60px;
    width: auto;
}

@media (max-width: 576px) {
    .partner-heading {
        font-size: 1.25rem;
    }

    .partner-logo {
        display: inline-block;
        margin: 0 1rem;
    }

    .partner-logo img {
        height: 40px;
        width: auto;
    }
}

/* Contact Us Modal */
.connectUs-modal .modal-content {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.connectUs-modal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.connectUs-modal .modal-title {
    font-weight: bold;
    color: var(--bs-primary);
}

.connectUs-modal .btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.connectUs-modal .btn-primary:hover {
    background-color: #007070;
    border-color: #007070;
}

.crm-solution-section {
    background-color: var(--bs-primary);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.crm-solution-section .custom-h1 {
    color: white;
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.crm-solution-section .custom-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.crm-form-inputs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.crm-form-inputs .form-control {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: var(--bs-dark-text);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.crm-form-inputs .form-control::placeholder {
    color: var(--bs-light-text);
}


.crm-solution-section .custom-btn-contact {
    background-color: var(--bs-danger);
    border-color: var(--bs-danger);
    color: white;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.crm-solution-section .custom-btn-contact:hover {
    background-color: #E66A3D;
    border-color: #E66A3D;
}

@media (max-width: 768px) {
    .crm-solution-section .custom-h1 {
        font-size: 2.5rem;
    }

    .crm-solution-section .custom-lead {
        font-size: 1.1rem;
    }

    .crm-form-inputs {
        flex-direction: column;
        align-items: center;
    }

    .crm-form-inputs .form-control {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .crm-solution-section {
        padding: 40px 15px;
    }

    .crm-solution-section .custom-h1 {
        font-size: 2rem;
    }

    .crm-solution-section .custom-lead {
        font-size: 1rem;
        margin-bottom: 30px;
    }

}



.crm-tabs-section {
    padding: 10px 10px;
    background-color: var(--bs-light-bg);
    text-align: center;
}

.crm-tabs-section .section-heading {
    color: var(--bs-dark-text);
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 40px;
}


.crm-tabs-section .nav-tabs {
    border-bottom: none;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.crm-tabs-section .nav-tabs .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    border: none;
    border-bottom: 4px solid transparent;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    color: var(--bs-light-text);
    transition: all 0.3s ease;
    background-color: transparent;
}

.crm-tabs-section .nav-tabs .nav-link:not(.active):hover {
    color: var(--bs-dark-text);
    border-color: rgba(0, 140, 140, 0.3);
}

.crm-tabs-section .nav-tabs .nav-link.active {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    background-color: transparent;
}

@media (max-width: 768px) {
    .crm-tabs-section .section-heading {
        font-size: 2.5rem;
    }

    .crm-tabs-section .nav-tabs .nav-link {
        font-size: 1.2rem;
    }

    .crm-tabs-section .nav-tabs {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .crm-tabs-section {
        padding: 40px 15px;
    }

    .crm-tabs-section .section-heading {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .crm-tabs-section .nav-tabs {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .crm-tabs-section .nav-tabs .nav-link {
        font-size: 1.1rem;
        padding-bottom: 8px;
    }
}

/* Tab Content */
.crm-tabs-section .tab-content {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.crm-tabs-section .tab-pane {
    color: var(--bs-dark-text);
}

.feature-content-block {
    text-align: left;

}

.feature-content-block .feature-image {
    flex-shrink: 0;
    max-width: 40%;
    text-align: center;
}

.feature-content-block .feature-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


.feature-content-block .feature-text h3 {
    color: var(--bs-dark-text);
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-content-block .feature-text p {
    color: var(--bs-light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-content-block .feature-text .btn-online {
    background-color: var(--bs-primary);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.feature-content-block .feature-text .btn-online:hover {
    background-color: #007070;
}

@media (max-width: 991.98px) {
    .feature-content-block {
        flex-direction: column;
        text-align: center;

    }

    .feature-content-block .feature-image {
        max-width: 70%;
    }

    .feature-content-block .feature-text h3 {
        font-size: 1.8rem;
    }

    .feature-content-block .feature-text p {
        font-size: 1.2rem;
        text-align: justify;
    }
}

@media (max-width: 576px) {
    .feature-content-block {
        padding: 0 10px;
    }

    .feature-content-block .feature-image {
        max-width: 100%
    }

    .feature-content-block .feature-text h3 {
        font-size: 1.5rem;
    }

    .feature-content-block .feature-text p {
        font-size: 0.9rem;
    }

    .feature-content-block .feature-text .btn-online {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}


.crm-categories-section {
    padding: 60px 20px;
    background-color: white; 
    text-align: center;
}

.crm-categories-section .nav-pills {
    justify-content: center; 
    margin-bottom: 50px; 
    flex-wrap: wrap; 
    gap: 10px; 
}

.crm-categories-section .nav-pills .nav-item {
    margin: 5px; 
}

.crm-categories-section .nav-pills .nav-link {
    font-size: 1.1rem; 
    font-weight: 600;
    color: var(--bs-dark-text); 
    background-color: #F8F9FA; 
    border-radius: 8px; 
    padding: 12px 25px;
    transition: all 0.3s ease; 
    border: 1px solid #E0E0E0;
}

.crm-categories-section .nav-pills .nav-link:not(.active):hover {
    color: var(--bs-primary); 
    background-color: var(--bs-light-bg);
    border-color: var(--bs-primary); 
}

.crm-categories-section .nav-pills .nav-link.active {
    background-color: var(--bs-primary);
    color: white; 
    border-color: var(--bs-primary);
}


.crm-feature-item .icon img {
    width: 60px; 
    height: 60px;
    margin-bottom: 20px;
}


.crm-feature-item h4 {
    color: var(--bs-dark-text);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.crm-feature-item p {
    color: var(--bs-light-text); 
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .crm-categories-section .nav-pills .nav-link {
        font-size: 1rem;
        padding: 10px 20px;
    }
    .crm-feature-item {
        flex: 1 1 calc(50% - 30px); 
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 767.98px) {
    .crm-categories-section {
        padding: 14px 15px;
    }
    .crm-categories-section .nav-pills {
        gap: 8px;
        margin-bottom: 40px;
    }
    .crm-feature-item {
        flex: 1 1 100%; 
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .crm-categories-section .nav-pills .nav-link {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    .crm-feature-item {
        padding: 20px;
    }
    .crm-feature-item .icon {
        font-size: 2.5rem;
    }
    .crm-feature-item .icon img {
        width: 50px;
        height: 50px;
    }
    .crm-feature-item h4 {
        font-size: 1.2rem;
    }
    .crm-feature-item p {
        font-size: 0.9rem;
    }
}


/* 
why choos us  */
.why-choose-crm-section {
    padding: 80px 20px; 
    background-color: var(--bs-light-bg); 
    text-align: center;
}

/* Main Heading */
.why-choose-crm-section .section-heading {
    color: var(--bs-dark-text); 
    font-size: 3.2rem; 
    line-height: 1.2;
    margin-bottom: 40px; 
}

/* Description Paragraphs */
.why-choose-crm-section .description-text {
    max-width: 900px; 
    margin: 0 auto 60px auto; 
    color: var(--bs-light-text);
    font-size: 1.1rem;
    line-height: 1.7;
}

.why-choose-crm-section .description-text p {
    margin-bottom: 20px; 
}

/* Statistics/Icon Grid */
.crm-stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

/* Individual Statistic Item */
.crm-stat-item {
    flex: 1 1 calc(25% - 40px); 
    max-width: calc(25% - 40px);
    background-color: white; 
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); 
    text-align: center;
    min-width: 200px;
}

.crm-stat-item .icon-circle {
    width: 80px; 
    height: 80px;
    border-radius: 50%; /* Make it a circle */
    background-color: white; /* White background for the circle itself */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px auto; /* Center circle and add space below */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Shadow for the circle */
}

.crm-stat-item .icon-circle img {
    width: 50px; 
    height: 50px;
  
}
.crm-stat-item .icon-circle img {
    filter: invert(15%) sepia(82%) saturate(1000%) hue-rotate(190deg) brightness(80%) contrast(100%);
}


.crm-stat-item .statistic-value {
    color: var(--bs-dark-text); 
    font-size: 2.5rem; 
    font-weight: 700; 
    margin-bottom: 10px;
    line-height: 1.1;
}

.crm-stat-item .statistic-label {
    color: var(--bs-light-text);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .why-choose-crm-section .section-heading {
        font-size: 2.5rem;
    }
    .why-choose-crm-section .description-text {
        font-size: 1rem;
        margin-bottom: 50px;
    }
    .crm-stats-grid {
        gap: 20px;
    }
    .crm-stat-item {
        flex: 1 1 calc(50% - 30px); 
        max-width: calc(50% - 30px);
        padding: 25px 15px;
    }
    .crm-stat-item .icon-circle {
        width: 70px;
        height: 70px;
    }
    .crm-stat-item .icon-circle img {
        width: 45px;
        height: 45px;
    }
    .crm-stat-item .statistic-value {
        font-size: 2rem;
    }
    .crm-stat-item .statistic-label {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .why-choose-crm-section {
        padding: 60px 15px;
    }
    .crm-stats-grid {
        flex-direction: column; 
        align-items: center;
        gap: 25px;
    }
    .crm-stat-item {
        flex: 1 1 100%;
        max-width: 300px; 
        padding: 20px;
    }
    .crm-stat-item .icon-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    .crm-stat-item .icon-circle img {
        width: 40px;
        height: 40px;
    }
    .crm-stat-item .statistic-value {
        font-size: 1.8rem;
    }
    .crm-stat-item .statistic-label {
        font-size: 0.9rem;
    }
}

/* 
faq */

/* FAQ Section Styles */
.faq-section {
    padding: 80px 20px;
    background-color: white; 
    text-align: center;
}

/* FAQ Main Heading */
.faq-section .section-heading {
    color: var(--bs-dark-text); 
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 50px; /* Space below heading */
}


.faq-section .accordion-item {
    background-color: white; 
    border: none; 
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); 
    margin-bottom: 20px; 
}

/* Accordion Button (Question) Styling */
.faq-section .accordion-button {
    background-color: white;
    color: var(--bs-dark-text); 
    font-size: 1.25rem; 
    font-weight: 600; 
    padding: 20px 25px; 
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); 
    border-radius: 10px; 
    transition: all 0.3s ease; 
    box-shadow: none; 
}


.faq-section .accordion-button:hover {
    color: var(--bs-primary); 
    background-color: var(--bs-light-bg); 
    border-bottom-color: var(--bs-primary); 
}

.faq-section .accordion-body {
    color: var(--bs-light-text);
    font-size: 1rem;
    line-height: 1.6;
    padding: 20px 25px; 
    text-align: left;
}

.faq-section .accordion-button:focus {
    box-shadow: none !important;
}

/* --- "View More" Button Styling --- */
.faq-section .btn-view-more {
    background-color: var(--bs-primary); 
    color: white;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    border: none;
    transition: background-color 0.3s ease;
    margin-top: 40px; /* Space above the button */
}

.faq-section .btn-view-more:hover {
    background-color: #007070; 
    color: white; 
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .faq-section .section-heading {
        font-size: 2.5rem;
    }
    .faq-section .accordion-button {
        font-size: 1.1rem;
        padding: 18px 20px;
    }
    .faq-section .accordion-body {
        font-size: 0.95rem;
        padding: 18px 20px;
    }
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 60px 15px;
    }
    .faq-section .section-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .faq-section .accordion-item {
        margin-bottom: 15px;
    }
    .faq-section .accordion-button {
        font-size: 1rem;
        padding: 15px 18px;
    }
    .faq-section .accordion-body {
        font-size: 0.9rem;
        padding: 15px 18px;
    }
    .faq-section .btn-view-more {
        width: 100%;
        font-size: 1rem;
        padding: 12px 25px;
    }
}


/* happy customer */
/* General section styling */
.happy-customers-section {
    position: relative;
    padding: 20px 20px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.description-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Testimonial Card Styling */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.quote-icon {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 10px;
    line-height: 0.5;
}

.quote-text {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Customer Info */
.customer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-avatar {
    width: 40px;
    height: 40px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
}

.customer-name {
    font-weight: 600;
    font-size: 1rem;
}

/* Carousel Control Indicators */
.carousel-indicators {
    bottom: -30px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #0d6efd;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
}

/* Patterns (optional background decoration) */
.bg-pattern-left,
.bg-pattern-right {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.bg-pattern-left {
    left: 0;
    background-image: url('left-pattern.png'); /* replace with your actual image */
}

.bg-pattern-right {
    right: 0;
    background-image: url('right-pattern.png'); /* replace with your actual image */
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }

    .description-text {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .carousel-indicators {
        bottom: -40px;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        max-width: 100%;
    }

    .carousel-item .testimonial-card.d-none.d-sm-block {
        display: none !important;
    }
}

/* 
blogs */

.our-blogs-section {
    padding: 80px 20px;
    background-color: white; 
    text-align: center;
}

/* Main Heading */
.our-blogs-section .section-heading {
    color: var(--bs-dark-text); /* Dark text for the heading */
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 15px; /* Space below heading */
}

/* Sub-description text */
.our-blogs-section .section-sub-heading {
    color: var(--bs-light-text); /* Light text for description */
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 50px; /* Space below description */
    max-width: 800px; /* Limit width for readability */
    margin-left: auto;
    margin-right: auto;
}

/* --- Blog Card Styling --- */

.blog-card {
    border: none; 
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); 
    overflow: hidden; 
    height: 100%; 
    display: flex;
    flex-direction: column;
}


.blog-card .card-top-image.blog-1 {
    background-image: url('/Images/blosg1.jpg'); 
}
.blog-card .card-top-image.blog-2 {
    background-image: url('/Images/blosg1.jpg'); 
}
.blog-card .card-top-image.blog-3 {
    background-image: url('/Images/blosg1.jpg'); 
}

/* Card Body */
.blog-card .card-body {
    padding: 25px;
    text-align: left;
    flex-grow: 1; 
}

.blog-card .card-title {
    color: var(--bs-dark-text); 
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: -webkit-box; 
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .card-text {
    color: var(--bs-light-text); 
    font-size: 1rem;
    line-height: 1.6;
    display: -webkit-box; 
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Footer (Metadata) */
.blog-card .card-footer {
    background-color: white; 
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    color: var(--bs-light-text);
    font-size: 0.9rem;
}

.blog-card .card-footer .meta-item {
    display: flex;
    align-items: center;
}

.blog-card .card-footer .meta-item i {
    margin-right: 5px;
    color: var(--bs-primary); 
}


/* "View More" Button */
.our-blogs-section .btn-view-more {
    background-color: var(--bs-primary); 
    color: white;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    border: none;
    transition: background-color 0.3s ease;
    margin-top: 60px; 
}

.our-blogs-section .btn-view-more:hover {
    background-color: #007070; 
    color: white;
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .our-blogs-section .section-heading {
        font-size: 2.5rem;
    }
    .our-blogs-section .section-sub-heading {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    .blog-card .card-top-image {
        font-size: 1.4rem;
        height: 180px;
    }
    .blog-card .card-title {
        font-size: 1.2rem;
    }
    .blog-card .card-text {
        font-size: 0.95rem;
    }
    .our-blogs-section .btn-view-more {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .our-blogs-section {
        padding: 60px 15px;
    }
    .our-blogs-section .section-heading {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .our-blogs-section .section-sub-heading {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    .blog-card .card-top-image {
        font-size: 1.2rem;
        height: 160px;
    }
    .blog-card .card-body {
        padding: 20px;
    }
    .blog-card .card-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .blog-card .card-text {
        font-size: 0.85rem;
    }
    .blog-card .card-footer {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    .our-blogs-section .btn-view-more {
        width: 100%;
        font-size: 1rem;
        padding: 12px 25px;
        margin-top: 30px;
    }
}



/* footer */


.crm-footer .footer-about {
    margin-bottom: 30px; 
}

.crm-footer .footer-logo {
    max-width: 200px; /* Adjust logo size */
    height: auto;
    margin-bottom: 20px;
    display: block; 
}

.crm-footer .footer-description {
    color: black;
}

.crm-footer .footer-nav-column {
    margin-bottom: 30px; 
}

.crm-footer .footer-nav-column h5 {
    color: black;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.crm-footer .footer-nav-column ul {
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
}

.crm-footer .footer-nav-column ul li {
    margin-bottom: 10px; 
}

.crm-footer .footer-nav-column ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}



.crm-footer .footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: black;
}
/*  */

.crm-footer .footer-contact .contact-item p {
    margin: 0;
    color: black;
}

.crm-footer .footer-contact .contact-item a {
    color: inherit; 
    text-decoration: none;
    transition: color 0.3s ease;
}

.crm-footer .footer-contact .contact-item a:hover {
    color: var(--bs-primary); 
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .crm-footer {
        padding: 40px 15px;
        text-align: center; 
    }
    .crm-footer .footer-about {
        text-align: center;
    }
    .crm-footer .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    .crm-footer .footer-nav-column h5 {
        text-align: center;
    }
    .crm-footer .footer-nav-column ul {
        text-align: center;
    }
    .crm-footer .footer-contact .contact-item {
        justify-content: center; 
        text-align: left; 
    }
    .crm-footer .footer-contact .contact-item i {
        margin-right: 10px;
    }
}



/* price page */

    .currency-toggle {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 25px;
      gap: 10px;
    }

    .pricing-table-container {
      max-width: 100%;
      overflow-x: auto;
    }

    .table {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      border-collapse: separate;
      border-spacing: 0;
      overflow: hidden;
    }

    .table thead th {
      text-align: center;
      color: #343a40;
      font-size: 1.05rem;
      padding: 15px;
      white-space: nowrap;
    }

    .table thead th:first-child {
      text-align: left;
      padding-left: 30px;
      border-top-left-radius: 15px;
    }

    .table thead th:last-child {
      border-top-right-radius: 15px;
    }

    .table tbody td {
      vertical-align: middle;
      text-align: center;
      padding: 15px 10px;
      border-top: 1px solid #f1f1f1;
      font-size: 0.95rem;
    }

    .table tbody td:first-child {
      text-align: left;
      padding-left: 30px;
      font-weight: 500;
      color: #212529;
      white-space: nowrap;
    }

    .table tbody tr:hover {
      background-color: #fdfdfd;
    }

    .price-cell-content {
      display: none;
      flex-direction: column;
      align-items: center;
    }

    .price-cell-content.active {
      display: flex;
    }

    .current-price {
      font-size: 1.3rem;
      font-weight: 700;
      color: #007bff;
    }

    .current-price small {
      font-size: 0.75rem;
      margin-left: 5px;
      color: #6c757d;
    }

    .old-price {
      font-size: 0.8rem;
      color: #adb5bd;
      text-decoration: line-through;
      margin-top: 4px;
    }

    .icon-check {
      color: #28a745;
      font-size: 1.2rem;
    }

    .icon-cross {
      color: #dc3545;
      font-size: 1.2rem;
    }

    @media (max-width: 576px) {
      .table thead th,
      .table tbody td {
        font-size: 0.8rem;
        padding: 10px;
      }

      .current-price {
        font-size: 1rem;
      }

      .old-price {
        font-size: 0.65rem;
      }
    }


    .cont-form-des h5 {
  color: var(--bs-primary);
}

.cont-form-des p,
.cont-form-des a {
  color: var(--bs-dark-text);
}

.cont-form-des a:hover {
  color: var(--bs-primary); 
}
.enuqiuirysubmit{
    background-color: var(--bs-primary);
}
.icons_contact{
    color: var(--bs-primary);

}