@charset "UTF-8";

: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: "Quicksand", sans-serif;
    --nav-font: "Open Sans", 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: #314862;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #13447f;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #065cc2;
    /* 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: #314862;
    /* The default color of the main navmenu links */
    --nav-hover-color: #065cc2;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #11427d;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #065cc2;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #acc4e0;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #ffffff;
    /* 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: #f7faff;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #065cc2;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #afcdf1;
    --surface-color: #2973cc;
    --contrast-color: #ffffff;
}

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

.dropify-wrapper .dropify-message p {
    font-size: 14px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 5px;
}

.required-field::after {
    content: "*";
    color: red;
    margin-left: 3px;
}

.dropify-wrapper {
    border-radius: 5px;
    border: 1px dashed #3b71ca;
}

.invalid-feedback {
    display: block;
    font-weight: 500;
}

/* CSS */
.button-70 {
    background-image: linear-gradient(#0dccea, #0d70ea);
    border: 0;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, .3) 0 5px 15px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    font-size: .9em;
    margin: 5px;
    padding: 10px 15px;
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

/*--------------------------------------------------------------
# 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: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu */
.mobile-nav-toggle {
    color: var(--nav-color);
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 32px;
    line-height: 0;
    cursor: pointer;
    display: block !important;
    z-index: 998;
    transition: 0.3s;
}

.mobile-nav-toggle:hover {
    color: var(--nav-hover-color);
}

.navmenu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -300px;
    z-index: 997;
    transition: 0.3s;
    width: 300px;
    overflow: hidden;
}

.navmenu .profile-img img {
    margin: 15px auto;
    display: block;
    width: 160px;
    border: 8px solid color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.navmenu .logo {
    line-height: 1;
    margin-bottom: 15px;
}

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

.navmenu .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    color: var(--contrast-color);
}

.navmenu .social-links {
    margin: 0 0 20px 0;
}

.navmenu .social-links a {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: color-mix(in srgb, var(--contrast-color), transparent 90%);
    color: var(--contrast-color);
    margin: 0 2px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: 0.3s;
}

.navmenu .social-links a i {
    margin: 0;
}

.navmenu .social-links a:hover {
    color: var(--contrast-color);
    background: var(--accent-color);
}

.navmenu ul {
    display: block;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 998;
}

.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;
    box-shadow: none;
    transition: all 0.5s ease-in-out;
}

.navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
}

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

.mobile-nav-active .mobile-nav-toggle {
    right: 310px;
    font-size: 36px;
}

.mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: var(--nav-mobile-background-color);
    transition: 0.3s;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    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;
    bottom: 15px;
}

/*--------------------------------------------------------------
# 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);
    padding: 25px 0;
    position: relative;
}

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

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 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: 20px 0;
    overflow: clip;
}

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

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 0.5px;
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 10px 10px;
}

.section-title p {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin: 5px 0 0 0;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../img/bg/abstract-bg-1.webp") no-repeat center center;
    background-size: cover;
    opacity: 0.08;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .hero .hero-content {
        padding: 60px 30px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero .hero-content {
        padding: 40px 20px;
    }
}

.hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .hero .hero-title {
        font-size: 2.2rem;
        min-height: 140px;
    }
}

.hero .hero-title .typed {
    color: var(--accent-color);
    position: relative;
}

.hero .lead {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 3rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

.hero .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .hero .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

.hero .hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero .hero-stats .stat-item .purecounter {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

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

.hero .hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .hero .hero-actions {
        justify-content: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

.hero .hero-actions .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero .hero-actions .btn.btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: 2px solid var(--accent-color);
}

.hero .hero-actions .btn.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.hero .hero-actions .btn.btn-outline {
    background-color: transparent;
    color: var(--default-color);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.hero .hero-actions .btn.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

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

@media (max-width: 768px) {
    .hero .social-links {
        justify-content: center;
    }
}

.hero .social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--surface-color);
    color: var(--default-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .social-links a:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}

.hero .social-links a i {
    font-size: 1.2rem;
}

.hero .hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
}

@media (max-width: 991px) {
    .hero .hero-image {
        min-height: auto;
        padding: 40px 30px;
    }
}

.hero .image-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.hero .hero-main-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    position: relative;
    z-index: 2;
}

.hero .image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
    border-radius: 20px;
    z-index: 1;
}

.hero .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.hero .floating-card {
    position: absolute;
    background-color: var(--surface-color);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero .floating-card {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

.hero .floating-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero .floating-card i {
        font-size: 1.2rem;
    }
}

.hero .floating-card span {
    font-weight: 600;
    color: var(--default-color);
}

.hero .floating-card.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

@media (max-width: 768px) {
    .hero .floating-card.card-1 {
        top: 5%;
        left: -5%;
    }
}

.hero .floating-card.card-2 {
    top: 60%;
    right: -15%;
    animation-delay: 2s;
}

@media (max-width: 768px) {
    .hero .floating-card.card-2 {
        top: 70%;
        right: -10%;
    }
}

.hero .floating-card.card-3 {
    bottom: 15%;
    left: -5%;
    animation-delay: 4s;
}

@media (max-width: 768px) {
    .hero .floating-card.card-3 {
        bottom: 10%;
        left: 0%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}


/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .skills-grid .skill-card {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 5%) 100%);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    transition: all 0.3s ease;
}

.skills .skills-grid .skill-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
}

.skills .skills-grid .skill-card .skill-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.skills .skills-grid .skill-card .skill-header i {
    font-size: 28px;
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 12px;
}

.skills .skills-grid .skill-card .skill-header h3 {
    font-size: 20px;
    margin: 0;
    color: var(--heading-color);
}

.skills .skills-grid .skill-card .skill-item {
    margin-bottom: 20px;
}

.skills .skills-grid .skill-card .skill-item:last-child {
    margin-bottom: 0;
}

.skills .skills-grid .skill-card .skill-item .skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.skills .skills-grid .skill-card .skill-item .skill-info .skill-name {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 15px;
}

.skills .skills-grid .skill-card .skill-item .skill-info .skill-percentage {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
}

.skills .skills-grid .skill-card .skill-item .skill-bar {
    height: 6px;
    background: color-mix(in srgb, var(--default-color), transparent 92%);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skills .skills-grid .skill-card .skill-item .skill-bar .progress-bar {
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    border-radius: 10px;
    width: 0;
    transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.skills .skills-grid .skill-card .skill-item .skill-bar .progress-bar:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.skills .skills-summary {
    background: var(--surface-color);
    padding: 40px 30px;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 20px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.skills .skills-summary h3 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.skills .skills-summary p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 30px;
    line-height: 1.6;
}

.skills .skills-summary .summary-stats {
    margin-bottom: 30px;
}

.skills .skills-summary .summary-stats .stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.skills .skills-summary .summary-stats .stat-item:last-child {
    margin-bottom: 0;
}

.skills .skills-summary .summary-stats .stat-item .stat-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.skills .skills-summary .summary-stats .stat-item .stat-circle i {
    color: var(--contrast-color);
    font-size: 20px;
}

.skills .skills-summary .summary-stats .stat-item .stat-info .stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
}

.skills .skills-summary .summary-stats .stat-item .stat-info .stat-label {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.skills .skills-summary .skills-badges h4 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.skills .skills-summary .skills-badges .badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skills .skills-summary .skills-badges .badge-list .skill-badge {
    background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 991px) {
    .skills .skills-summary {
        margin-top: 30px;
        position: relative;
        top: auto;
    }
}

@media (max-width: 767px) {
    .skills .skills-grid .skill-card {
        padding: 25px 20px;
    }

    .skills .skills-grid .skill-card .skill-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .skills .skills-grid .skill-card .skill-header h3 {
        font-size: 18px;
    }

    .skills .skills-summary {
        padding: 30px 20px;
    }

    .skills .skills-summary .summary-stats .stat-item .stat-circle {
        width: 45px;
        height: 45px;
    }

    .skills .skills-summary .summary-stats .stat-item .stat-circle i {
        font-size: 18px;
    }

    .skills .skills-summary .summary-stats .stat-item .stat-info .stat-number {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 3rem;
    border-radius: 1rem;
    height: 100%;
}

.contact .info-box h3 {
    color: var(--contrast-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .contact .info-box h3 {
        font-size: 1.75rem;
    }
}

.contact .info-box p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.contact .info-box a {
    color: var(--contrast-color);
}

@media (max-width: 992px) {
    .contact .info-box {
        padding: 1.5rem;
    }
}

.contact .info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact .info-item:last-child {
    margin-bottom: 0;
}

.contact .info-item .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
}

.contact .info-item .icon-box i {
    font-size: 1.5rem;
    color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
    background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
    color: var(--contrast-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact .info-item .content p {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    background-color: var(--surface-color);
    padding: 3rem;
    border-radius: 1rem;
    height: 100%;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .contact .contact-form {
        padding: 1.5rem;
    }
}

.contact .contact-form h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact .contact-form h3 {
        font-size: 1.75rem;
    }
}

.contact .contact-form p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
    padding: 0.875rem 1.25rem;
    border-color: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 0.5rem;
    background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
    color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.contact .contact-form .btn i {
    font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}




