/**
* Template Name: MyResume
* Template URL: https://bootstrapmade.com/free-html-bootstrap-template-my-resume/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #e0f8e4;
    /* Background color for the entire website, including individual sections */
    --default-color: #272829;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #45505b;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #19d169;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #45505b;
    /* The default color of the main navmenu links */
    --nav-hover-color: #055929;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #e0f8e4;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #055929;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #e0f8e4;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
    --accent-color: #68F2A2;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

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

h2 {
    color: #055929;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 0 15px;
    transition: all ease-in-out 0.3s;
    overflow-y: auto;
    z-index: 997;
    min-width: 200px;
}

@media (max-width: 1199px) {
    .header {
        top: -100%;
        left: 0;
        right: 0;
        height: 40vh;
        width: 100%;
        background-color: var(--background-color);
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        transition: top 0.3s ease-in-out;
        overflow-y: auto;
    }

    .header.header-show {
        top: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1600px) {
    .header ~ main {
        margin-left: 160px;
    }

    .header ~ main .hero {
        margin-left: -160px;
        width: 100vw;
    }
}

.header.header-show {
    left: 0;
}

.header .header-toggle {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
    transition: background-color 0.3s;
}

.header .header-toggle:hover {
    color: var(--contrast-color);
    background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Bottom fixed nav */
.navmenu {
    position: fixed;
    bottom: 43px;
    left: 0;
    right: 0;
    max-width: 900px;
    /* Max width of nav bar */
    margin: auto;
    /* Center horizontally */
    background: transparent;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    gap: 1rem;
}

.navmenu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    gap: 1rem;
}

/* List items */
.navmenu li {
    text-align: center;
    flex-grow: 1;
    /* Make all buttons equal width */

}

/* Navigation links */
.navmenu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #c4f5b0;
    /* lighter lime text for contrast */
    font-family: var(--nav-font);
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 50px;

    /* Darker lime glass background */
    background: rgba(40, 80, 30, 0.75);
    backdrop-filter: blur(12px) saturate(130%);

    border: 1.5px solid rgba(100, 170, 60, 0.9);

    height: 50px;
    width: 150px;
    box-sizing: border-box;
    margin: 0 auto;

    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    cursor: pointer;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Hover and active states */
.navmenu li a:hover,
.navmenu li a.active,
.navmenu li a:focus,
.navmenu li:hover > a {
    color: #064d08;
    /* bright lime text */

    /* Neon lime glass glow */
    background: rgba(100, 255, 100, 0.95);
    border-color: rgba(120, 255, 120, 1);

    /* glowing shadows */
    box-shadow:
        0 0 8px rgba(100, 255, 100, 0.8),
        0 0 16px rgba(100, 255, 100, 0.6),
        0 0 24px rgba(120, 255, 120, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Hamburger toggle button (hidden on large screens) */
.header-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--default-color);
    border-radius: 50%;
    padding: 12px;
    font-size: 24px;
    z-index: 1101;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
    .navmenu {
        display: none;
        flex-direction: column;
        background: #ADEBB3;
        /* deeper green with more opacity */
        backdrop-filter: blur(10px) saturate(120%);
        position: fixed;
        top: 0px;
        left: 0;
        bottom: auto;
        width: 100%;
        height: auto;
        padding: 1rem 2rem;
        border-radius: 0px 0px 20px 20px;
        /* optional rounded edges */
        z-index: 998;
        padding-top: 60px;
        overflow: hidden;
    }

    #header.header-show .navmenu {
        display: flex;
    }

    .navmenu ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* align to left */
        gap: 1rem;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .navmenu li {
        width: 100%;
    }

    .navmenu li a {
        width: 100%;
        text-align: center;
        /* better for mobile */
        font-size: 15px;
        background: rgba(110, 255, 110, 0.6);
        /* lime glass */
        backdrop-filter: blur(10px) saturate(120%);
        color: #064d08;
        /* dark green text for contrast */
        border-radius: 50px;
        border: 1.5px solid rgba(100, 170, 60, 0.9);
        padding: 10px 0;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 2px 8px rgba(0, 0, 0, 0.12);
        transition: all 0.3s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin: 0 auto;
    }

    /* Hover / active effect for mobile */
    .navmenu li a:hover,
    .navmenu li a.active {
        color: #c4f5b0;
        /* darker text */
        background: rgba(40, 80, 30, 0.75);
        border-color: rgba(90, 180, 90, 1);
        box-shadow: 0 0 10px rgba(110, 255, 110, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
        transform: scale(1.03);
        /* subtle pop effect */
    }


}


@media (min-width: 1200px) {

    /* On large screens: show navmenu and hide hamburger */
    .header-toggle {
        display: none;
    }

    .navmenu {
        display: flex !important;
    }

    .navmenu ul {
        flex-direction: row;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.footer h3 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    padding: 0;
    margin: 0 0 15px 0;
}

.footer p {
    font-size: 15;
    font-style: italic;
    padding: 0;
    margin: 0 0 30px 0;
}

.footer .social-links {
    margin: 0 0 30px 0;
}

.footer .social-links a {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--contrast-color);
    line-height: 1;
    margin: 0 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .social-links a i {
    width: 16px;
    height: 16px;
}

.footer .social-links a:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    text-decoration: none;
}

.footer .copyright {
    padding-top: 25px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
    font-size: 13px;
    padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    position: relative;
}

.page-title h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 300px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

@media (max-width: 1000px) {
    .section-title {
        padding-bottom: 10px !important;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* ✅ Align content to the left */
    padding-left: 0vw;
    /* ✅ Add left spacing */
}

.hero video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Optional: Tweak for very small screens */
@media (max-width: 900px) {
    .hero video {
        object-position: 80% center;
    }
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(0, 40, 0, 0.75),
            rgba(0, 60, 0, 0.55));
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    text-align: end;
}

.hero-card {
    background: rgba(50, 100, 40, 0.75);
    /* deeper green with more opacity */
    backdrop-filter: blur(10px) saturate(120%);
    border-radius: 28px;
    padding: 36px 44px;
    border: 1px solid rgba(80, 140, 70, 0.8);
}

.hero h2 {
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #3db34a;
}

.hero p {
    font-size: 28px;
    font-weight: 600;
    color: #6acc54;
}

.hero p span {
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
    .hero .container {
        margin: 1rem;
    }
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
    font-weight: 700;
    font-size: 24px;
    color: #055929;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.about .content ul strong {
    margin-right: 10px;
}

.about .content ul i {
    font-size: 16px;
    margin-right: 5px;
    color: var(--accent-color);
    line-height: 0;
}

.profile-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    /* Zooms in, fills container */
    object-position: top;
    /* Keeps top part visible */
    border: 1px solid #055929;
}

.card {
    background-color: var(--background-color);
    border-radius: 5%;
    padding: 30px;
    border: 3px solid #055929;
}

.btn {
    background-color: #055929;
    color: white;
    border-radius: 50px;
    border: 3px solid #055929;
}

.btn:hover {
    border: 3px solid #055929;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    width: 54px;
    height: 54px;
    font-size: 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.stats .stats-item {
    margin-top: 10px;
    width: 100%;
    position: relative;
    text-align: center;
    z-index: 0;
}

.stats .stats-item span {
    font-size: 36px;
    display: block;
    font-weight: 700;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
    padding: 0;
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
}

@media (max-width: 576px) {

    #prevPage,
    #nextPage {
        width: 30px !important;
        height: 30px !important;
        font-size: 25px !important;
    }

    #prevPage {
        text-align: left;
    }

    #nextPage {
        text-align: right;
    }
}


/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills .progress .skill {
    color: var(--heading-color);
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: var(--heading-font);
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    height: 20px;
    border-radius: 50px;
}

.skills .progress-bar {
    width: 1px;
    height: 20px;
    transition: 0.9s;
    background-color: var(--accent-color);
    border-radius: 50px;
}

.dark .skills .progress-bar {
    background-color: #68F2A2;
}


.tool-column {
    border: 2px solid #055929;
    border-radius: 25px;
    text-align: center;
}

.tool-title {
    position: relative;
    display: inline-block;
}

.tool-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 120px;
    /* Adjust length of border line */
    border-bottom: 1px solid #055929;
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-title {
    color: var(--heading-color);
    font-size: 26px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}

.resume .resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid var(--accent-color);
    position: relative;
}

.resume .resume-item h4 {
    line-height: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 10px;
}

.resume .resume-item h5 {
    font-size: 16px;
    padding: 5px 15px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
}

.resume .resume-item ul {
    padding-left: 20px;
}

.resume .resume-item ul li {
    padding-bottom: 10px;
}

.resume .resume-item:last-child {
    padding-bottom: 0;
}

.resume .resume-item::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    left: -9px;
    top: 0;
    background: var(--background-color);
    border: 2px solid var(--accent-color);
}

@media (max-width: 1000px) {
    .internship-img {
        text-align: center !important;
        margin-top: 20px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .internship-img img {
        width: 100%;
        max-width: 100px;
        /* You can adjust this value */
        height: auto;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--background-color);
    box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 60px 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 15px;
    border: 2px solid #055929;
}

.services .service-item .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
}

.services .service-item .icon i {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
}

.services .service-item .icon svg {
    position: absolute;
    top: 0;
    left: 0;
}

.services .service-item .icon svg path {
    transition: 0.5s;
    fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item:hover {
    box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.icon i {
    position: relative;
    width: 50px;
    height: 50px;
    display: block;
}

.icon i img {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.img-normal {
    opacity: 1 !important;
    z-index: 1 !important;
}

.img-hover {
    opacity: 0 !important;
    z-index: 2 !important;
}

.services .service-item.item-cyan:hover .icon .img-normal {
    opacity: 0 !important;
}

.services .service-item.item-cyan:hover .icon .img-hover {
    opacity: 1 !important;
}

.services .service-item.item-cyan:hover .icon path {
    fill: #0dcaf0;
}

.services .service-item.item-orange i {
    color: #fd7e14;
}

.services .service-item.item-orange:hover .icon i {
    color: #fff;
}

.services .service-item.item-orange:hover .icon path {
    fill: #fd7e14;
}

.services .service-item.item-teal i {
    color: #20c997;
}

.services .service-item.item-teal:hover .icon i {
    color: #fff;
}

.services .service-item.item-teal:hover .icon path {
    fill: #20c997;
}

.services .service-item.item-red i {
    color: #df1529;
}

.services .service-item.item-red:hover .icon i {
    color: #fff;
}

.services .service-item.item-red:hover .icon path {
    fill: #df1529;
}

.services .service-item.item-indigo i {
    color: #6610f2;
}

.services .service-item.item-indigo:hover .icon i {
    color: #fff;
}

.services .service-item.item-indigo:hover .icon path {
    fill: #6610f2;
}

.services .service-item.item-pink i {
    color: #f3268c;
}

.services .service-item.item-pink:hover .icon i {
    color: #fff;
}

.services .service-item.item-pink:hover .icon path {
    fill: #f3268c;
}

@media (max-width: 576px) {
    .modal-dialog.modal-xxl {
        max-width: 98% !important;
        margin: 3% auto !important;
    }

    .modal-info,
    .modal-description {
        padding: 0.5rem !important;
    }
}

.modal {
    border-radius: 50px;
}

#carouselCropWatchers .carousel-indicators {
    position: relative;
    /* Position BELOW the carousel */
    margin-top: 10px;
    justify-content: center;
}

#carouselCropWatchers .carousel-indicators [data-bs-target] {
    width: 30px;
    height: 12px;
    border-radius: 15%;
    background-color: #055929;
    opacity: 0.4;
    margin: 0 4px;
    border: none;
}

#carouselCropWatchers .carousel-indicators .active {
    opacity: 1;
}

#carouselECS .carousel-indicators {
    position: relative;
    /* Position BELOW the carousel */
    margin-top: 10px;
    justify-content: center;
}

#carouselECS .carousel-indicators [data-bs-target] {
    width: 30px;
    height: 12px;
    border-radius: 15%;
    background-color: #055929;
    opacity: 0.4;
    margin: 0 4px;
    border: none;
}

#carouselECS .carousel-indicators .active {
    opacity: 1;
}

#carouselNLP .carousel-indicators {
    position: relative;
    /* Position BELOW the carousel */
    margin-top: 10px;
    justify-content: center;
}

#carouselNLP .carousel-indicators [data-bs-target] {
    width: 30px;
    height: 12px;
    border-radius: 15%;
    background-color: #055929;
    opacity: 0.4;
    margin: 0 4px;
    border: none;
}

#carouselNLP .carousel-indicators .active {
    opacity: 1;
}

#carouselTrack .carousel-indicators {
    position: relative;
    /* Position BELOW the carousel */
    margin-top: 10px;
    justify-content: center;
}

#carouselTrack .carousel-indicators [data-bs-target] {
    width: 30px;
    height: 12px;
    border-radius: 15%;
    background-color: #055929;
    opacity: 0.4;
    margin: 0 4px;
    border: none;
}

#carouselTrack .carousel-indicators .active {
    opacity: 1;
}

#carouselRA .carousel-indicators {
    position: relative;
    /* Position BELOW the carousel */
    margin-top: 10px;
    justify-content: center;
}

#carouselRA .carousel-indicators [data-bs-target] {
    width: 30px;
    height: 12px;
    border-radius: 15%;
    background-color: #055929;
    opacity: 0.4;
    margin: 0 4px;
    border: none;
}

#carouselRA .carousel-indicators .active {
    opacity: 1;
}

#carouselBI .carousel-indicators {
    position: relative;
    /* Position BELOW the carousel */
    margin-top: 10px;
    justify-content: center;
}

#carouselBI .carousel-indicators [data-bs-target] {
    width: 30px;
    height: 12px;
    border-radius: 15%;
    background-color: #055929;
    opacity: 0.4;
    margin: 0 4px;
    border: none;
}

#carouselBI .carousel-indicators .active {
    opacity: 1;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
    border-left: 3px solid var(--accent-color);
    padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0 0 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.modal-xxl {
    max-width: 85% !important;
}

.modal-header h2,
.modal-info,
.modal-description {
    padding-left: 30px;
    padding-right: 30px;
}

.images {
    text-align: center;
}

/* Set modal height to 90vh and allow scroll inside */
.modal-xxl .modal-content {
    height: 95vh;
    overflow-y: auto;
}

/* Darker modal backdrop */
.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.95);
    /* darker than default 0.5 */
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item + .info-item {
    margin-top: 40px;
}

.contact .info-item i {
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.contact .php-email-form {
    height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .swiper-wrapper {
    height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

    .portfolio-details .swiper-button-prev,
    .portfolio-details .swiper-button-next {
        display: none;
    }
}

.portfolio-details .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.portfolio-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0 0 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
    padding: 20px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box + .service-box {
    margin-top: 30px;
}

.service-details .service-box h4 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.service-details .services-list a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-top: 15px;
    transition: 0.3s;
}

.service-details .services-list a:first-child {
    margin-top: 0;
}

.service-details .services-list a i {
    font-size: 16px;
    margin-right: 8px;
    color: var(--accent-color);
}

.service-details .services-list a.active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
}

.service-details .services-list a.active i {
    color: var(--contrast-color);
}

.service-details .services-list a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
}

.service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
    border-top: 0;
    padding-top: 0;
}

.service-details .download-catalog a:last-child {
    padding-bottom: 0;
}

.service-details .download-catalog a i {
    font-size: 24px;
    margin-right: 8px;
    color: var(--accent-color);
}

.service-details .download-catalog a:hover {
    color: var(--accent-color);
}

.service-details .help-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    margin-top: 30px;
    padding: 30px 15px;
}

.service-details .help-box .help-icon {
    font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
    color: var(--contrast-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}