@import url('https://fonts.googleapis.com/css2?family=Khula:wght@300;400;600;700;800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
body {
    font-family: "Raleway", sans-serif;
    background-color: #050505;
    margin: 0;
    font-size: 1.2rem;
    color: white;
    max-width: 100%;
}
.hero {
    position: relative;
    z-index: 2;
    padding: 1rem 2rem;
    background-color: #000; 
}

/* Purplish effect under the header */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; 
    background: linear-gradient(
        to bottom,
        rgba(57, 4, 146, 0.6), /* Purplish tint */
        rgba(5, 5, 5, 0) /* Transparent */
    );
    z-index: -1; 
}

.nav-item {
    list-style-type: none;
    margin-left: 1rem;
}
.navbar-brand img {
    width: 180px;
    height: auto;
    max-width: 100%;
}
.navbar{
    display: block;
    align-items: center;
    justify-content: center;
    align-self: center;
}
@media (max-width: 768px) {
    .nav-item {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 6rem;
        margin-bottom: 1rem;
    }
    .navbar{
        height: auto !important;
    }
    
}
.white{
    color: white;
}
/* Primary Button Styles */
.btn-primary {
    background-color: #050505;
    border: none;
    border-radius: 500px;
    color: white !important;
    font-weight: bolder;
    padding: 15px;
}

.bg-darkblue {
    background-color: #390492 ;
}

/* Hero Section Styles */
.hero {
     padding: 5rem 2rem;
 }
 .hero h1 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }
 .hero p {
    font-size: 1.2rem;
}
/* Footer Styles */
.footer {
    background-color: #3B1D70;
    color: #E8DFF1;
}

/* Demo Section */
.demo-section {
    padding: 2rem 1rem;
    border-radius: 10px; 
}

.demo-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.demo-section .btn-outline-demo {
    background-color: #390492;
    color: white !important;
    font-weight: bolder;
    border-color: black;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 500px;
}

.demo-section .btn-outline-demo:hover {
    background-color: #322BAB;
    color: #E8DFF1; 
    
}
/* What Can Do Section */
.what-can-do-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
}

/* Section Heading */
.section-heading {
    margin-bottom: 2rem;
    font-size: 2rem; 
    color: #390492; 
}

/* What Can Do Box */
.what-can-do-box {
    background-color: #390492; 
    color: #E8DFF1; 
    padding: 2rem; 
    border-radius: 12px; 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Box shadow for depth */
    font-size: 1.1rem; 
    max-width: 600px; /* Max width for the box */
    text-align: center; /* Center align text */
    margin: 0 auto; /* Center the box horizontally */
}

/* What Can Do List */
.what-can-do-list {
    list-style-type: disc; 
    padding-left: 1.5rem; 
    margin: 0; 
    text-align: left; 
}

/* What Can Do List Items */
.what-can-do-list li {
    margin-bottom: 1rem; 
}

/* Hover Effect */
.what-can-do-box:hover {
    transform: translateY(-5px); 
    background-color: #2E0860; 
}

/* Responsive Design */
@media (max-width: 768px) {
    .what-can-do-box {
        font-size: 1rem; 
        padding: 1.5rem; 
    }
    .what-can-do-list li {
        margin-bottom: 0.8rem; 
    }
}

/* Section heading styling */
.section-heading {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}


/* Facts & Figures Section */
.facts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Increase the minimum width */
    gap: 1.5rem;
}

.fact-box {
    background-color: #390492;
    color: #E8DFF1;
    padding: 1.5rem; /* Adjust padding for better spacing */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 150px; /* Reduce height to make the box more rectangular */
}

.fact-number {
    font-size: 2.5rem;
    font-weight: bold;
    padding-right: 0.5rem;
    text-align: center;
}

.facts-container p {
    font-size: 1.1rem;
}

/* Typing Animation */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.fact-number {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 0.15em solid #E8DFF1;
    animation: typing 2s steps(30, end) forwards;
}

@media (max-width: 768px) {
    .facts-container {
        grid-template-columns: repeat(2, 1fr); 
    }

    .fact-box {
        height: auto; 
        padding: 1rem;
    }

    .fact-number {
        font-size: 2rem;
    }
}


/* Benefits Container */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Responsive columns with wider minimum width */
    gap: 1.5rem; 
    padding: 1rem; 
}

/* Benefits Container */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 boxes in a single row on large screens */
    gap: 1.5rem; 
    padding: 1rem;
}

/* Benefit Box */
.benefit-box {
    background-color: #390492; 
    color: #E8DFF1;
    padding: 1.5rem; 
    border-radius: 12px; 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Pronounced box shadow */
    font-size: 1.1rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px; /* Height adjustment for a rectangular shape */
    transition: transform 0.3s ease-in-out; /* Hover effect */
}

.benefit-box p {
    margin: 0; /* No margin for tighter text alignment */
}

/* Hover Effect */
.benefit-box:hover {
    transform: translateY(-5px); 
    background-color: #2E0860; 
}

/* Responsive Design */
@media (max-width: 1200px) {
    .benefits-container {
        grid-template-columns: repeat(4, 1fr); /* 4 boxes in a row for medium screens */
    }
}

@media (max-width: 768px) {
    .benefits-container {
        grid-template-columns: repeat(2, 1fr); /* 2 boxes in a row for small screens */
    }
    .benefit-box {
        font-size: 1rem; /* Smaller font for small screens */
        height: 90px; /* Reduced height */
    }
}
/* CRM Integration Section */
.crm-integration-section {
    padding: 2rem 1rem;
    text-align: center;
}

/* Section Title */
.crm-integration-section .section-subtitle {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.crm-integration-section .section-heading {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* CRM Integration Container */
.crm-integration-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

/* CRM Box */
.crm-box {
    background-color: #390492;
    color: #E8DFF1;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: transform 0.3s ease-in-out;
    font-size: 1.1rem;
    text-align: center;
    flex-direction: column; /* Ensure content stacks vertically */
}

.crm-box p {
    margin: 0; /* Remove default paragraph margins */
}

.crm-box:hover {
    transform: translateY(-5px);
    background-color: #2E0860;
}

/* Responsive Design */
@media (max-width: 768px) {
    .crm-integration-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .crm-box {
        font-size: 1rem;
        padding: 1rem;
        height: 90px;
    }

    .crm-integration-section .section-subtitle {
        font-size: 1.6rem;
    }

    .crm-integration-section .section-heading {
        font-size: 1rem;
    }
}

/* Dashboard Box */
.dashboard-box {
    background-color: #390492; 
    color: #E8DFF1;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75px; 
    transition: transform 0.3s ease-in-out; 
    text-align: center; /* Center text horizontally */
    flex-direction: column; /* Stack content vertically */
}

.dashboard-box p {
    margin: 0; /* Remove default paragraph margins */
}

.dashboard-box:hover {
    transform: translateY(-5px); 
    background-color: #2E0860; 
}

/* Section Title and Description */
.dashboard-section .section-heading {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.dashboard-section .section-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Dashboard Container */
.dashboard-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem; 
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-container {
        grid-template-columns: repeat(2, 1fr); 
    }

    .dashboard-box {
        font-size: 0.9rem; 
        min-height: 60px; /* Reduced height for small screens */
    }
}

@media (max-width: 480px) {
    .dashboard-container {
        grid-template-columns: repeat(1, 1fr); /* Single column layout on very small screens */
    }

    .dashboard-box {
        font-size: 0.8rem; 
        min-height: 50px; /* Minimum height for very small screens */
    }
}



/* FAQ Section */
.faq-section {
    padding: 3rem 1.5rem;
    border-radius: 10px;
    color: white; 
}

.faq-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #390492; 
    border-radius: 8px;
}

.faq-card .card-header {
    background-color:black ;
}

.faq-card .btn-link {
    color: white; 
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    padding: 1rem;
    width: 100%;
    display: block;
    background: none;
    border: none;
    transition: color 0.3s;
}

.faq-card .btn-link:hover {
    color: #D0C9E0; 
}

.faq-card .card-body {
    font-size: 1rem;
    color: white; 
    padding: 1.5rem;
    background-color: black;
}