* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #16a34a;
    --secondary-color: #059669;
    --accent-color: #ea580c;
    --success-color: #16a34a;
    --warning-color: #d97706;
    --error-color: #dc2626;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    scroll-behavior: smooth;
}

  /* .soft-dividerx {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #0f0f0f, transparent);
  margin: 32px 0;
  clear: both;
 display: block;
} */



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Navigation */
.navbar {
    padding: 0 20px;               /* navbar padding */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
     
}


.nav-container {
    max-width: 1200px;
    margin: 0 auto;                /* centers it horizontally */
    padding: 0 var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}


.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center; 
}

.menu-button {
  width: 120px; /* Or any fixed width you want */
  height: auto;  /* keeps the current height */
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 80px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #dcfce7 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}


.highlight {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-xl);
    line-height: 1.5;
    min-height: 3.75rem;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.hero-subtitle.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.hero-subtitle.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-primary, .btn-secondary {
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    /* background: #1d4ed8; */
    background: linear-gradient(135deg, #4B994E  50%, blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #a5a3a3  50%, blue);
    /* background: var(--primary-color); */
    color: black;
    transform: translateY(-2px);

}


.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}





.hero-video {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-box {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.video-box img,
.video-box iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}









/* Problem & Solution Section */
.problem-solution {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.problems-grid {
    display: flex;
    align-items: center;  /* ✅ Vertically center both columns */
    gap: var(--spacing-md);
}

.problem-card-stack {
    flex: 0 0 100%;           /* Take 60% of the width */
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.problem-card-image {
    flex: 0 0 100%;           /* Take 40% of the width */
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
}

.problem-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--bg-white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.problem-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.problem-card h3,
.problem-card p {
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .problems-grid {
        flex-direction: column;
    }
    .problem-card-stack,
    .hero-image {
        flex: 0 0 100%;
    }

  .problem-card {
        display: block;           /* Stack elements vertically */
        text-align: left;         /* Keep text aligned */
         flex-direction: column;   /* Stack vertically */
        align-items: flex-start;  /* Keep text left-aligned */
    }

    .problem-card h3 {
        margin-bottom: 8px;       /* Add spacing between title and paragraph */
    }

    .problem-card p {
        display: block;           /* Ensure paragraph starts on its own line */
    }

}






/* .solution-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 800px;
    margin: 0 auto;
}

.solution-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.125rem;
    color: var(--text-dark);
} */

/* .checkmark {
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.25rem;
} */

/* Features Section */
.features {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.featureheader-image img {
    max-width: 600px;      /* size as needed */
    margin-top: 20px;
    height: auto;
}

@media (max-width: 768px) {
       .featureheader-image img {
        max-width: 400px; /* smaller image on mobile */
    }
}

.feature-card {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column; /* stack content top to bottom */
}

.feature-image {
    flex: 1;                     /* take up remaining space in card */
    display: flex;
    align-items: center;         /* center vertically */
    justify-content: center;     /* center horizontally */
}

.feature-image img {
    width: 100%;                 /* fill width of container */
    height: 100%;                /* fill height of container */
    object-fit: contain;         /* keep proportions without cropping */
    border-radius: var(--border-radius-lg);
}

.feature-card:not(:has(.feature-image)) {
    justify-content: flex-start; /* text cards stay top aligned */
}

.feature-card:has(.feature-image) {
    justify-content: center; /* image cards center vertically */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* .feature-list li {
    padding: 4px 0;
    color: var(--text-gray);
    font-size: 0.95rem;
} */

.feature-list li {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.feature-list li:hover {
    background-color: #f0f4ff; /* light background on hover */
    color: var(--success-color);
    transform: translateX(5px); /* subtle slide effect */
}

.feature-list li:first-child {
    color: var(--success-color);
    font-weight: 600;
}

/* Industries Section */
.industries {
    padding: var(--spacing-2xl) 0;
     background: var(--bg-light);
}

.industry-detail{
     background: var(--bg-white);
     box-shadow: var(--shadow);
}


.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    gap: var(--spacing-lg);
}

.industry-card {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.industry-card:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}


@media (max-width: 768px) {
  .industries-grid {
    display: flex;
    flex-wrap: wrap;      /* allow items to go to next line */
    gap: var(--spacing-md);
    padding-bottom: 0.5rem;
  }

  .industry-card {
    flex: 1 1 150px;      /* grow and shrink, starting from 150px */
    min-width: 120px;     /* minimum width of a card */
    max-width: 1fr;       /* optional: prevent stretching too much */
  }
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.industry-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.industry-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.industry-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing Section */
.pricing {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.pricing-table {
    overflow-x: auto;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.pricing-table th:first-child {
    text-align: left;
}

.pricing-table td {
    text-align: center;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.check {
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.cross {
    color: var(--error-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.pricing-row {
    background: var(--bg-light);
}

.pricing-row td {
    font-size: 1.125rem;
    color: var(--primary-color);
}

/* About Section */
.about {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.stat {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stat p {
    color: var(--text-gray);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);

    /* padding: 120px 0 80px; */
    
    position: relative;
    overflow: hidden;
    
    
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--bg-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
}

.contact-form {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    padding: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-sm);
    color: white;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    border-top-width: 4px;
    border-top-color: var(--primary-color);
    padding-top: var(--spacing-lg);
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    /* margin: 0 -2rem; */
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom p {
    color: white;
    font-weight: 600;
}

/* Demo Float */
.demo-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.demo-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    user-select: none;
    will-change: transform;
    animation: bounce 1.5s ease;
    animation-iteration-count: infinite; /* infinite bounce */
}

.demo-button span {
    pointer-events: none; /* ensures click always hits parent */
}

.demo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--primary-color) 50%, blue);
    animation: bounce 1s;
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.demo-text {
    font-weight: 700;
    font-size: 16px
}



.demo-icon {
    font-size: 1.5rem;
}

.demo-form {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--bg-white);
    width: 350px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.demo-form.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.demo-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-light);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.demo-form-header h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.125rem;
}


/* ------------------------------- */

/* Default stacked layout (portrait, desktop, etc.) */
.demo-form-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-group {
  width: 100%;
}

.input-group.full-width {
  width: 100%;
}

.input-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Landscape small screen layout Mymobile landscape */
/* @media (max-width: 768px) and (orientation: landscape) { */
@media (max-width: 844px) and (orientation: landscape)  {

.demo-form {
     position: fixed;   /* or absolute */
     bottom: 0px; 
     max-height: 100%; 
     overflow-y: auto; 
     margin-right: 50px;
    }


  .input-row {
    flex-direction: row;
    gap: 10px;
  }

  .input-row .input-group {
    flex: 1;
  }

  .input-group.full-width textarea {
    width: 100%;
    resize: vertical;
  }

  .input-group.full-width button {
    width: 100%;
  }


  /* hamburger logic starts */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;}
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: var(--spacing-lg) 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
        margin-right:15px;
    }
    
 .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* hamburger logic Ends */


}

/* ------------------------------------- */


.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-gray);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-btn:hover {
    background: var(--border-color);
    color: var(--text-dark);
}

.demo-form form {
    padding: var(--spacing-md);
}

.demo-form .form-group {
    margin-bottom: var(--spacing-sm);
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    transition: var(--transition);
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.demo-form .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
    margin-top: var(--spacing-xs);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-container {
        flex-direction: column; 
        gap: var(--spacing-xl);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    

    .navbar {
    position: fixed;
    top: 0;
    width: 100%;}
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: var(--spacing-lg) 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
        margin-right:15px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        /* justify-content: center;
        flex-wrap: wrap; */
        display: flex;
    justify-content: center; /* centers horizontally */
    /* gap: 16px; optional spacing between buttons */
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .problems-grid,
    .features-grid,
    .industries-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .about-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .demo-form {
        width: 500px;
        margin-right: 30px;
    }
    
    .demo-float {
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-xs);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .demo-form {
        width: 280px;
        right: -30px;
    }
    
    .demo-button {
        padding: 12px 16px;
    }
    
    .demo-text {
        font-size: 0.9rem;
    }
}

/* Animation utilities */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .section-header,
    .problem-card,
    .feature-card,
    .industry-card,
    .about-content {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    
    .animate-in {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base style for all header buttons */
thead button {
    display: inline-block;
    width: 120px;              /* fixed width for identical size */
    height: 30px;              /* fixed height for identical size */
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase; /* optional: make text all caps */
}

/* Colors + hover effects */
.basic-btn {
    background-color: #28a745; /* Green */
}
.basic-btn:hover {
    background-color: #218838;
    transform: scale(1.05);
}

.pro-btn {
    background-color: #fd7e14; /* Orange */
}
.pro-btn:hover {
    background-color: #e76e00;
    transform: scale(1.05);
}

.enterprise-btn {
    background-color: #007bff; /* Blue */
}
.enterprise-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.social-logo {
   background-color: green; border-radius: 25%; width: 40px; height: 40px;
}

@media (max-width: 768px) {

.social-box {
    display: flex;
    justify-content: center; /* centers the icons horizontally */
    gap: 10px; /* optional spacing between icons */
}

}


.demo-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background:  #e6f4ea;  /*    #fff3cd;         / Light green */
    color: #1b5e20;                /* Dark green text */
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #1b5e20;     /* Optional border for contrast */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9999;
    font-family: sans-serif;
}

.demo-toast.show {
    opacity: 1;
}

.underline-animate {
    position: relative;
    display: inline-block;
}

.underline-animate::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0; /* positions it right under the text */
    height: 3px; /* thickness of the underline */
    background-color:var( green);
    width: 0; /* start at 0 width */
    transition: width 0.5s ease; /* animation speed */
}

.underline-animate:hover::after {
    width: 100%; /* grows to full width */
}

.businessModal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  overflow: auto; 
  background-color: rgba(0,0,0,0.5); 
}

.modal-content {
  background-color: #fff;
  margin: 10% auto; /* a bit higher on the screen */
  padding: 25px 30px;
  border-radius: 8px;
  width: 400px;       /* wider for landscape feel */
  max-width: 90%;     /* responsive for small screens */
  text-align: center;
  align-items: center;    /* vertically center modal */
    justify-content: center; 
}

.btn-primary {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  margin: 10px;
  border: none;
  cursor: pointer;
}
.btn-secondary {
  background-color: #ccc;
  color: black;
  padding: 10px 15px;
  margin: 10px;
  border: none;
  cursor: pointer;
}





.btn-auth-container {
  display: flex;
  gap: 1rem;
justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Base button style */
.btn-auth {
  font-size: 1rem;           /* medium text */
  padding: 0.7rem 1.6rem;    /* balanced padding */
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;          /* same size */
  text-align: center;
  font-weight: 600;
}

/* Primary (eye-catching) */
.btn-try {
  background-color: #16a34a;   /* strong green */
  color: #fff;
}

.btn-try:hover {
  background-color: #22c55e;   /* lighter, vibrant green */
  transform: translateY(-2px); /* subtle lift effect */
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

/* Secondary (less emphasis) */
.btn-login {
  background-color: #bbf7d0;   /* pale green background */
  color: #14532d;              /* dark green text */
}

.btn-login:hover {
  background-color: #86efac;   /* soft green hover */
  color: #065f46;              /* richer dark green */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(134, 239, 172, 0.3);
}

/* Responsive layout */
@media (max-width: 600px) {
  .btn-auth-container {
    /* flex-direction: column; */
    gap: 0.8rem;

  }

  .btn-auth {
    /*  width: 80%;take most of the width */
        font-size: 0.9rem;       /* slightly smaller text */
    padding: 0.6rem 1.2rem;  /* reduced padding */
    min-width: 80px;        /* smaller width */
  }

  .hero-content h1{ padding-bottom: 40px;}

}



.boldbutton {
  margin: 0px;
  height: 40px;
  font-size: large;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0 20px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
}

/* Rolling effect */
.rolling-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  max-width: 0;
  vertical-align: bottom;
  animation: rollout 7s ease forwards infinite;
  animation-delay: 1s;
}

@keyframes rollout {
  0%   { max-width: 0; }
  40%  { max-width: 220px; } 
  99.9%{ max-width: 220px; } 
  100% { max-width: 0; }
}


  /* --------------------------------------------------- */

.soft-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #636262, transparent);
}

  /* --------------------------------------------------- */



   /* --------------------------------------------------- */
/* Modal base styling */
/* ===== Modal Overlay ===== */
.modern-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: rgba(0, 0, 0, .25); /* reduced darkness & blur */
/*  backdrop-filter: blur(2px);  subtle blur only */
  justify-content: center;
  align-items: center;
}

/* ===== Modal Container ===== */
.feedback-modal-content {
  background: #fff;
  border-radius: 16px;
  width: 95%;
  max-width: 470px;
  padding: 24px 28px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.35s ease-out;
  font-family: 'Inter', sans-serif;
}

/* ===== Modal Header ===== */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.modal-header h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin: 0;
  font-weight: 600;
}

.modal-close {
  font-size: 1.4rem;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #000;
}

/* ===== Form Inputs ===== */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  padding: 12px 14px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #333;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

/* ===== Submit Button ===== */
.btn-submit {

  background-color: #218838;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 6px;
  transition: background-color 0.25s;
}

.btn-submit:hover {
  background-color: #155fc9;
}

/* ===== Animation ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .feedbacl-modal-content {
    padding: 20px;
    width: 90%;
  }
}


/*==================== Industry css ======================*/

    .industry-detail {
        display: flex;
        align-items: flex-start;
        gap: 25px;
        margin: 40px ;
        padding-bottom: 25px;
        /* border-bottom: 2px solid #bec0c2; */
    }

    .industry-detail:last-of-type {
        border-bottom: none;
    }

    .industry-detail-icon {
        font-size: 60px;
        min-width: 80px;
        text-align: center;
        line-height: 1;
        margin-left:20px;
    }
    .industry-detail-content{
        margin: 2px 50px 2px 5px;
    }

    .industry-detail-content h3 {
        color: #218838;
        border-left: 5px solid #218838;
        padding-left: 12px;
        margin-top: 15px;
    }

    .industry-detail-content p.intro {
        font-weight: bold;
        font-style: italic;
        margin-top: 5px;
        margin-bottom: 10px;
        margin-left:20px;
        color: #333;
    }

    .industry-list {
        list-style-type: disc;
        margin: 8px 0 15px 40px;
    }

    .industry-list li {
        margin-bottom: 6px;
        line-height: 1.5;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .industry-detail {
            flex-direction: column;
            text-align: left;
            padding-left:25px;
        }

        .industry-detail-icon {
            text-align: left;
            font-size: 48px;
        }
    }



  /* .industry-cta {
    font-size: 14px;
    font-weight: 500;
    align-items: right;
    color: #218838;
    animation: slowBlink 4s ease-in-out infinite;
    border: None;
    cursor: pointer;
}

@keyframes slowBlink {
    0% { opacity: 1; }
    25% { opacity: 0; } 
    50% { opacity: 0.75; }  
    100% { opacity: 1; }
} */


.industry-cta {
  font-size: 14px;
  font-weight: 500;
   color: #218838; 
   font-weight: 700;
  cursor: pointer;
  border: none;
  display: inline-block;
  animation: softPulse 3s ease-in-out infinite;
}

@keyframes softPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.industry-cta:hover {
  color: #1e7e34;
  text-shadow:
    0 0 6px rgba(33,136,56,0.4),
    0 0 12px rgba(33,136,56,0.35),
    0 0 24px rgba(33,136,56,0.25);
  transform: scale(1.06);
}


/* ====Why best============ */
/* GRID WRAPPER */
.whybest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

/* TILE CONTAINER */
.whybest-tile {
  background: white;
  padding: 18px;
  border-radius: 10px;
  /* box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04); */
  box-shadow: var(--shadow);
}

/* CONTENT LAYOUT INSIDE TILE */
.whybest-tile-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* ICONS */
.whybest-icon {
  flex: 0 0 36px;
}

/* TITLE */
.whybest-title {
  display: block;
  font-size: 16px;
  color: #0f172a;
}

/* DESCRIPTION */
.whybest-desc {
  font-size: 14px;
  color: #475569;
}


/* === Video Section ==== */

.video-wrapper {
  max-width: 400px;   /* adjust size */
  margin: 0 auto;     /* center */
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;    /* optional rounded corners */
  box-shadow: 0 4px 20px rgba(0,0,0,0.15); /* optional shadow */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
