/* =========================
   CSS Variables
   ========================= */
:root {
    --main-bg: #f4f4f4;
    --main-text: #333;
    --nav-bg: #ff6200;
    --accent: #FF914C;
    --accent-hover: #303495;
    --card-bg: #fff;
    --card-radius: 15px;
    --card-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.15);
    --section-bg: #FAFAFA;
    --section-radius: 15px;
    --section-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    --tab-bg: #eee;
    --tab-bg-active: #1abc9c;
    --tab-text-active: #fff;
    --testimonial-bg: #fff;
    --testimonial-shadow: 0 4px 12px rgba(0, 0, 0, 0.155);
    --testimonial-border: #1abc9c;
    --expertise-border: #4CAF50;
    --approach-border: #007BFF;
    --bottom-info-icon: rgb(39, 39, 39);
    --bottom-info-icon-hover: rgb(98, 98, 98);
}

/* =========================
   Dark Mode Variables
   ========================= */
:root {
    --main-bg-dark: #181824;
    --main-text-dark: #f3f3f3;
    --card-bg-dark: #23243a;
    --card-shadow-dark: 0 4px 16px rgba(0, 0, 0, 0.25);
    --card-shadow-hover-dark: 0 8px 24px rgba(0, 0, 0, 0.35);
    --section-bg-dark: #23243a;
    --tab-bg-dark: #23243a;
    --tab-bg-active-dark: #FF914C;
    --tab-text-active-dark: #23243a;
    --testimonial-bg-dark: #39393e;
    --testimonial-shadow-dark: 0 4px 16px rgba(0, 0, 0, 0.18);
    --testimonial-border-dark: #FF914C;
    --expertise-border-dark: #FF914C;
    --approach-border-dark: #FF914C;
    --bottom-info-icon-dark: #f3f3f3;
    --bottom-info-icon-hover-dark: #FF914C;
}

/* =========================
   Base Styles
   ========================= */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 10vh;
    background: var(--main-bg);
    color: var(--main-text);
    scroll-behavior: smooth;
    cursor: default;
    width: 100%;
}

.logo {
    width: 55%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    color: #fff;
    flex-direction: row;
}

.links {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    z-index: 999999;
}

nav {
    background-color: var(--nav-bg);
}

* {
    font-family: "Open Sans", sans-serif;
}

nav .dropdown-content a:hover {
    color: darkblue !important;
    border-radius: 10px;
}

/* =========================
   Slideshow Styles
   ========================= */
.mySlides {
    display: none;
    position: relative;
}

.mySlides::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0, 0, 0) 5%, transparent);
    position: absolute;
    top: 0;
    left: 0;
}

img {
    vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
    overflow: hidden;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 20px 12px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

#darkModeToggle {
    margin-left: 20px;
    color: white;
    padding: 6.5px 12px;
    background: transparent;
    border-radius: 5px;
    border: 1px solid grey;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
}

#darkModeToggle:hover {
    background-color: grey;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* =========================
   Box and Text Styles
   ========================= */
.box .text1 ul li,
.box .text-box ul li {
    padding: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #F1F1F1;
    background-color: #2F2F2F;
    border-radius: 15px;
    transition: .2s ease-in-out;
    line-height: 1.6;
    font-size: 16px;
}

.box .text-box h3 {
    color: #3F51B5;
    font-size: 26px;
    font-weight: 600;
}

.box .text1 ul li:hover,
.box .text-box ul li:hover {
    transform: scale(1.05);
    transition: .2s ease-in-out;
}

/* =========================
   Fading Animation
   ========================= */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* =========================
   Responsive Text
   ========================= */
@media only screen and (max-width: 300px) {

    .prev,
    .next,
    .text {
        font-size: 11px
    }
}

/* =========================
   Remove Number Input Arrows
   ========================= */
#num::-webkit-outer-spin-button,
#num::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#num {
    appearance: textfield;
}

/* =========================
   Section Styles
   ========================= */
hr {
    margin-top: 80px;
    width: 100%;
    height: 0;
    box-shadow: 0 0 50px 2px black;
}

section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.two-col {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 80px;
    padding-right: 50px;
    background-color: var(--section-bg);
    border-radius: var(--section-radius);
}

.two-col .box .text-box ul {
    list-style: none;
}

body.dark-mode .two-col .box .text-box ul li {
    background-color: #39393e;
}

.two-col .box .text-box ul li {
    background-color: #57564F;
}

.two-col .box .text1 ul li {
    background-color: #57564F;
}

.two-col .box .text-box h3 {
    color: #57564F;
}

.two-col .box .text-box h2 {
    color: var(--expertise-border);
}

body.dark-mode .two-col .box .text-box h2,
body.dark-mode .two-col .box .text1 h2 {
    color: white;
}

body.dark-mode .two-col .box .text-box h3,
body.dark-mode .two-col .box .text1 h3 {
    color: #FF914C;
}

.two-col .box .text1 h2 {
    color: var(--approach-border);
}

.two-col .box .text1 h3 {
    color: #57564F;
}

.two-col .box .text1 h3 ul {
    list-style: none;
    font-weight: 600;
}

body.dark-mode .two-col .box .text1 h3 ul li {
    background-color: #39393e;
}

.two-col .box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.two-col .text-box {
    width: 40%;
    float: left;
    margin-right: 55px;
}

.two-col h2 {
    font-size: 70px;
    margin-bottom: 20px;
    font-weight: 200;
}

.two-col .text1 {
    width: 40%;
    float: left;
    margin-left: 75px;
}

.two-col .text1 h3 {
    color: #3F51B5;
    font-size: 26px;
    font-weight: 600;
}

.two-col .image,
.two-col .image1 {
    width: 50%;
    float: right;
}

.two-col .image img,
.two-col .image1 img {
    width: 100%;
    border-radius: 15px;
}

.two-col div {
    flex: 1;
    min-width: 280px;
}

/* =========================
   Blog Grid
   ========================= */
.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-post {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 6px;
    box-shadow: var(--card-shadow);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

/* =========================
   Tabs
   ========================= */
.tabs {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.tab {
    background: var(--tab-bg);
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
}

.tab.active {
    background: var(--tab-bg-active);
    color: var(--tab-text-active);
}

/* =========================
   Forms
   ========================= */
.form-cont {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form-name {
    margin-bottom: 35px;
}

form {
    width: 50%;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 6px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

form input,
form .input,
form button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 10px;
    border: 1px solid grey;
}

form button {
    background: #0056d2;
    color: white;
    border: none;
    cursor: pointer;
}

/* =========================
   News Section
   ========================= */
.news {
    margin-top: 100px;
    width: 100%;
    height: 100vh;
    padding: 20px 0;
    background-color: var(--card-bg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.news h1,
.news h4 {
    font-weight: 500;
    padding: 5px;
}

.news .container {
    width: 100%;
    height: fit-content;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 310px));
    gap: 10px;
    place-content: center;
    overflow-x: auto;
}

.news .container .box {
    min-width: 250px;
    max-width: 300px;
    min-height: 400px;
    max-height: 500px;
    border-radius: 15px;
    margin-right: 15px;
    overflow: hidden;
    color: black;
    border: 1px solid rgba(128, 128, 128, 0.087);
}

.news .container .box .image {
    width: 100%;
    height: 175px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    /* border: 2px solid #ff914ccb; */
    overflow: hidden;
}

body.dark-mode .news .container .box .image {
    border: none;
}

.news .container .box .content {
    width: 100%;
    height: 100%;
    padding: 15px 10px;
    position: relative;
    background:
        repeating-linear-gradient(45deg, #ff914c57 0 10px, #fff 10px 20px),
        repeating-linear-gradient(-45deg, #ff914c00 0 10px, #fff 10px 20px);

}

.news .container .box .content h6 {
    width: fit-content;
    font-weight: 300;
    margin: 10px 0 5px 10px;
    padding: 5px 10px 5px 10px;
    background-color: #ede1d3;
    border-radius: 5px;
}

.news .container .box .content h2 {
    padding: 5px 8px 0 8px;
    font-size: 25px;
    margin-bottom: 10px;
}

.news .container .box .content h5 {
    padding: 10px;
    font-weight: 400;
}

.news button {
    padding: 10px 24px;
    background-color: var(--nav-bg);
    color: #fff;
    border: none;
    border-radius: 7.5px;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.news button:hover {
    background: var(--accent-hover);
    color: #fff;
    outline: 1px solid var(--accent-hover);
}

/* Dark mode styles for the button */
body.dark-mode .news button {
    background-color: var(--approach-border);
    color: white;
    outline: none;
}

body.dark-mode .news button:hover {
    background: var(--accent-hover);
    color: #fff;
    outline: 1px solid var(--accent-hover);
}

/* =========================
   Two Columns Section
   ========================= */
.two-cols div {
    padding: 40px;
    margin: 15px;
    border: 1px solid rgba(128, 128, 128, 0.514);
    border-radius: 15px;
}

.two-cols div h2 {
    padding-bottom: 10px;
}

/* =========================
   Hamburger Menu (Responsive)
   ========================= */
.fa-bars {
    font-size: 0;
    color: white;
    position: absolute;
    top: 22.5px;
    right: 30px;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    body {
        overflow-x: hidden;
    }

    .fa-bars {
        font-size: 25px;
        color: white;
        position: absolute;
        top: 25px;
        right: 40px;
        cursor: pointer;
        z-index: 9999999;
    }

    .links {
        width: 0;
        height: 100vh !important;
        background-color: rgb(37, 37, 37);
        position: absolute;
        top: 0;
        right: 0;
        z-index: 99999;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }

    .links a:hover {
        color: var(--accent);
    }

    .links ul {
        width: 100%;
        margin: 10px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }

    .slideshow-container,
    .slideshow-dots {
        min-width: 642px;
    }

}

@media screen and (max-width: 600px) {
    .logo{
        width: 80%;
    }
    body {
        width: 738px;
    }

    .two-col {
        width: 670px;
    }

    .two-col .box {
        width: 100%;
        flex-direction: column;
        position: relative;
        display: flex;
    }

    .two-col .box .text-box,
    .two-col .box .text1 {
        width: 100%;
    }

    .two-col .box .text-box {
        margin: 0;
        order: 2;
    }

    .two-col .box .text1 {
        margin: 0;
    }

    .two-col .box .image,
    .two-col .box .image1 {
        width: 100%;
    }

    .two-col .box .image {
        order: 1;
    }
}

@media screen and (max-width: 600px) {
    body {
        width: 665px;
    }

    .news {
        height: 1800px;
    }

    .dropdown-content,
    .fa-chevron-down {
        display: none !important;
    }

}

/* =========================
   Sidebar & Content
   ========================= */
.container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    width: 100%;
}

.sidebar {
    max-width: 40%;
    color: white;
    padding: 20px 50px;
    box-sizing: border-box;
}

.sidebar h2 {
    margin-top: 0;
    font-size: 20px;
}

.big-box .container .sidebar h2 {
    color: #2c3e50;
}

body.dark-mode .big-box .container .sidebar h2 {
    color: #f9f9f9;
}

.nav-link {
    font-size: larger;
    display: block;
    margin: 15px 0;
    cursor: pointer;
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s ease;
    color: black;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    color: #2c3e50;
}

.logo h2 {
    margin: 0;
}

.contentx {
    min-width: 70%;
    flex: 1;
    padding: 30px;
    background-color: #ecf0f1;
    box-sizing: border-box;
    overflow-y: auto;
    border-radius: 10px;
}

.boxx {
    display: none;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

body.dark-mode .boxx {
    background-color: whitesmoke !important;
    color: rgb(86, 86, 86) !important;
    box-shadow: var(--card-shadow-dark);
}

.nav-link.active {
    background-color: var(--tab-bg-active);
    color: var(--tab-text-active);
    padding: 8px 12px;
    border-radius: 6px;
}

.boxx.active {
    display: block;
}

/* =========================
   Testimonials Section
   ========================= */
.main-testimonials {
    background-color: var(--testimonial-bg);
    width: 100%;
}

.testimonials {
    padding: 4rem 2rem;
    text-align: center;
}

.testimonial-grid::-webkit-scrollbar {
    display: none;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 2rem;
    padding-bottom: 1rem;
}

.testimonial-card {
    background: var(--testimonial-bg);
    border-radius: 12px;
    min-width: 450px;
    max-width: 500px;
    box-shadow: var(--testimonial-shadow);
    padding: 1.5rem;
    margin: 5px;
    text-align: left;
    position: relative;
    flex-shrink: 0;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.testimonial-content {
    margin-left: 80px;
}

.role {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
}

blockquote {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.5rem 0;
    position: relative;
}

blockquote::before {
    content: "“";
    font-size: 2rem;
    color: #ccc;
    position: absolute;
    left: -1.2rem;
    top: -0.5rem;
}

blockquote::after {
    content: "”";
    font-size: 2rem;
    color: #ccc;
    position: absolute;
    right: -0.5rem;
    top: -0.5rem;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: var(--testimonial-bg);
    border: none;
    font-size: 1.8rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    box-shadow: var(--testimonial-shadow);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #eee;
}

/* =========================
   Expertise Section
   ========================= */
.expertise-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 16px;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.expertise-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    border-left: 5px solid var(--expertise-border);
    padding-left: 15px;
}


.expertise-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    background-color: var(--card-bg);
    margin-bottom: 16px;
    padding: 20px 18px;
    border-left: 5px solid var(--expertise-border);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    font-size: 1rem;
    color: var(--main-text);
    display: flex;
    gap: 12px;
    align-items: center;
}

.expertise-list li i {
    color: var(--expertise-border);
    font-size: 1.3rem;
    margin-top: 3px;
}

@media (max-width: 600px) {
    .expertise-section {
        padding: 25px 20px;
    }

    .expertise-section h2 {
        font-size: 1.5rem;
    }

    .expertise-list li {
        font-size: 0.95rem;
    }
}

/* =========================
   Approach Section
   ========================= */
.approach-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    padding: 40px 30px;
    border-radius: 16px;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.approach-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    border-left: 5px solid var(--approach-border);
    padding-left: 15px;
}

.approach-section p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 25px;
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-list li {
    background-color: var(--card-bg);
    margin-bottom: 16px;
    padding: 18px 16px;
    border-left: 5px solid var(--approach-border);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    font-size: 1rem;
    color: var(--main-text);
    display: flex;
    gap: 12px;
    align-items: center;
}

.approach-list li i {
    color: var(--approach-border);
    font-size: 1.3rem;
    margin-top: 3px;
}

.approach-list li span {
    display: block;
}

.approach-list li strong {
    display: inline-block;
    margin-bottom: 4px;
    color: #1c2b36;
}

.two-col .big-box .container {
    height: fit-content;
}

.two-col .big-box h2 {
    margin-left: 10px;
    font-size: 3rem;
}

@media (max-width: 600px) {
    .approach-section {
        padding: 25px 20px;
    }

    .approach-section h2 {
        font-size: 1.5rem;
    }

    .approach-list li {
        font-size: 0.95rem;
    }
}

/* =========================
   FAQ Section
   ========================= */
.faq-section::-webkit-scrollbar {
    display: none;
}

.faq-wrapper {
    width: 100%;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-section h2 {
    text-align: center;
}

.faq-section ul {
    list-style-type: none;
    padding-left: 0;
}

.faq-section li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.faq-section li::before {
    content: "\f059";
    /* Font Awesome question icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--faq-icon);
}

.faq-section li strong {
    color: #0056d2;
}

body.dark-mode .faq-section li strong {
    color: #ff6200;
}

/* =========================
   Bottom Info Bar
   ========================= */
.bottom-info {
    width: 100%;
    height: fit-content;
    padding: 10px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* .bottom-info .seo span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
} */

.bottom-info .seo {
    width: 50%;
    height: 100%;
    padding: 10px;
    margin: 25px 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 110px));
    gap: 10px;
    justify-content: center;
}

.bottom-info .seo a {
    text-align: center;
    text-decoration: none;
    color: black;
}

.bottom-info .seo a:hover {
    color: grey !important;
}

.bottom-info .media {
    margin-bottom: 10px;
}

.bottom-info .media a {
    color: var(--bottom-info-icon);
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    transition: 0.1s;
}

.bottom-info .media a:hover {
    color: var(--bottom-info-icon-hover);
    transform: scale(1.05);
    transition: 0.1s;
}

body.dark-mode .bottom-info .seo a {
    color: white;
}

/* =========================
   Dark Mode Styles
   ========================= */
body.dark-mode {
    background: var(--main-bg-dark);
    color: var(--main-text-dark);
}

body.dark-mode .blog-post,
body.dark-mode .boxx,
body.dark-mode .news,
body.dark-mode .testimonial-card,
body.dark-mode .expertise-list li,
body.dark-mode .approach-list li,
body.dark-mode .main-testimonials,
body.dark-mode .form-cont form,
body.dark-mode .contentx {
    background: var(--card-bg-dark);
    color: var(--main-text-dark);
    box-shadow: var(--card-shadow-dark);
}
body.dark-mode .testimonial-card{
    background-color: #181824 !important;
}

body.dark-mode .box .text1 ul li,
body.dark-mode .box .text-box ul li {
    background-color: var(--card-bg-dark);
    color: var(--main-text-dark);
}

body.dark-mode .news .container .box .content h6 {
    background: var(--approach-border);
}

body.dark-mode .two-col,
body.dark-mode .two-cols div,
body.dark-mode .approach-section,
body.dark-mode .expertise-section {
    background: var(--section-bg-dark);
    color: var(--main-text-dark);
    box-shadow: var(--card-shadow-dark);
}

body.dark-mode .expertise-section h2 {
    color: white;
}

body.dark-mode .expertise-section p {
    color: var(--expertise-border);
}

body.dark-mode .approach-section h2 {
    color: white;
}

body.dark-mode .approach-section p {
    color: var(--approach-border);
}

body.dark-mode .tab {
    background: var(--tab-bg-dark);
    color: var(--main-text-dark);
}

body.dark-mode .tab.active {
    background: var(--tab-bg-active-dark);
    color: var(--tab-text-active-dark);
}

body.dark-mode .testimonial-card {
    background: var(--testimonial-bg-dark);
    box-shadow: var(--testimonial-shadow-dark);
}

body.dark-mode .testimonial-box {
    background: var(--testimonial-bg-dark);
    border-left: 4px solid var(--testimonial-border-dark);
    border-right: 4px solid var(--testimonial-border-dark);
    color: var(--main-text-dark);
}

body.dark-mode .expertise-list li {
    border-left: 5px solid var(--expertise-border);
}

body.dark-mode .expertise-list li i {
    color: var(--expertise-border);
}

body.dark-mode .expertise-list li span strong {
    color: var(--expertise-border);
}

body.dark-mode .approach-list li {
    border-left: 5px solid var(--approach-border);
}

body.dark-mode .approach-list li i {
    color: var(--approach-border);
}

body.dark-mode .approach-list li span strong {
    color: var(--approach-border);
}

body.dark-mode .news .container .box,
body.dark-mode .news .container .box .content {
    background: var(--card-bg-dark);
    color: var(--main-text-dark);
}

body.dark-mode .news .container .box .image {
    background-color: var(--accent);
}

body.dark-mode .nav-link {
    color: var(--main-text-dark);
}

body.dark-mode .nav-link.active {
    background-color: var(--tab-bg-active-dark);
    color: var(--tab-text-active-dark);
}

body.dark-mode .bottom-info .media a {
    color: var(--bottom-info-icon-dark);
}

body.dark-mode .bottom-info .media a:hover {
    color: var(--bottom-info-icon-hover-dark);
}

body.dark-mode .bottom-info .dev {
    color: white !important;
}