/* ===================================
   Sales Order Management - Compiled CSS
   Color Theme: #12b08e (Primary) | #dbfdf9 (Secondary)
   =================================== */


     :root {
            --primary-color: #12b08e;
            --light-bg: #dbfdf9;
            --dark-text: #1a1a1a;
            --border-radius: 12px;
        }

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

a {
    color: #12b08e;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #0a8b6f;
}


/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #dbfdf9 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background-color: #dbfdf9;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.hero-title {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title span {
    color: #12b08e;
}

.hero-subtitle {
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-custom {
    background: linear-gradient(135deg, #12b08e 0%, #0a8b6f 100%);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #ffffff !important;
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(18, 176, 142, 0.3);
}
.bg-white:hover{
color:black !important;
}

.btn-custom-outline {
    border: 2px solid #12b08e;
    color: #12b08e;
    background-color: #ffffff;
    font-weight: 600;
    padding: 10px 26px;
    transition: all 0.3s ease;
}

.btn-custom-outline:hover {
    background-color: #12b08e;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline{
border: 2px , #12b08e;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-image .illustration-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(18, 176, 142, 0.1));
}

/* Overview Section */
.overview-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
 }

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #12b08e;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card.card-hover:hover {
    box-shadow: 0 12px 24px rgba(18, 176, 142, 0.25);
    border-color: #12b08e;
    transform: translateY(-8px);
}

.feature-card.card-hover:hover .feature-icon {
    background-color: #12b08e;
    color: #ffffff;
    transform: scale(1.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dbfdf9;
    color: #12b08e;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-title {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Example Section */
.example-section {
    padding: 80px 0;
    background: #ffffff;
}

.example-box {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
height:500px;
}

.example-box h4 {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.example-box.bg-success-light {
    background-color: rgba(40, 167, 69, 0.05);
    border-color: #12b08e;
}

.example-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.example-list li {
    margin-bottom: 1.2rem;
    color: #666;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.example-list li i {
    margin-right: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Benefits Section */

/* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .benefit-item {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            background: var(--light-bg);
            transform: translateY(-3px);
        }

        .benefit-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .benefit-item h5 {
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 10px;
        }



/* Features Deep Dive */
.features-section {
    padding: 80px 0;
    background: #ffffff;
}

.feature-detailed {
    background: linear-gradient(135deg, #dbfdf9 0%, #ffffff 100%);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-detailed:hover {
    box-shadow: 0 12px 24px rgba(18, 176, 142, 0.25);
    border-color: #12b08e;
}

.feature-detailed h4 {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-detailed p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

.feature-detailed i {
    color: #12b08e;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    margin-bottom: 1.5rem;
    color: #666;
    padding-left: 0;
    font-size: 1rem;
    line-height: 1.8;
}

.why-list li strong {
    color: #1a1a1a;
}

.why-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.why-image .illustration-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(18, 176, 142, 0.1));
}

/* Call-to-Action Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #12b08e 0%, #0a8b6f 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.cta-buttons {
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
}

/* Modal Styling */
.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-content .modal-header {
    background-color: #dbfdf9;
}

.modal-content .modal-header h5 {
    color: #1a1a1a;
    font-weight: 700;
}

.modal-content .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.modal-content .form-control:focus {
    border-color: #12b08e;
    box-shadow: 0 0 0 0.2rem rgba(18, 176, 142, 0.25);
}

.modal-content .form-label {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}


/* Utility Classes */
.bg-success-light {
    background-color: rgba(40, 167, 69, 0.05) !important;
}

.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-primary {
    color: #12b08e !important;
}

.bg-primary-light {
    background-color: #dbfdf9 !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .hero-image,
    .why-image {
        min-height: 300px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        margin: 0 auto;
    }

    .navbar-nav {
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0 !important;
        padding: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.4rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .lead {
        font-size: 1rem;
    }

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

    .btn-custom,
    .btn-custom-outline {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

.btn-style1{
  border: none;
  background-color: #28a78e;
  padding: 0.5em 3em;
  color: #131313;
  font-weight: 700;
  border-radius: 30px;
  font-size: 18px;
}

.clr-star{
  color: #F5B82B;
}
.clr-green {
  color: #13b494;
}




@media (max-width: 767px) {
    .example-box {
        height: auto;          /* IMPORTANT */
        padding: 1.5rem;       /* Reduce padding */
    }

    .example-section h2 {
        font-size: 1.4rem;
    }

    .example-box h4 {
        font-size: 1.1rem;
    }

    .example-list li {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}
