body {
    font-family: 'Open Sans', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #f8f9fa;
}

.text-secondary-light {
    color: #b0b0b0;
}

.bg-dark {
    background-color: #1a1a1a !important;
}

.bg-dark-light {
    background-color: #2a2a2a !important;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%) !important;
}

.text-primary-accent {
    color: #00bcd4 !important;
}

.btn-primary-accent {
    background-color: #00bcd4;
    border-color: #00bcd4;
    color: #1a1a1a;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    display: inline-block;
}

.btn-primary-accent:hover {
    background-color: #0097a7;
    border-color: #0097a7;
    color: #f8f9fa;
    transform: translateY(-2px);
}

.btn-light {
    color: #1a1a1a !important;
}

.btn-light:hover {
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

.hover-primary-accent:hover {
    color: #00bcd4 !important;
}

.main-header {
    background-color: rgba(26, 26, 26, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1030;
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
}

.site-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #f8f9fa;
    font-size: 1.8rem;
}

.navbar-nav .nav-link {
    color: #f8f9fa;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: #00bcd4;
}

.offcanvas {
    background-color: #1a1a1a;
    color: #f8f9fa;
}

.offcanvas-header {
    border-bottom: 1px solid #333;
}

.offcanvas-title {
    color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}

.offcanvas-body .nav-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #0d0d0d;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.parallax-layer.layer-1 { z-index: 0; }
.parallax-layer.layer-2 { z-index: 1; }
.parallax-layer.layer-3 { z-index: 2; }

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3;
}

.hero-content {
    z-index: 4;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.75rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.cta-strip {
    color: #1a1a1a;
    z-index: 1020;
}

.section-title {
    font-size: 3.5rem;
    color: #f8f9fa;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #00bcd4;
    border-radius: 2px;
}

.about-section img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.about-section .list-unstyled i {
    font-size: 2rem;
    line-height: 1;
}

.services-section .nav-tabs {
    border-bottom: none;
}

.services-section .nav-link {
    color: #b0b0b0;
    border: none;
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 1rem 1.5rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
    background-color: #1a1a1a;
    white-space: nowrap;
    overflow-x: auto;
}

.services-section .nav-link:hover {
    color: #00bcd4;
    background-color: #2a2a2a;
}

.services-section .nav-link.active {
    color: #00bcd4;
    background-color: #2a2a2a;
    border-bottom: 3px solid #00bcd4;
}

.services-section .tab-content {
    background-color: #2a2a2a;
}

.services-section .tab-pane img {
    max-height: 350px;
    width: 100%;
    object-fit: cover;
}

.features-section .accordion-item {
    border: none;
    background-color: #2a2a2a;
}

.features-section .accordion-button {
    background-color: #2a2a2a;
    color: #f8f9fa;
    font-weight: 600;
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.features-section .accordion-button:not(.collapsed) {
    background-color: #1a1a1a;
    color: #00bcd4;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.features-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.features-section .accordion-body {
    background-color: #1a1a1a;
    color: #b0b0b0;
    padding: 1.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
}

.portfolio-section .card {
    background-color: #2a2a2a;
    border: none;
    height: 100%;
}

.portfolio-section .card-img-top {
    height: 220px;
    object-fit: cover;
}

.portfolio-section .swiper-slide {
    width: 300px;
    margin-right: 20px;
}

.portfolio-swiper {
    padding-bottom: 50px;
}

.swiper-button-next, .swiper-button-prev {
    color: #00bcd4 !important;
    top: var(--swiper-navigation-sides-offset, 50%);
}

.swiper-pagination-bullet {
    background-color: #b0b0b0;
}

.swiper-pagination-bullet-active {
    background-color: #00bcd4;
}

.stats-section .stat-block {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-section .stat-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.stats-section .stat-block i {
    color: #00bcd4;
    opacity: 0.8;
}

.testimonials-section .testimonial-card {
    background-color: #2a2a2a;
    padding: 2rem;
    height: 100%;
}

.testimonials-section .avatar-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.testimonials-swiper {
    padding-bottom: 50px;
}

.faq-questions .list-group-item {
    background-color: #2a2a2a;
    border: none;
    transition: background-color 0.3s ease;
}

.faq-questions .list-group-item:hover {
    background-color: #1a1a1a;
}

.faq-questions .btn-link {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-questions .btn-link:hover {
    color: #00bcd4;
}

.faq-answers {
    background-color: #2a2a2a;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.faq-answer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(20px);
}

.faq-answer.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: static;
}

.contact-form-container .form-control, .contact-form-container .form-select {
    background-color: #1a1a1a;
    border: 1px solid #444;
    color: #f8f9fa;
}

.contact-form-container .form-control::placeholder {
    color: #b0b0b0;
}

.contact-form-container .form-control:focus, .contact-form-container .form-select:focus {
    border-color: #00bcd4;
    box-shadow: 0 0 0 0.25rem rgba(0, 188, 212, 0.25);
    background-color: #1a1a1a;
    color: #f8f9fa;
}

.contact-info-block i {
    color: #00bcd4;
}

.email-break {
    word-break: break-all;
}

.main-footer {
    background-color: #0d0d0d;
    border-top: 1px solid #333;
}

.main-footer .logo-img {
    height: 30px;
    width: auto;
}

.main-footer .text-secondary-light {
    color: #909090;
}

.newsletter-form .form-control {
    background-color: #1a1a1a;
    border: 1px solid #444;
    color: #f8f9fa;
}

.newsletter-form .form-control:focus {
    border-color: #00bcd4;
    box-shadow: 0 0 0 0.25rem rgba(0, 188, 212, 0.25);
}

@media (max-width: 1300px) {
    .navbar-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1100px) {
    .navbar-toggler {
        display: block;
    }
    .navbar-collapse {
        display: none;
    }
    .offcanvas-end {
        width: 280px;
    }
}

@media (min-width: 1101px) {
    .navbar-toggler {
        display: none;
    }
    .navbar-collapse {
        display: flex !important;
    }
    .offcanvas {
        visibility: hidden;
    }
}

@media (min-width: 768px) {
    .site-name {
        font-size: 2.2rem;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-content p {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 2.8rem;
    }
}

@media (min-width: 1024px) {
    .site-name {
        font-size: 2.5rem;
    }
    .hero-content h1 {
        font-size: 4.5rem;
    }
    .hero-content p {
        font-size: 1.75rem;
    }
    .section-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 767.98px) {
    .site-name {
        font-size: 1.25rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .cta-strip .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }
    .about-section img, .services-section .tab-pane img {
        max-height: 250px;
    }
    .services-section .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        margin: 0 0.25rem;
    }
    .portfolio-section .swiper-slide {
        width: 250px;
    }
    .stats-section .stat-block h2 {
        font-size: 2.5rem;
    }
    .stats-section .stat-block p {
        font-size: 1rem;
    }
    .testimonials-section .testimonial-card {
        padding: 1.5rem;
    }
    .faq-questions .btn-link {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    .faq-answers {
        min-height: 250px;
    }
    .faq-answer h3 {
        font-size: 1.25rem;
    }
    .main-footer .h4, .main-footer .h5 {
        font-size: 1.2rem;
    }
    .main-footer .logo-img {
        height: 25px;
    }
    .newsletter-form .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
}/*
 * Base styles for the .userClauseNet container.
 * Provides padding around the content and a top margin for separation.
 */
.userClauseNet {
    padding: 1.5rem 2rem; /* Padding top/bottom and left/right */
    margin-top: 2rem;    /* Space above the content block */
    /* Optional: You might want to add a background-color or border here */
    /* background-color: #f9f9f9; */
    /* border: 1px solid #eee; */
    /* border-radius: 8px; */
}

/*
 * Heading styles (h1-h5) within .userClauseNet.
 * Font sizes are moderate, not overly large, with appropriate line heights and margins.
 */
.userClauseNet h1 {
    font-size: 2.2rem;       /* Moderate size for the main heading */
    line-height: 1.2;        /* Tighter line height for headings */
    margin-top: 0;           /* Remove default top margin for first heading */
    margin-bottom: 0.8em;    /* Space below the heading */
    font-weight: 700;        /* Bold font weight */
    color: #e2e6e5;             /* Dark text color for readability */
}

.userClauseNet h2 {
    font-size: 1.8rem;       /* Slightly smaller than h1 */
    line-height: 1.25;
    margin-top: 1.5em;       /* Space above to separate from previous content */
    margin-bottom: 0.7em;
    font-weight: 600;
    color: #e2e6e5;
}

.userClauseNet h3 {
    font-size: 1.5rem;       /* Further reduced size */
    line-height: 1.3;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    font-weight: 600;
    color: #e2e6e5;
}

.userClauseNet h4 {
    font-size: 1.2rem;       /* Closer to body text size, but distinct */
    line-height: 1.4;
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-weight: 500;        /* Slightly lighter weight for less emphasis */
    color: #e2e6e5;
}

.userClauseNet h5 {
    font-size: 1.1rem;       /* Smallest heading, often used for sub-sections */
    line-height: 1.4;
    margin-top: 0.8em;
    margin-bottom: 0.4em;
    font-weight: 500;
    color: #e2e6e5;
}

/*
 * Paragraph (p) styles within .userClauseNet.
 * Standard font size, comfortable line height, and bottom margin for separation.
 */
.userClauseNet p {
    font-size: 1rem;         /* Standard body text size (e.g., 16px) */
    line-height: 1.6;        /* Generous line height for readability */
    margin-bottom: 1em;      /* Space below each paragraph */
    color: #e2e6e5;             /* Dark text color */
}

/*
 * Unordered list (ul) styles within .userClauseNet.
 * Provides indentation for bullet points and vertical spacing.
 */
.userClauseNet ul {
    list-style-type: disc;   /* Default disc bullet points */
    padding-left: 2em;       /* Indentation for the bullet points */
    margin-top: 1em;         /* Space above the list */
    margin-bottom: 1em;      /* Space below the list */
    color: #e2e6e5;             /* Inherit text color */
}

/*
 * List item (li) styles within .userClauseNet.
 * Adds vertical spacing between individual list items.
 */
.userClauseNet li {
    margin-bottom: 0.5em;    /* Space between list items */
    line-height: 1.5;        /* Line height for readability within items */
}
.navbar-toggler {
    filter:  brightness(0) invert(1);
}
main {
    overflow: hidden;
}