/*--------------------------------------------------------------
# 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: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #4f92af; /* 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: #ffffff;  /* The default color of the main navmenu links */
    --nav-hover-color: #4f92af; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: rgba(6, 6, 6, 0.55); /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: rgba(6, 6, 6, 0.55); /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #4f92af; /* 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: #f9f9f9;
    --surface-color: #ffffff;
}

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

.transparent-background {
    --background-color: rgba(0, 0, 0, 0.275);
    --surface-color: rgba(255, 255, 255, 0.3);
}

/* 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);
    background: url(../img/RodmanReservoir.jpg) top center no-repeat;
    background-size: cover;
    position: relative;
}

@media (min-width: 1366px) {
    body {
        background-attachment: fixed;
    }
}

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);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 32px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 34px;
    margin: 0;
    font-weight: 400;
    color: var(--heading-color);
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

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

.footer .copyright p {
    margin-bottom: 0;
}

.footer .social-links {
    margin-top: 20px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin: 0 5px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer .credits {
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
}

/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# 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 {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

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

.page-title nav 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;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

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

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

/*Hero Section*/

.hero {
    padding-top: 80px;
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 80px;
}

.hero h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
}

.hero p {
    margin: 10px 0 0 0;
    font-size: 24px;
    color: var(--heading-color);
}

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

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

.hero .countdown {
    margin-top: 25px;
    font-size: 42px;
}

.hero .countdown span {
    font-size: 48px;
    font-weight: 700;
}

.hero .hero-newsletter {
    margin-top: 25px;
}

.hero .hero-newsletter p {
    font-size: 18px;
    margin: 0 0 15px 0;
}

.hero .hero-newsletter .newsletter-form {
    margin-bottom: 15px;
    position: relative;
    display: flex;
    border-radius: 0px;
}

.hero .hero-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.hero .hero-newsletter .newsletter-form input[type=email] {
    padding: 8px 10px;
    width: 100%;
    background-color: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: 0.3s;
}

.hero .hero-newsletter .newsletter-form input[type=email]:focus {
    border-color: var(--accent-color);
}

.hero .hero-newsletter .newsletter-form input[type=email]:focus-visible {
    outline: none;
}

.hero .hero-newsletter .newsletter-form input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: 0 0 0 10px;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 0px;
}

.hero .hero-newsletter .newsletter-form input[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*Contact Section*/

.contact {
    background-position: left center;
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width: 640px) {
    .contact {
        background-position: center 50px;
        background-size: contain;
    }
}

.contact:before {
    content: "";
    /*background: color-mix(in srgb, var(--background-color), transparent 30%);*/
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.contact .info-item+.info-item {
    margin-top: 40px;
}

.contact .info-item i {
    background: var(--accent-color);
    color: var(--contrast-color);
    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 .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 20%);
}

/* About Section*/

.about {
    .section-heading {
        font-size: 2.5rem;
        color: var(--heading-color);
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 1rem;
        font-weight: 700;

        &:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background: var(--accent-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
    }

    .lead {
        font-size: 1.2rem;
        /*color: color-mix(in srgb, var(--default-color), transparent 10%);*/
        color: white;
        margin-bottom: 2rem;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-box {
        /*background: var(--surface-color);*/
        background: color-mix(in srgb, var(--accent-color), transparent 50%);
        border-radius: 12px;
        padding: 2.5rem 1.5rem;
        text-align: center;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;

        &:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: color-mix(in srgb, var(--accent-color), transparent 92%);
            z-index: -1;
            transition: height 0.5s cubic-bezier(0.65, 0, 0.35, 1);
            border-radius: 12px;
        }

        &:hover {
            transform: translateY(-10px);

            &:before {
                height: 100%;
            }

            .icon-container {
                background: var(--accent-color);
                color: var(--contrast-color);
            }
        }

        .icon-container {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            color: white;
            /*            color: var(--accent-color);*/
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 85%);
        }

        h4 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--heading-color);
        }

        p {
            color: color-mix(in srgb, var(--default-color), transparent 25%);
            font-size: 0.95rem;
            line-height: 1.6;
        }
    }

    .about-content-box {
        padding: 2rem;

        h3 {
            font-size: 2rem;
            color: var(--heading-color);
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.3;
        }

        p {
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .progress-item {
            margin-bottom: 1.2rem;

            .progress-title {
                font-weight: 600;
                color: var(--heading-color);
                font-size: 1rem;
            }

            .progress-percent {
                font-weight: 700;
                color: var(--accent-color);
            }

            .progress {
                height: 8px;
                border-radius: 4px;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
                margin-top: 0.5rem;
                overflow: hidden;

                .progress-bar {
                    background-color: var(--accent-color);
                    border-radius: 4px;
                }
            }
        }

        .btn-discover {
            background: var(--accent-color);
            color: var(--contrast-color);
            border: none;
            border-radius: 30px;
            padding: 0.8rem 2rem;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            z-index: 1;

            &:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 0;
                height: 100%;
                background: color-mix(in srgb, var(--accent-color), #000 15%);
                transition: width 0.3s ease;
                z-index: -1;
                border-radius: 30px;
            }

            &:hover {
                box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 80%);

                &:before {
                    width: 100%;
                }
            }
        }
    }

    .about-image-grid {
        position: relative;
        height: 540px;
        margin: 0 2rem;

        .img-grid-main {
            position: absolute;
            top: 0;
            right: 0;
            width: 70%;
            height: 350px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            z-index: 1;
        }

        .img-grid-secondary {
            position: absolute;
            bottom: 0;
            right: 30%;
            width: 50%;
            height: 220px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }

        .img-grid-tertiary {
            position: absolute;
            left: 0;
            bottom: 70px;
            width: 40%;
            height: 260px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            z-index: 3;
        }

        .experience-badge {
            position: absolute;
            right: 10px;
            bottom: 30px;
            width: 120px;
            height: 120px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--contrast-color);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            z-index: 4;

            .years {
                font-size: 2.5rem;
                font-weight: 700;
                line-height: 1;
                margin-bottom: 0.2rem;
            }

            .text {
                font-size: 0.8rem;
                text-align: center;
                max-width: 90px;
                line-height: 1.2;
            }
        }
    }

    @media (max-width: 1199px) {
        .about-image-grid {
            height: 480px;

            .img-grid-main {
                height: 300px;
            }

            .img-grid-secondary {
                height: 200px;
            }

            .img-grid-tertiary {
                height: 220px;
            }
        }
    }

    @media (max-width: 991px) {
        .section-heading {
            font-size: 2.2rem;
        }

        .about-content-box {
            padding: 1.5rem;
            margin-top: 2rem;

            h3 {
                font-size: 1.8rem;
            }
        }

        .about-image-grid {
            height: 450px;
            margin: 0 auto;
            max-width: 500px;

            .experience-badge {
                width: 100px;
                height: 100px;

                .years {
                    font-size: 2rem;
                }
            }
        }
    }

    @media (max-width: 767px) {
        .section-heading {
            font-size: 1.8rem;
        }

        .feature-box {
            padding: 1.8rem 1rem;

            .icon-container {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        .about-image-grid {
            height: 400px;
            margin-bottom: 2rem;

            .img-grid-main {
                width: 75%;
                height: 250px;
            }

            .img-grid-secondary {
                width: 55%;
                height: 180px;
            }

            .img-grid-tertiary {
                width: 40%;
                height: 180px;
            }
        }
    }
}


/*Donate Section*/

.donate {

    .category-card {
        position: relative;
        height: 300px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

        &:hover img {
            transform: scale(1.05);
        }
        /*background: color-mix(in srgb, var(--background-color), transparent 30%);*/
    }

    .category-image {
        position: absolute;
        width: 100%;
        height: 100%;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
        }
    }

    .category-content {
        position: relative;
        z-index: 2;
        padding: 30px;
        color: var(--contrast-color);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;

        h3 {
            font-size: 1.75rem;
            margin-bottom: 15px;
            color: var(--contrast-color);
        }

        p {
            margin-bottom: 20px;
            opacity: 0.9;
        }
    }

    .btn-shop-now {
        align-self: flex-start;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        padding: 10px 20px;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;

        i {
            margin-left: 8px;
            transition: transform 0.3s;
        }

        &:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
            color: var(--contrast-color);

            i {
                transform: translateX(5px);
            }
        }
    }

    @media (max-width: 768px) {
        .product-card {
            margin-bottom: 20px;
        }

        .category-card {
            margin-bottom: 20px;
            height: 250px;
        }

        .category-content h3 {
            font-size: 1.5rem;
        }
    }
}

/*Resources tab*/

.resources {
    .card-item {
        /*background-color: var(--surface-color);*/
        background-color: whitesmoke;
        border-radius: 10px;
        padding: 20px;
        height: 100%;
        transition: all 0.3s ease;
        position: relative;
        /*
                .icon {
                    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
                    color: var(--accent-color);
                    border-radius: 50%;
                    width: 60px;
                    height: 60px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-bottom: 15px;
                    font-size: 24px;
                }*/

        h3 {
            font-size: 1.25rem;
            margin-bottom: 10px;
            color: black;
        }

        p {
            font-size: 0.9rem;
            margin-bottom: 20px;
            color: black;
        }

        .arrow-icon {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;

        }

        &:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            .arrow-icon  {
                transform: translateX(5px);
            }
        }
    }
}


/* Core Focus Areas */

.core-focus-areas {

    /*// Service items*/
    .service-item {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 2.5rem 0;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        position: relative;

        &:last-child {
            border-bottom: none;
        }

        .service-content {
            flex: 1;
            padding-right: 2rem;

            h3 {
                font-size: 1.75rem;
                font-weight: 700;
                margin-bottom: 1rem;

                a {
                    color: var(--heading-color);
                    transition: color 0.3s;

                    &:hover {
                        color: var(--accent-color);
                    }
                }
            }

            p {
                font-size: 1rem;
                line-height: 1.6;
                margin-bottom: 0;
            }
        }

        .service-icon {
            .icon-link {
                display: grid;
                place-items: center;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                background-color: color-mix(in srgb, var(--default-color), transparent 90%);
                color: var(--default-color);
                transition: all 0.3s ease;

                i {
                    font-size: 1.25rem;
                    line-height: 0;
                }

                &:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: translateX(5px);
                }
            }
        }

        &:hover {
            .service-icon {
                .icon-link {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: translateX(5px);
                }
            }
        }
    }

    /*// Responsive styles*/
    @media (max-width: 768px) {
        .service-item {
            padding: 2rem 0;

            .service-content {
                padding-right: 1rem;

                h3 {
                    font-size: 1.5rem;
                }
            }

            .service-icon {
                .icon-link {
                    width: 45px;
                    height: 45px;
                }
            }
        }
    }

    @media (max-width: 576px) {
        .service-item {
            flex-direction: column;

            .service-content {
                padding-right: 0;
                margin-bottom: 1.5rem;
            }

            .service-icon {
                align-self: flex-start;
            }
        }
    }
}

.blog-author {

  .author-card {
    display: flex;
    /*background-color: var(--surface-color);*/
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
  
    @media (max-width: 991.98px) {
      flex-direction: column;
    }
  }

  .author-background {
    position: relative;
    width: 35%;
    min-height: 400px;
    background: linear-gradient(180deg, 
      color-mix(in srgb, var(--accent-color), transparent 90%),
      color-mix(in srgb, var(--accent-color), transparent 90%)
    );
    display: flex;
    align-items: center;
    justify-content: center;

    @media (max-width: 991.98px) {
      width: 100%;
      min-height: 300px;
    }

    &::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 400px;
      background: linear-gradient(to right, transparent, var(--surface-color));

      @media (max-width: 991.98px) {
        display: none;
      }
    }
  }

  .author-image-wrapper {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /*transform: rotate(-5deg);*/
    /*transition: transform 0.3s ease;*/
    z-index: 2;

    &:hover {
      transform: rotate(0deg);
    }

    .author-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .author-details {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    @media (max-width: 767.98px) {
      padding: 2rem 1.5rem;
    }
  }

  .author-meta {
    .author-name {
      font-size: 2rem;
      margin: 0;
      color: var(--heading-color);
      font-weight: 700;
    }

    .author-credentials {
      margin-top: 1rem;
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;

      .badge {
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        color: var(--accent-color);
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 500;
      }
    }
  }

  .author-description {
    font-size: 1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
  }

  .author-stats {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

    @media (max-width: 767.98px) {
      gap: 1rem;
      justify-content: space-around;
    }

    .stat-item {
      text-align: center;

      .stat-value {
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--heading-color);
        font-family: var(--heading-font);
      }

      .stat-label {
        font-size: 0.875rem;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-top: 0.25rem;
      }
    }
  }

  .author-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;

    @media (max-width: 767.98px) {
      flex-direction: column;
      gap: 1.5rem;
    }

    .social-links {
      display: flex;
      gap: 1rem;

      a {
        color: var(--accent-color);
        font-size: 1.25rem;
        transition: all 0.3s ease;

        &:hover {
          transform: translateY(-3px);
          color: var(--heading-color);
        }
      }
    }

    .btn-connect {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background-color: var(--accent-color);
      color: var(--contrast-color);
      padding: 0.75rem 1.5rem;
      border-radius: 25px;
      font-weight: 500;
      transition: all 0.3s ease;

      i {
        transition: transform 0.3s ease;
      }

      &:hover {
        background-color: var(--heading-color);
        
        i {
          transform: translateX(5px);
        }
      }
    }
  }
}