:root {
    --black: #000000;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand .brand-logo {
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--gray-300) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.hero-section {
    padding-top: 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
}

.hero-content h1 {
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content .lead {
    color: var(--gray-600);
    font-size: 1.2rem;
    line-height: 1.8;
}

.btn {
    font-weight: 600;
    transition: var(--transition);
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-dark {
    background: var(--black);
    border: 2px solid var(--black);
}

.btn-dark:hover {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-dark {
    border: 2px solid var(--black);
    color: var(--black);
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
    border: 2px solid var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.dashboard-preview i {
    font-size: 150px;
    color: var(--gray-200);
}

.stats-section h2 {
    margin-bottom: 0.5rem;
}

.stats-section p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.features-section {
    padding: 100px 0;
}

.feature-card {
    padding: 2.5rem;
    height: 100%;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--black);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.modules-section {
    padding: 100px 0;
}

.module-card {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--black);
}

.module-icon {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.module-card:hover .module-icon {
    transform: scale(1.15);
}

.module-card h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefits-section {
    padding: 100px 0;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--black);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.benefit-item h5 {
    margin-bottom: 0.5rem;
}

.benefits-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card {
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--gray-300);
    background: var(--white);
}

.visual-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.problem-list,
.solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li,
.solution-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.visual-card.bg-black li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.problem-list li:last-child,
.solution-list li:last-child {
    border-bottom: none;
}

.problem-list i,
.solution-list i {
    font-size: 1.2rem;
}

.truth-section {
    padding: 100px 0;
}

.truth-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 100%;
}

.truth-card h4 {
    margin-bottom: 1.5rem;
}

.truth-card ul {
    list-style: none;
    padding: 0;
}

.truth-card li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.truth-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.about-section {
    padding: 100px 0;
}

.ideal-customer ul {
    list-style: none;
    padding: 0;
}

.ideal-customer li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
}

.ideal-customer li:last-child {
    border-bottom: none;
}

.ideal-customer li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--black);
}

.cta-section {
    padding: 100px 0;
}

.cta-card {
    padding: 3rem;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.demo-form .form-control,
.demo-form .form-select {
    border: 2px solid var(--gray-300);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.demo-form .form-control:focus,
.demo-form .form-select:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.contact-section {
    padding: 100px 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--gray-300);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.footer {
    padding: 60px 0 30px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gray-300);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .navbar-collapse {
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero-content .d-flex {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1rem;
    }

    .dashboard-preview {
        height: 300px;
    }

    .dashboard-preview i {
        font-size: 100px;
    }

    .feature-card,
    .module-card {
        padding: 1.5rem;
    }

    .benefits-visual {
        margin-top: 3rem;
    }

    .social-links {
        justify-content: center;
    }
}

.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
      @media (max-width: 768px) { 
        .mobilemt { 
          margin-top : 70px;
        }
      }

.enquiry-btn {
    position: fixed;
    right: -40px;
    top: 30%;
    transform: rotate(270deg) !important;
    background-color: #556aa4;
    color: white;
    padding: 6px 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    z-index: 1000;
    border-radius: 4px;
    transition: 0.3s;
}
.btn-primary:hover {

  box-shadow: 0 8px 25px rgba(43, 88, 118, 0.4);
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}
.whatsapp {
    position: fixed;
    bottom: 28px;
    left: 20px;
    z-index: 3;
}
