:root {
    --primary-blue: #007B8C; /* Professional Teal-Blue */
    --accent-orange: #FF8C00; /* Warm, Inviting Orange */
    --dark-grey: #212529; /* Very Dark Grey / Near Black */
    --light-gray: #F8F9FA; /* Off-white / Light Grey */
    --text-color: #343A40; /* Dark Grey for readability */
    --muted-grey: #6C757D; /* For secondary text, borders */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--light-gray);

}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-grey);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
}

a:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

.btn-primary-blue {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary-blue:hover {
    background-color: #005f6b;
    border-color: #005f6b;
}

.btn-accent {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}
@media (max-width:575px) {
    .padd-adaptive{
        padding: 10px!important;
    }
    .display-4{
        font-size: 24px!important;
    }
    .lead{
        font-size: 14px!important;
    }
}

.btn-accent:hover {
    background-color: #cc7000;
    border-color: #cc7000;
}

.text-primary-blue {
    color: var(--primary-blue) !important;
}

.text-accent {
    color: var(--accent-orange) !important;
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--accent-orange);
}

.navbar-brand img {
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(pictures/graphics/abstract-tech-bg.jpg) no-repeat center center/cover;
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 76px; /* Offset for fixed header */
}

.hero-content-panel {
    background-color: rgba(33, 37, 41, 0.85); /* Darker overlay for content */
    backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content-panel h1, .hero-content-panel p {
    color: #fff;
}
.navbar>.container{
    justify-content: center;
}
.hero-content-panel .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
@media (max-width:575px) {
    .hero-content-panel .form-control{
        font-size: 12px;
    }
    .cont-hero-adaptive{
        padding-top: 120px!important;
    }
}
.hero-content-panel .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-content-panel .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.25);
}

/* About Section - Timeline */
.timeline-container {
    position: relative;
    padding: 20px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--primary-blue);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    background-color: var(--primary-blue);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 1;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--accent-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 1;
    border: 3px solid var(--light-gray);
}

.timeline-content {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    width: calc(50% - 70px); /* Adjust width to make space for icon */
    position: relative;
    top: 25px; /* Adjust content position relative to icon */
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-container::before {
        left: 20px;
        transform: translateX(0);
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-bottom: 70px;
    }

    .timeline-date {
        left: 20px;
        transform: translateX(0);
        top: -30px;
    }

    .timeline-icon {
        left: 20px;
        transform: translateX(0);
        top: 25px;
        z-index: 1;
    }

    .timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px !important;
        margin-right: 0 !important;
        top: 50px;
    }
}

/* Services Section - Problem-Solution */
.service-item .problem-solution-block {
    border: 1px solid var(--muted-grey);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-item .problem-solution-block h3 {
    color: var(--dark-grey);
}

/* Features Section */
.feature-item {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}

/* Pricing Section */
.pricing-slider-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.pricing-slider-container .form-range {
    width: 300px;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: var(--muted-grey);
    border-radius: 5px;
    outline: none;
    opacity: 0.7;
    transition: opacity .15s ease-in-out;
}

.pricing-slider-container .form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: var(--accent-orange);
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    cursor: pointer;
    margin-top: -8px; /* Center thumb vertically */
}

.pricing-slider-container .form-range::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: var(--accent-orange);
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    cursor: pointer;
}

.pricing-plan-card {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.pricing-plan-card.active {
    transform: scale(1.05);
    opacity: 1;
    z-index: 1;
}

.pricing-plan-card.inactive {
    opacity: 0.7;
    transform: scale(0.95);
}

.pricing-plan ul li i {
    font-size: 1.1rem;
}

.pricing-plan.border-primary-blue {
    border: 2px solid var(--primary-blue);
}

.pricing-plan.border-accent {
    border: 2px solid var(--accent-orange);
}

/* How It Works Section */
.how-it-works-list .step-item {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.how-it-works-list .step-item .step-number {
    flex-shrink: 0;
    line-height: 1;
}

.how-it-works-list .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px; /* Adjust based on icon size */
    left: 28px; /* Center with icon */
    width: 2px;
    height: calc(100% - 50px);
    background-color: var(--muted-grey);
    z-index: 0;
}

/* Testimonials Section */
.testimonial-avatar {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
}

.testimonial-card {
    background-color: #fff;
    border: 1px solid var(--light-gray);
}

.testimonial-before, .testimonial-after {
    padding: 15px;
    border-radius: 8px;
}

.testimonial-before {
    background-color: #fcebeb; /* Light red background */
    border: 1px solid #e0b4b4;
}

.testimonial-after {
    background-color: #e6f7ed; /* Light green background */
    border: 1px solid #b4e0c8;
}

/* Contact Form */
#contact-us .card {
    border: none;
}

/* Footer */
footer {
    background-color: var(--dark-grey) !important;
}

footer a {
    color: rgba(255, 255, 255, 0.85);
}

footer a:hover {
    color: var(--accent-orange);
}

.social-icons a {
    transition: color 0.2s ease-in-out;
}

.social-icons a:hover {
    color: var(--accent-orange) !important;
}

/* Form Validation Feedback */
.needs-validation .form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.needs-validation .form-control:invalid:not(:placeholder-shown) ~ .invalid-feedback {
    display: block;
}

/* General Modal Styling */
.modal-content {
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-title {
    font-weight: 600;
    color: var(--dark-grey);
}

.modal-body {
    padding-top: 0;
}
/* Styles for the main content wrapper */
.trustPillarUnit {
    padding-top: 4rem; /* Top padding for the section */
    padding-bottom: 4rem; /* Bottom padding for the section */
    padding-left: 1rem; /* Left padding for the section */
    padding-right: 1rem; /* Right padding for the section */
    /* You might want to add max-width and margin: auto for content centering */
    /* max-width: 1200px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading styles within .trustPillarUnit */
.trustPillarUnit h1 {
    font-size: 2.5rem; /* Large heading, not excessively big */
    line-height: 1.2; /* Spacing between lines */
    margin-bottom: 1.5rem; /* Space below the heading */
}

.trustPillarUnit h2 {
    font-size: 2rem; /* Sub-heading size */
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.trustPillarUnit h3 {
    font-size: 1.75rem; /* Section title size */
    line-height: 1.3;
    margin-bottom: 1rem;
}

.trustPillarUnit h4 {
    font-size: 1.5rem; /* Sub-section title size */
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.trustPillarUnit h5 {
    font-size: 1.25rem; /* Smaller heading size */
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Paragraph styles within .trustPillarUnit */
.trustPillarUnit p {
    font-size: 1rem; /* Standard paragraph text size */
    line-height: 1.6; /* Good readability for body text */
    margin-bottom: 1rem; /* Space below paragraphs */
}

/* Unordered list styles within .trustPillarUnit */
.trustPillarUnit ul {
    list-style: disc; /* Default disc bullet points */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 20px; /* Indentation for bullet points */
}

/* List item styles within .trustPillarUnit */
.trustPillarUnit li {
    font-size: 1rem; /* Standard list item text size */
    line-height: 1.6; /* Consistent line height with paragraphs */
    margin-bottom: 0.5rem; /* Space between list items */
}
