:root {
    --primary-color: #1a73e8;
    --secondary-color: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --border-color: #e9ecef;
}

body {
   font-family: AvenirNextLTProRegular;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.top-left-logo img {
    height: 40px;
    width: auto;
}

.btn-get-started {
    background: #135FFC;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 0;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background: #135FFC;
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(135deg, #DEE2E7 0%, #DEE2E7 100%);
     /* background: url('images/framedashboard.png') no-repeat center center/cover; */
    /* color: white; */
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: #135FFC1F;
    padding: 8px 16px;
    border-radius: 2cm;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    color: #2F5597;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-title1 {
    font-size: 3.5rem;
    color: #231F20;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
    font-weight: 500;
}

.hero-dashboard {
    position: relative;
    margin-top: 50px;
}

.dashboard-mockup {
    background: white;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
    background: #f8f9fa;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 0;
    margin-right: 8px;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28ca42; }

.dashboard-content {
    position: relative;
    padding: 0;
    background: #000;
    height: 400px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(0,0,0,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.dashboard-mockup:hover .video-overlay {
    opacity: 1;
    pointer-events: auto;
}

.video-play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-button:hover {
    background: white;
    transform: scale(1.1);
}

.video-play-button i {
    color: var(--primary-color);
    font-size: 24px;
    margin-left: 3px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .dashboard-mockup {
        transform: none;
        margin-top: 30px;
    }
    .dashboard-content {
        height: 250px;
    }
}

.why-choose-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.demo-section {
    padding: 100px 0;
    background: url('images/frameDemo.png') no-repeat center center/cover;
    color: white;
    position: relative;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); Overlay to improve text readability */
    z-index: 1;
}

.demo-section > .container {
    position: relative;
    z-index: 2;
}

.demo-request-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 0;
    color: var(--text-dark);
}

.form-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-subtext {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    width: 80px;
    flex-shrink: 0;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.submit-btn {
    width: 100%;
    background: #135FFC;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 0;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1557b0;
}

/* ... (previous CSS content remains unchanged until key-features-section) ... */

.key-features-section {
    padding: 100px 0;
    background: #ECF2F9; /* Light blue background as per image */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 32px;
}

.subtitle span {
    color: var(--primary-color);
    font-weight: 600;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-check {
    width: 20px;
    height: 20px;
    background: #28a745; /* Green check background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.roles {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 20px;
}

.feature-dashboard {
    position: relative;
    padding: 20px;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ... (rest of the CSS content remains unchanged) ... */

/* .features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
} */
/* 
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
} */

/* .feature-check {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
} */

/* .feature-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
} */

/* .feature-dashboard {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
} */
/* 
.dashboard-overview {
    margin-bottom: 20px;
} */

/* .overview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
} */

/* .live-badge {
    background: #28ca42;
    color: white;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 0;
} */

/* .overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
} */

/* .overview-stat {
    background: white;
    padding: 15px;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
} */

/* .stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
} */

/* .stat-name {
    font-size: 0.9rem;
    color: var(--text-light);
} */

.additional-stats {
    display: flex;
    justify-content: space-between;
}

.additional-stat {
    text-align: center;
}

.additional-stat-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.additional-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 15px;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-answer {
    display: none;
    padding: 15px;
    background: #fff;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
}