:root {
    --primary-color: #e74c3c;
    /* Strong Red/Orange for CTA */
    --secondary-color: #2c3e50;
    /* Dark Blue/Grey */
    --accent-color: #8e44ad;
    /* Purple from the 'Peace of Mind' section in reference */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --white: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    margin-left: 1rem;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Utilities */
.section-padding {
    padding: 80px 0;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    /* Space for pagination */
    border-left: 5px solid var(--primary-color);
    height: auto;
    /* Let content dictate height, but swiper stretches by default */
}

.swiper-slide {
    height: auto;
    /* Equal height slides */
}

.testimonial-card {
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.client-info h5 {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.1rem;
}

.client-info span {
    color: #888;
    font-size: 0.9rem;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.client-info h5 {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.1rem;
}

.client-info span {
    color: #888;
    font-size: 0.9rem;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #6c3483 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.mission-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-section h2 {
    color: #fff;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.solution-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.solution-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(220, 53, 69, 0.1);
    /* light red/danger */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.solution-card:hover .solution-icon-wrapper {
    background-color: var(--primary-color);
    color: #fff;
}


/* Mindset Section */
.mindset-section {
    background-color: var(--light-bg);
}

.mindset-img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-card {
    border: none;
    transition: transform 0.3s;
    height: 100%;
}

.values-card:hover {
    transform: translateY(-5px);
}

.values-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 80px 0;
}

.cta-section h2 {
    color: white;
}

/* Process Section */
/* Process Section */
.process-section {
    background-color: var(--light-bg);
    position: relative;
}

.process-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    z-index: -1;
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    color: rgba(var(--primary-rgb), 0.1);
    transform: scale(1.1);
}

.process-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background-color: var(--primary-color);
    transform: rotateY(180deg);
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
    position: relative;
    color: #fff;
    overflow: hidden;
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    z-index: 1;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 10s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.form-control-lg {
    border-radius: 50px;
    padding: 15px 30px;
    border: none;
    font-size: 1rem;
}

.btn-subscribe {
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: #bdc3c7;
    padding-top: 80px;
    padding-bottom: 30px;
}

footer h5 {
    color: #fff;
    margin-bottom: 25px;
}

footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
}

/* Top Bar */
.top-bar {
    background-color: #e6e6e6;
    /* Light grey background */
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.top-bar a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar a:hover {
    color: var(--primary-color);
}

.top-bar .separator {
    color: #ccc;
}

.text-custom-purple {
    color: #581c46;
    /* Matching the deep purple/burgundy from reference */
}

/* Navbar overrides for sticky positioning */
.navbar.sticky-top {
    top: 0;
    z-index: 1020;
}

/* Main Header Styles */
.navbar-brand span {
    letter-spacing: -0.5px;
    color: #333 !important;
}

.navbar-brand i {
    color: #ff5e57 !important;
    /* Coral/Red color for the icon */
}

.nav-link {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-schedule {
    background-color: #581c46;
    /* Deep Purple */
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-schedule:hover {
    background-color: #401030;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(88, 28, 70, 0.3);
}

.navbar {
    background-color: #f5f5f5 !important;
    /* Light grey background to match reference */
    box-shadow: none;
    /* Remove default shadow if any */
}

/* About Page CSS */

/* Hero Form */
.form-control:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

/* Feature Icons */
.feature-icon i {
    color: #b7b7b7;
    /* Muted icon color */
    transition: color 0.3s ease;
}

.feature-icon:hover i {
    color: #dc3545;
    /* Red on hover */
}

/* Values Grid */
.icon-square {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials */
.testimonial-card-small {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Process Steps */
.process-step {
    position: relative;
}

/* Connecting line for process steps (desktop only) */
@media (min-width: 768px) {
    .process-step::after {
        content: '';
        position: absolute;
        top: 30px;
        right: -50%;
        width: 100%;
        height: 2px;
        background-color: #e9ecef;
        z-index: -1;
    }

    .col-md-3:last-child .process-step::after {
        display: none;
    }
}

.spacing-1 {
    letter-spacing: 1px;
}

.bg-custom-purple-light {
    background-color: rgba(111, 66, 193, 0.1);
}

/* Managed IT Page CSS */

/* Colors */
.bg-custom-purple {
    background-color: #581c46 !important;
}

.text-custom-purple {
    color: #581c46 !important;
}

.text-custom-purple-light {
    color: #581c46;
    opacity: 0.15;
}

/* Typography */
.x-small {
    font-size: 0.75rem;
}

/* Hero Sticky Form */
.sticky-top {
    z-index: 100;
}

/* Testimonial Small Cards */
.testimonial-card-small {
    transition: transform 0.3s ease;
}

.testimonial-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card-small img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* Partners Banner */
.grayscale-logos i {
    transition: opacity 0.3s ease;
}

.grayscale-logos i:hover {
    opacity: 1;
}

/* Feature Sections */
.feature-image img {
    border-radius: 20px 0 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Lists */
.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.check-list li::before {
    content: '\F633';
    /* Bootstrap check-lg */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: #ff5e57;
    /* Red/Coral */
    font-weight: bold;
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    ;
}

.accordion-button {
    background-color: #f8f9fa;
    color: #2c3e50;
    font-weight: 700;
    border-radius: 10px !important;
    padding: 1.25rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #e9ecef;
    color: #581c46;
}

.accordion-button::after {
    background-color: #581c46;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 0.8rem;
    background-position: center;
}

.accordion-body {
    background-color: #fff;
    padding: 1.5rem;
    color: #666;
}

/* Schedule Page CSS */

/* Step Indicators */
.step-indicator {
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: #6c757d;
    font-weight: 500;
}

.step-indicator.active {
    background-color: #d1e7dd;
    color: #0f5132;
    font-weight: 600;
}

.step-number {
    display: inline-block;
    width: 24px;
    text-align: center;
    margin-right: 8px;
    font-weight: 700;
}

.step-indicator.active .step-number {
    background-color: #badbcc;
    border-radius: 4px;
}

/* Process Checkmarks */
.process-line {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #6c757d;
    z-index: 0;
    width: 80%;
    margin: 0 auto;
}

.process-step-item {
    position: relative;
    z-index: 1;
}

.checkmark-box {
    width: 30px;
    height: 30px;
    background-color: #5a2d82;
    /* Custom Purple */
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

/* Contact Form */
.form-container {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

.form-control-lg {
    font-size: 0.95rem;
}

.btn-schedule-submit {
    background: linear-gradient(90deg, #ff416c 0%, #ff4b2b 100%);
    border: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.2s ease;
}

.btn-schedule-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 75, 43, 0.3);
    color: white;
}

/* Reviews Sidebar */
.review-sidebar-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.quote-icon-circle {
    width: 40px;
    height: 40px;
    background-color: #f3e5f5;
    color: #5a2d82;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -20px;
    right: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* Testimonials Page CSS */

/* Form Input Overrides */
.form-control-lg {
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    border-radius: 8px !important;
}

.card.rounded-4 {
    border-radius: 20px !important;
}

.btn-danger {
    background-color: #ff5e57;
    border-color: #ff5e57;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #e04e48;
    border-color: #e04e48;
    transform: translateY(-2px);
}

/* Testimonial Box Styling */
.testimonial-box {
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-color: #eaeaea !important;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-box img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid #f8f9fa;
}

.text-custom-purple-light {
    color: rgba(88, 28, 70, 0.15);
    /* Faint purple for the quote icon */
}

.quote-icon-top {
    position: absolute;
    top: 20px;
    right: 30px;
}

/* CTA Arrow Adjustment */
.bi-arrow-return-right {
    opacity: 0.5;
}

/* Blog Page CSS */

/* Blog Card */
.blog-card {
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-thumb-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.blog-thumb-overlay-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #5a2d82;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.read-more-link {
    color: #ff5e57;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.read-more-link:hover {
    color: #dc3545;
}

/* Sidebar Widgets */
.search-widget input {
    border-radius: 50px;
    padding-left: 20px;
}

.search-widget button {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 2px;
    right: 2px;
}

.help-widget-header {
    background-color: #5a2d82;
    color: white;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 15px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

.help-widget-body {
    background-color: #f3e5f5;
    /* Light Lavender */
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 20px;
}

.btn-help-continue {
    background: linear-gradient(90deg, #ff416c 0%, #ff4b2b 100%);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-help-continue:hover {
    color: white;
    box-shadow: 0 4px 10px rgba(255, 75, 43, 0.3);
}

/* Pagination */
.page-link {
    color: #6c757d;
    border: 1px solid #dee2e6;
    margin: 0 3px;
    border-radius: 4px;
}

.page-link:hover {
    color: #5a2d82;
    background-color: #e9ecef;
}

.page-item.active .page-link {
    background-color: white;
    color: #ff5e57;
    border-color: #ff5e57;
}

.blog-date {
    color: #ff5e57;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Blog Details CSS */

.blog-details-hero-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-details-overlay-title {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #5a2d82;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    text-align: center;
}

.blog-meta-text {
    color: #ff5e57;
    /* Custom Red/Orange */
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.blog-content h3 {
    font-weight: 700;
    color: #212529;
    /* Dark gray for headings */
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-back-to-top {
    background: linear-gradient(90deg, #ff416c 0%, #ff4b2b 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: transform 0.2s ease;
}

.btn-back-to-top:hover {
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 4px 10px rgba(255, 75, 43, 0.3);
}

.back-to-blog-link {
    color: #ff5e57;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.back-to-blog-link:hover {
    color: #dc3545;
}

/* Support Center CSS */

/* Requirements List */
.support-requirements-list {
    list-style: none;
    padding-left: 0;
}

.support-requirements-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #495057;
    font-weight: 600;
}

.support-requirements-list li::before {
    content: "\F285";
    /* Bootstrap Icons chevron-right */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: #dc3545;
    /* Danger Red */
    font-weight: bold;
    font-size: 0.9rem;
}

.support-requirements-list li span {
    font-weight: 400;
    color: #6c757d;
}

/* Support Cards */
.support-card {
    background-color: #f3e5f5;
    /* Light Lavender tint */
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.support-card-icon {
    font-size: 1.25rem;
    color: #5a2d82;
    /* Custom Purple */
    margin-right: 0.75rem;
}

.support-card-title {
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.25rem;
}

.support-card-text {
    color: #495057;
    font-weight: 500;
    text-decoration: none;
}

.support-card-text:hover {
    color: #5a2d82;
}

/* Typography */
.support-intro-lead {
    color: #6c757d;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.section-heading-sm {
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}