﻿/* 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: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #216498; /* 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: #444444; /* The default color of the main navmenu links */
    --nav-hover-color: #216498; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #216498; /* 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: #f4fafd;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

.breadcrumbs {
    background: transparent;
    min-height: auto;
    padding: 0;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
         font-weight: 600;
        position: relative;
    }

        .section-title h2:before,
        .section-title h2:after {
            content: "";
            width: 50px;
            height: 2px;
            background: var(--accent-color);
            display: inline-block;
        }

        .section-title h2:before {
            margin: 0 15px 10px 0;
        }

        .section-title h2:after {
            margin: 0 0 10px 15px;
        }

    .section-title p {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding-top: 0px;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-bottom: 60px;
}

    .hero .content-wrapper {
        position: relative;
        z-index: 3;
    }

@media (max-width: 991px) {
    .hero .content-wrapper {
        text-align: center;
    }
}

.hero .excellence-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .main-heading {
     font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 2rem;
}

    .hero .main-heading span {
        color: color-mix(in srgb, var(--accent-color) 90%, black 15%);
    }

.hero .description-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .hero .description-section {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero .description-section {
        /* flex-direction: column;*/
        gap: 1rem;
    }
}

.hero .action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .hero .action-link:hover {
        background-color: color-mix(in srgb, var(--accent-color), black 10%);
        color: var(--contrast-color);
        transform: scale(1.1);
    }

    .hero .action-link i {
        font-size: 26px;
        line-height: 0;
    }

.hero .customertxt {
    font-style: italic;
    font-weight: 600;
    color: var(--accent-color);
}

.hero .description-text {
    margin: 0;
    font-size: 16px;
    max-width: 400px;
}

@media (max-width: 576px) {
    .hero .description-text {
        text-align: center;
    }
}

.hero .pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.1;
}

    .hero .pattern-overlay img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero .image-section {
    position: relative;
    padding: 2rem 0;
}

@media (max-width: 991px) {
    .hero .image-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.hero .hero-image {
    position: relative;
    z-index: 2;
}

    .hero .hero-image img {
        border-radius: 20px;
        box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    }

.hero .customer-stats {
    position: absolute;
    bottom: -3rem;
    left: 2rem;
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
    z-index: 3;
    max-width: 93%;
}

    .hero .customer-stats p {
        font-size: 15px;
    }

@media (max-width: 991px) {
    .hero .customer-stats {
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .hero .customer-stats {
        max-width: 100%;
        margin-left: 1rem;
        margin-right: 1rem;
        position: relative;
        bottom: 30px;
        z-index: 9999;
        left: 0;
    }

    .hero {
        padding-top: 0;
    }
}

@media (max-width: 991px) {
    .hero .row {
        flex-direction: column;
    }
}

/*--------------------------------------------------------------
# About Me 2 Section
--------------------------------------------------------------*/
.about-me {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #f4fafd;
}

    .about-me .profile-image-wrapper {
        position: relative;
    }

        .about-me .profile-image-wrapper .profile-image {
            position: relative;
            width: 280px;
            height: 280px;
            margin: 0 auto 40px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid var(--accent-color);
            box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 80%);
        }

            .about-me .profile-image-wrapper .profile-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

@media (max-width: 768px) {
    .about-me .profile-image-wrapper .profile-image {
        width: 200px;
        height: 200px;
    }
}

.about-me .profile-image-wrapper .signature-section {
    text-align: center;
}

    .about-me .profile-image-wrapper .signature-section .signature {
        max-width: 200px;
        height: auto;
        margin-bottom: 15px;
        opacity: 0.8;
    }

    .about-me .profile-image-wrapper .signature-section .quote {
        font-style: italic;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 14px;
        margin: 0;
        max-width: 250px;
        margin: 0 auto;
    }

.about-me .about-content .intro {
    margin-bottom: 40px;
}

    .about-me .about-content .intro h1 {
        margin-bottom: 20px;
         font-weight: 600;
    }

@media (max-width: 768px) {
    .about-me .about-content .intro h1 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-me .about-content .intro p {
        text-align: center;
    }
}

.about-me .about-content .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

    .about-me .about-content .skills-grid .skill-item {
        text-align: center;
        padding: 20px;
        border-radius: 10px;
        background: color-mix(in srgb, var(--accent-color), transparent 94%);
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
        transition: all 0.3s ease;
    }

        .about-me .about-content .skills-grid .skill-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
        }

        .about-me .about-content .skills-grid .skill-item .skill-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-color);
            border-radius: 50%;
            color: var(--contrast-color);
            font-size: 24px;
        }

        .about-me .about-content .skills-grid .skill-item h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--heading-color);
        }

        .about-me .about-content .skills-grid .skill-item p {
            font-size: 14px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin: 0;
        }

.about-me .about-content .journey-timeline {
    margin-bottom: 40px;
}

    .about-me .about-content .journey-timeline .timeline-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        padding: 15px;
        border-left: 3px solid var(--accent-color);
        background: color-mix(in srgb, var(--surface-color), transparent 30%);
        border-radius: 0 8px 8px 0;
        transition: all 0.3s ease;
    }

        .about-me .about-content .journey-timeline .timeline-item:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 95%);
            border-left-color: color-mix(in srgb, var(--accent-color), transparent 10%);
        }

        .about-me .about-content .journey-timeline .timeline-item:last-child {
            margin-bottom: 0;
        }

        .about-me .about-content .journey-timeline .timeline-item .year {
             font-weight: 600;
            color: var(--accent-color);
            font-size: 18px;
            min-width: 80px;
            margin-right: 20px;
        }

        .about-me .about-content .journey-timeline .timeline-item .description {
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            font-size: 15px;
        }

@media (max-width: 576px) {
    .about-me .about-content .journey-timeline .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

        .about-me .about-content .journey-timeline .timeline-item .year {
            margin-right: 0;
            margin-bottom: 8px;
        }
}

.about-me .about-content .cta-section .fun-fact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 15px 25px;
    background: color-mix(in srgb, var(--accent-color), transparent 94%);
    border-radius: 50px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

    .about-me .about-content .cta-section .fun-fact .emoji {
        font-size: 20px;
        margin-right: 10px;
    }

    .about-me .about-content .cta-section .fun-fact .text {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 14px;
        font-weight: 500;
    }

@media (max-width: 768px) {
    .about-me .about-content .cta-section .fun-fact {
        justify-content: center;
        text-align: center;
    }
}

.about-me .about-content .cta-section .action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

@media (max-width: 576px) {
    .about-me .about-content .cta-section .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.about-me .about-content .cta-section .action-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

    .about-me .about-content .cta-section .action-buttons .btn.btn-primary {
        background: var(--accent-color);
        color: var(--contrast-color);
        border: 2px solid var(--accent-color);
    }

        .about-me .about-content .cta-section .action-buttons .btn.btn-primary:hover {
            background: color-mix(in srgb, var(--accent-color), black 10%);
            border-color: color-mix(in srgb, var(--accent-color), black 10%);
            transform: translateY(-2px);
        }

    .about-me .about-content .cta-section .action-buttons .btn.btn-outline {
        background: transparent;
        color: var(--accent-color);
        border: 2px solid var(--accent-color);
    }

        .about-me .about-content .cta-section .action-buttons .btn.btn-outline:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
            transform: translateY(-2px);
        }

@media (max-width: 992px) {
    .about-me .profile-image-wrapper {
        margin-bottom: 40px;
    }
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 80px 0;
    position: relative;
    clip-path: inset(0);
}

    .call-to-action img, .call-to-action video {
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .call-to-action:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 30%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .call-to-action .container {
        position: relative;
        z-index: 3;
    }

    .call-to-action h1 {
         font-weight: 600;
        color: var(--default-color);
    }

    .call-to-action p {
        color: var(--default-color);
        font-size: 16px;
    }

    .call-to-action .cta-btn {
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 40px;
        border-radius: 5px;
        transition: 0.5s;
        margin: 10px;
        border: 2px solid var(--default-color);
        color: var(--default-color);
    }

        .call-to-action .cta-btn:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
            border: 2px solid var(--accent-color);
        }

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    padding-top: 60px;
    padding-bottom: 60px;
}

    .about .section-intro {
        max-width: 700px;
        margin: 0 auto 4rem;
    }

        .about .section-intro .subtitle {
            color: color-mix(in srgb, var(--accent-color), transparent 20%);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .about .section-intro .title {
            font-size: 2.5rem;
             font-weight: 600;
            margin-bottom: 1.5rem;
        }

@media (min-width: 768px) {
    .about .section-intro .title {
        font-size: 3rem;
    }
}

.about .section-intro .desc {
    font-size: 1.125rem;
}

.about .highlight-cards {
    margin-top: 5rem;
}

    .about .highlight-cards .highlight-card {
        position: relative;
        overflow: hidden;
        border-radius: 1.5rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        margin-bottom: 1.5rem;
        height: 350px;
    }

        .about .highlight-cards .highlight-card.elevated {
            transform: translateY(2rem);
        }

@media (max-width: 768px) {
    .about .highlight-cards .highlight-card.elevated {
        transform: translateY(0);
    }
}

.about .highlight-cards .highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about .highlight-cards .highlight-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 100%);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.about .highlight-cards .highlight-card .card-content {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    transition: transform 0.3s ease;
}

    .about .highlight-cards .highlight-card .card-content .card-title {
        color: var(--contrast-color);
        font-size: 1.25rem;
        font-weight: 600;
    }

.about .highlight-cards .highlight-card:hover img {
    transform: scale(1.1);
}

.about .highlight-cards .highlight-card:hover .card-content {
    transform: translateY(-5px);
}

.about .values-section .values-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

    .about .values-section .values-image img {
        width: 100%;
        transition: transform 0.7s ease;
    }

    .about .values-section .values-image:hover img {
        transform: scale(1.05);
    }


.about .values-section .values-content .values-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about .values-section .values-content .values-desc {
    margin-bottom: 2rem;
}

.about .values-section .values-content .values-list .value-item {
    display: flex;
    margin-bottom: 1.5rem;
}

    .about .values-section .values-content .values-list .value-item .value-icon {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        margin-right: 1rem;
    }

        .about .values-section .values-content .values-list .value-item .value-icon i {
            color: var(--accent-color);
            font-size: 2rem;
        }

    .about .values-section .values-content .values-list .value-item .value-text h4 {
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: inline;
    }

    .about .values-section .values-content .values-list .value-item .value-text p {
        display: inline;
        margin-left: 0.5rem;
    }

.about-grid {
    margin-top: 10px;
}

.about .about-card {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    border-radius: 14px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .about .about-card .icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: color-mix(in srgb, var(--accent-color), transparent 92%);
        color: var(--accent-color);
        margin-bottom: 16px;
    }

        .about .about-card .icon i {
            font-size: 24px;
        }

    .about .about-card .title {
        font-size: 20px;
        margin-bottom: 15px;
        font-weight: 600;
    }

        .about .about-card .title a {
            color: var(--heading-color);
        }

            .about .about-card .title a:hover {
                color: color-mix(in srgb, var(--accent-color), transparent 10%);
            }

    .about .about-card .desc {
        /* font-size: 15px;
        color: color-mix(in srgb, var(--default-color), transparent 25%);*/
        margin-bottom: 14px;
    }

    .about .about-card .meta {
        font-size: 13px;
        color: color-mix(in srgb, var(--default-color), transparent 35%);
        margin-bottom: 18px;
    }

        .about .about-card .meta i {
            vertical-align: -2px;
        }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
    padding: 0px 0 50px;
}

    .services .cta-wrapper .cta-box {
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), color-mix(in srgb, var(--accent-color), transparent 5%));
        border-radius: 20px;
        padding: 20px 40px 0;
        position: relative;
        overflow: hidden;
        box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
    }

        .services .cta-wrapper .cta-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            opacity: 0.05;
            z-index: 1;
        }

        .services .cta-wrapper .cta-box .cta-image {
            position: relative;
            z-index: 2;
        }

            .services .cta-wrapper .cta-box .cta-image img {
                width: 200px;
                /* height: 180px;
                object-fit: cover;
                border: 5px solid color-mix(in srgb, var(--contrast-color), transparent 15%);
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
                border-radius: 50%;*/
            }

        .services .cta-wrapper .cta-box .cta-content {
            position: relative;
            z-index: 2;
        }

            .services .cta-wrapper .cta-box .cta-content i {
                 font-weight: 600;
                margin-bottom: 15px;
                color: var(--contrast-color);
            }

            .services .cta-wrapper .cta-box .cta-content p {
                color: color-mix(in srgb, var(--contrast-color), transparent 15%);
                margin-bottom: 25px;
            }

            .services .cta-wrapper .cta-box .cta-content .primary-btn {
                display: inline-block;
                background-color: var(--contrast-color);
                color: var(--accent-color);
                padding: 12px 25px;
                border-radius: 50px;
                font-weight: 600;
                font-size: 0.95rem;
                transition: all 0.3s ease;
            }

                .services .cta-wrapper .cta-box .cta-content .primary-btn:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
                }

@media (max-width: 991px) {
    .cta-box .d-flex {
        flex-flow: column-reverse;
    }

    .services .cta-wrapper .cta-box .cta-content {
        margin-bottom: 30px;
    }

    .about .about-card {
        margin-bottom: 20px;
    }

    .services .cta-wrapper .cta-box .cta-content {
        text-align: center;
    }

    .about-me .d-flex {
        flex-flow: column;
    }

    .about-me .profile-image-wrapper .profile-image {
        width: 200px;
        height: 200px;
    }

    .services .cta-wrapper .cta-box {
        padding: 10px 40px 0;
    }
}

@media (max-width: 767px) {  
        .services .cta-wrapper .cta-box {
            padding: 30px 20px 0;
        }

    .cta-box .row {
        flex-flow: column-reverse;
    }

    .services .cta-wrapper .cta-box .cta-image img {
        margin-bottom: 0;
        margin-top: 30px;
    }
}
