/* ===============================
   Root Variables & Global Styles
=============================== */

:root {
  --primary: #2563eb;
  --secondary: #0ea5e9;
  --success: #22c55e;
  --dark: #1e293b;
  --light: #f8fafc;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --transition: all 0.3s ease-in-out;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
}
a {
  text-decoration: none;
  color: inherit;
}

/* ===============================
   Hero Banner
=============================== */
.hero-banner {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    position: relative;
    border-radius: var(--radius);
}

.software-intro {
    text-align: center; /* Centers text horizontally */
    margin: 2rem 0;     /* Optional vertical spacing */
}

.software-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.software-intro p {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.software-preview {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.overlay-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
}

.highlight-point i {
    color: #25d366;
}

.floating-image {
    width: 100%;
    max-width: 700px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: auto;
    display: block;
}

/* Demo Buttons */
.demo-button-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.demo-button,
.quote-button {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.demo-button {
    background: var(--primary);
    color: white;
}

.demo-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.quote-button {
    background: #25d366;
    color: white;
    text-decoration: none;
}

.quote-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}



/* ===============================
   Modal
=============================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: var(--radius);
    max-width: 500px;
    position: relative;
}

.modal-content h2 {
    margin-bottom: 1rem;
}

.modal-content .form-group {
    margin-bottom: 1rem;
}

.modal-content label {
    display: block;
    margin-bottom: 0.3rem;
}

.modal-content input,
.modal-content select {
    width: 100%;
    padding: 0.5rem;
    border-radius: var(--radius);
    border: 1px solid #ccc;
}

.submit-button {
    background: #25d366;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* ===============================
   Animations
=============================== */
.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===============================
   Responsive
=============================== */
@media (max-width: 1024px) {
    .software-intro h2 { font-size: 2rem; }
    .software-intro p { font-size: 1rem; }
}

@media (max-width: 768px) {
   
    .fa-x.not-show { display: none; }
    .fa-bars.not-show { display: none; }

    .demo-button-container { flex-direction: column; gap: 0.5rem; }
   
}

@media (max-width: 480px) {
   
    .software-intro h2 { font-size: 1.5rem; }
    .demo-button, .quote-button { width: 100%; justify-content: center; }
}
