body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Global Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #212529;
}

.site-name {
    font-size: 1.5rem;
    color: #00ACC1;
}

.site-logo {
    height: 40px;
}

.site-name-footer {
    font-size: 1.2rem;
    color: #00ACC1;
}

.site-logo-footer {
    height: 30px;
}

/* Responsive Headings */
.hero-title {
    font-size: 2.5rem;
}

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

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .site-name {
        font-size: 1.25rem;
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    .navbar-brand {
        font-size: 1.25rem;
    }
    .navbar-toggler {
        font-size: 1rem;
    }
    .offcanvas-body .navbar-nav .nav-link {
        font-size: 1.1rem;
    }
}

/* Navigation */
.navbar-brand .site-logo {
    height: 40px;
}

.navbar-brand .site-name {
    color: #00ACC1;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #00ACC1;
}

.offcanvas-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.offcanvas-body {
    padding-top: 1rem;
}

/* Custom Buttons */
.custom-btn-teal {
    background-color: #00ACC1;
    border-color: #00ACC1;
    color: #fff;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.custom-btn-teal:hover {
    background-color: #008C9E;
    border-color: #008C9E;
    transform: translateY(-2px);
    color: #fff;
}

/* Hero Section */
.hero-section {
    min-height: 60vh;
    padding-top: 8rem;
    padding-bottom: 5rem;
    background-color: #f8f9fa;
}

.hero-section .img-fluid {
    max-height: 500px;
    object-fit: cover;
}

/* About Us Section */
.about-section .img-fluid {
    max-height: 450px;
    object-fit: cover;
}

.experience-badge {
    background-image: linear-gradient(45deg, #E91E63, #C2185B);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    left: 10%;
    top: 0;
    transform: translateY(-50%);
    z-index: 1;
}

@media (max-width: 767.98px) {
    .experience-badge {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Services Section */
.services-section .accordion-item {
    border: none;
    background-color: #fff;
    transition: all 0.3s ease;
}

.services-section .accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.services-section .accordion-button {
    background-color: #fff;
    color: #212529;
    border: none;
    font-weight: 600;
    padding: 1rem 1.25rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.services-section .accordion-button:not(.collapsed) {
    color: #00ACC1;
    background-color: #e0f7fa;
    box-shadow: none;
}

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

.services-section .accordion-body {
    padding: 1.25rem;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.services-section .custom-icon-color {
    color: #00ACC1;
    font-size: 1.5rem;
}

/* Features Section */
.features-section .img-fluid {
    max-height: 400px;
    object-fit: cover;
}

/* Portfolio Section */
.portfolio-card {
    position: relative;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.portfolio-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 1;
    transition: opacity 0.3s ease;
    color: #fff;
    filter: drop-shadow(2px 4px 1px #000);
}

.portfolio-card:hover .overlay {
    opacity: 1;
}

.portfolio-card img {
    transition: transform 0.3s ease;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.modal-content {
    border-radius: 0.75rem;
}

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

.modal-title {
    color: #00ACC1;
}

/* Industries Section */
.industries-section {
    background-color: #212529;
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 0;
}

.industries-section .container {
    position: relative;
    z-index: 1;
}

.industry-card {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.industry-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background-color 0.3s ease;
}

.industry-card:hover .overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Team Section */
.team-member-card {
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-member-card .avatar-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #00ACC1;
}

/* FAQ Section */
.faq-section .accordion-item {
    border: none;
    background-color: #fff;
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.faq-section .accordion-button {
    background-color: #fff;
    color: #212529;
    border: none;
    font-weight: 600;
    padding: 1rem 1.25rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #00ACC1;
    background-color: #e0f7fa;
    box-shadow: none;
}

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

.faq-section .accordion-body {
    padding: 1.25rem;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.plus-minus-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    background-color: #ffc107;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.accordion-button:not(.collapsed) .plus-minus-icon {
    transform: rotate(45deg);
    background-color: #dc3545;
}

/* Contact Section */
.contact-section .form-label {
    font-weight: 500;
    color: #555;
}

.contact-section .form-control, .contact-section .form-select {
    border-radius: 0.3rem;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
}

.contact-section .form-control:focus, .contact-section .form-select:focus {
    border-color: #00ACC1;
    box-shadow: 0 0 0 0.25rem rgba(0, 172, 193, 0.25);
}

.custom-text-color {
    color: #00ACC1;
}

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

/* Footer Section */
.footer-section {
    background-color: #212529;
    color: #fff;
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.footer-tile {
    background-color: #2c313a;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-tile:hover {
    background-color: #3a404a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.footer-tile h5 {
    color: #00ACC1;
}

.footer-tile ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-tile ul li a:hover,
.footer-tile ul li a.hover-underline:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-section .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.animate-on-scroll.fade-in.animated {
    opacity: 1;
}

.animate-on-scroll.slide-up {
    transform: translateY(20px);
}

.animate-on-scroll.slide-left {
    transform: translateX(-50px);
}

.animate-on-scroll.slide-right {
    transform: translateX(50px);
}

.animate-on-scroll.scale-in {
    transform: scale(0.95);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Mobile-specific adjustments */
@media (max-width: 991.98px) {
    .offcanvas.offcanvas-end {
        width: 75%;
    }
    .navbar-collapse {
        display: none !important;
    }
    .navbar-toggler {
        display: block;
    }
    .hero-section {
        padding-top: 6rem;
        text-align: center;
    }
    .hero-section .col-md-6:last-child {
        margin-top: 2rem;
    }
    .about-section .experience-badge {
        position: static;
        transform: none;
        margin-top: 1rem;
        display: inline-block;
    }
    .features-section .row.flex-row-reverse {
        flex-direction: row !important;
    }
    .features-section .row.flex-row-reverse .col-md-6:first-child {
        order: 1;
    }
    .features-section .row.flex-row-reverse .col-md-6:last-child {
        order: 0;
    }
    .features-section .col-md-6 {
        text-align: center;
    }
    .features-section .col-md-6 img {
        margin-bottom: 1.5rem;
    }
    .footer-tile {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .lead {
        font-size: 1rem;
    }
    .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .experience-badge {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }
    .accordion-button {
        font-size: 1rem;
    }
    .plus-minus-icon {
        width: 25px;
        height: 25px;
        min-width: 25px;
        min-height: 25px;
        font-size: 1rem;
    }
    .team-member-card .avatar-img {
        width: 90px;
        height: 90px;
    }
}
/*
 * New stock styles for common content elements within .userClauseNet.
 * These styles aim for readability and a clean, standard look
 * without overly large heading sizes.
 */

.userClauseNet {
    /* Basic spacing for the content block itself */
    padding-bottom: 30px; /* Bottom padding for the content area */
    padding-left: 20px; /* Left padding for content, preventing it from touching edges */
    padding-right: 20px; /* Right padding for content, preventing it from touching edges */
    max-width: 800px; /* Maximum width for the content block to improve readability */
    margin-left: auto; /* Center the content block horizontally */
    margin-right: auto; /* Center the content block horizontally */
    line-height: 1.6; /* Default line height for better readability */
    color: #333; /* Default text color for the content */
    font-family: Arial, sans-serif; /* A common, readable font family */
}

/* --- Heading Styles --- */

.userClauseNet h1 {
    font-size: 2em; /* Relatively modest H1 size, equivalent to 32px if base is 16px */
    margin-top: 1.5em; /* Space above H1 */
    margin-bottom: 0.75em; /* Space below H1 */
    line-height: 1.2; /* Tighter line height for headings */
    color: #222; /* Slightly darker color for headings */
}

.userClauseNet h2 {
    font-size: 1.75em; /* Modest H2 size */
    margin-top: 1em; /* Space above H2 */
    margin-bottom: 0.7em; /* Space below H2 */
    line-height: 1.2;
    color: #222;
}

.userClauseNet h3 {
    font-size: 1.5em; /* Modest H3 size */
    margin-top: 1em; /* Space above H3 */
    margin-bottom: 0.6em; /* Space below H3 */
    line-height: 1.3;
    color: #222;
}

.userClauseNet h4 {
    font-size: 1.25em; /* Modest H4 size */
    margin-top: 0.8em; /* Space above H4 */
    margin-bottom: 0.5em; /* Space below H4 */
    line-height: 1.3;
    color: #222;
}

.userClauseNet h5 {
    font-size: 1.1em; /* Modest H5 size, slightly larger than paragraph */
    margin-top: 0.7em; /* Space above H5 */
    margin-bottom: 0.4em; /* Space below H5 */
    line-height: 1.4;
    color: #222;
}

/* --- Paragraph Style --- */

.userClauseNet p {
    font-size: 1em; /* Standard paragraph font size (e.g., 16px if base font-size is 16px) */
    margin-bottom: 1em; /* Space between paragraphs */
    line-height: 1.6; /* Good line height for paragraph readability */
}

/* --- List Styles --- */

.userClauseNet ul {
    list-style-type: disc; /* Default bullet points for unordered lists */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 2em; /* Indentation for bullet points */
}

.userClauseNet ol {
    list-style-type: decimal; /* Default numbering for ordered lists */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 2em; /* Indentation for numbers */
}

.userClauseNet li {
    margin-bottom: 0.5em; /* Space between list items */
    line-height: 1.5; /* Line height for list items */
}

/* Optional: Remove bottom margin from the last paragraph/list in a block */
.userClauseNet p:last-child,
.userClauseNet ul:last-child,
.userClauseNet ol:last-child {
    margin-bottom: 0;
}


.padding-top-big {
    padding-top: 70px;
}


@media screen and (max-width: 758px) {
    .features-section .row.flex-row-reverse.mobile-reverse-col {
        flex-direction: column-reverse !important;
    }
}

section {
    overflow-x: hidden;
}